From b5ec6a40d9e1999c48f0d736e134ad2054dd0418 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 9 Oct 2025 01:12:20 +0200 Subject: [PATCH 01/12] feat(instance): terminate server on delete --- internal/services/instance/server.go | 41 +++++++++++----------------- 1 file changed, 16 insertions(+), 25 deletions(-) diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 7b646f637..ecec2ce3d 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -1226,7 +1226,7 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m Zone: zone, IP: zonal.ExpandID(ipID).ID, Server: &instanceSDK.NullableStringValue{Null: true}, - }) + }, scw.WithContext(ctx)) if err != nil { log.Print("[WARN] Failed to detach eip of server") } @@ -1237,18 +1237,27 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m Zone: zone, PlacementGroup: &instanceSDK.NullableStringValue{Null: true}, ServerID: id, - }) + }, scw.WithContext(ctx)) if err != nil { log.Print("[WARN] Failed remove server from instanceSDK group") } } - // reach stopped state - err = reachState(ctx, api, zone, id, instanceSDK.ServerStateStopped) - if httperrors.Is404(err) { - return nil + + // reach running state (mandatory for termination) + err = reachState(ctx, api, zone, id, instanceSDK.ServerStateRunning) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) } - if err != nil { + timeout := d.Timeout(schema.TimeoutDelete) + + err = api.ServerActionAndWait(&instanceSDK.ServerActionAndWaitRequest{ + Zone: zone, + ServerID: id, + Action: instanceSDK.ServerActionTerminate, + Timeout: &timeout, + }, scw.WithContext(ctx)) + if err != nil && !httperrors.Is404(err) { return diag.FromErr(err) } @@ -1270,24 +1279,6 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m } } - _, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutDelete)) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) - } - - err = api.DeleteServer(&instanceSDK.DeleteServerRequest{ - Zone: zone, - ServerID: id, - }, scw.WithContext(ctx)) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) - } - - _, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutDelete)) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) - } - // Related to https://github.com/hashicorp/terraform-plugin-sdk/issues/142 _, rootVolumeAttributeSet := d.GetOk("root_volume") if d.Get("root_volume.0.delete_on_termination").(bool) || !rootVolumeAttributeSet { From 7f53a1a3ae57d7ecace680f1a68248d172e56fcf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 15:47:49 +0200 Subject: [PATCH 02/12] fallback to deletion if termination fails + add context in reachState func --- .../services/instance/helpers_instance.go | 6 +- internal/services/instance/server.go | 80 ++++++++++++++----- 2 files changed, 65 insertions(+), 21 deletions(-) diff --git a/internal/services/instance/helpers_instance.go b/internal/services/instance/helpers_instance.go index f7f0c79d0..ed10e88b0 100644 --- a/internal/services/instance/helpers_instance.go +++ b/internal/services/instance/helpers_instance.go @@ -184,7 +184,7 @@ func reachState(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, z VolumeID: volume.ID, Zone: zone, RetryInterval: transport.DefaultWaitRetryInterval, - }) + }, scw.WithContext(ctx)) if err != nil { return err } @@ -193,7 +193,7 @@ func reachState(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, z Zone: zone, VolumeID: volume.ID, RetryInterval: transport.DefaultWaitRetryInterval, - }) + }, scw.WithContext(ctx)) if err != nil { return err } @@ -207,7 +207,7 @@ func reachState(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, z Zone: zone, Timeout: scw.TimeDurationPtr(DefaultInstanceServerWaitTimeout), RetryInterval: transport.DefaultWaitRetryInterval, - }) + }, scw.WithContext(ctx)) if err != nil { return err } diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index ecec2ce3d..b6b9b773f 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -1014,6 +1014,7 @@ func ResourceInstanceServerUpdate(ctx context.Context, d *schema.ResourceData, m } if d.HasChange("admin_password_encryption_ssh_key_id") { + serverShouldUpdate = true updateRequest.AdminPasswordEncryptionSSHKeyID = types.ExpandUpdatedStringPtr(d.Get("admin_password_encryption_ssh_key_id").(string)) } @@ -1243,24 +1244,6 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m } } - // reach running state (mandatory for termination) - err = reachState(ctx, api, zone, id, instanceSDK.ServerStateRunning) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) - } - - timeout := d.Timeout(schema.TimeoutDelete) - - err = api.ServerActionAndWait(&instanceSDK.ServerActionAndWaitRequest{ - Zone: zone, - ServerID: id, - Action: instanceSDK.ServerActionTerminate, - Timeout: &timeout, - }, scw.WithContext(ctx)) - if err != nil && !httperrors.Is404(err) { - return diag.FromErr(err) - } - // Delete private-nic if managed by instance_server resource if raw, ok := d.GetOk("private_network"); ok { ph, err := newPrivateNICHandler(api.API, id, zone) @@ -1279,6 +1262,19 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m } } + _, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil && !httperrors.Is404(err) { + return diag.FromErr(err) + } + + err = terminateServer(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil { + err = deleteServer(ctx, api, zone, id, d.Timeout(schema.TimeoutDelete)) + if err != nil { + return diag.FromErr(err) + } + } + // Related to https://github.com/hashicorp/terraform-plugin-sdk/issues/142 _, rootVolumeAttributeSet := d.GetOk("root_volume") if d.Get("root_volume.0.delete_on_termination").(bool) || !rootVolumeAttributeSet { @@ -1299,6 +1295,54 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m return nil } +func terminateServer(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, zone scw.Zone, id string, timeout time.Duration) error { + // reach running state (mandatory for termination) + err := reachState(ctx, api, zone, id, instanceSDK.ServerStateRunning) + if err != nil && !httperrors.Is404(err) { + return err + } + + err = api.ServerActionAndWait(&instanceSDK.ServerActionAndWaitRequest{ + Zone: zone, + ServerID: id, + Action: instanceSDK.ServerActionTerminate, + Timeout: &timeout, + }, scw.WithContext(ctx)) + if err != nil && !httperrors.Is404(err) { + return err + } + + return nil +} + +func deleteServer(ctx context.Context, api *instancehelpers.BlockAndInstanceAPI, zone scw.Zone, id string, timeout time.Duration) error { + _, err := waitForServer(ctx, api.API, zone, id, timeout) + if err != nil && !httperrors.Is404(err) { + return err + } + + // reach stopped state + err = reachState(ctx, api, zone, id, instanceSDK.ServerStateStopped) + if err != nil && !httperrors.Is404(err) { + return err + } + + err = api.DeleteServer(&instanceSDK.DeleteServerRequest{ + Zone: zone, + ServerID: id, + }, scw.WithContext(ctx)) + if err != nil && !httperrors.Is404(err) { + return err + } + + _, err = waitForServer(ctx, api.API, zone, id, timeout) + if err != nil && !httperrors.Is404(err) { + return err + } + + return nil +} + func instanceServerCanMigrate(api *instanceSDK.API, server *instanceSDK.Server, requestedType string) error { var localVolumeSize scw.Size From c3f414bfbb9bfe6aef0c7959b5005e4d127549e2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 9 Oct 2025 15:36:02 +0200 Subject: [PATCH 03/12] delete pnic before terminating server --- internal/services/instance/server.go | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index b6b9b773f..3b2077301 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -1262,6 +1262,24 @@ func ResourceInstanceServerDelete(ctx context.Context, d *schema.ResourceData, m } } + // Delete private-nic if managed by instance_server resource + if raw, ok := d.GetOk("private_network"); ok { + ph, err := newPrivateNICHandler(api.API, id, zone) + if err != nil { + return diag.FromErr(err) + } + + for index := range raw.([]any) { + pnKey := fmt.Sprintf("private_network.%d.pn_id", index) + pn := d.Get(pnKey) + + err := ph.detach(ctx, pn, d.Timeout(schema.TimeoutDelete)) + if err != nil { + return diag.FromErr(err) + } + } + } + _, err = waitForServer(ctx, api.API, zone, id, d.Timeout(schema.TimeoutDelete)) if err != nil && !httperrors.Is404(err) { return diag.FromErr(err) From 4281ccc04465d579e8334f5ea96fd22ec435db11 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 9 Oct 2025 15:52:58 +0200 Subject: [PATCH 04/12] fix TestAccServer_AdminPasswordEncryptionSSHKeyID --- internal/services/instance/server_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index 23122c405..fce9b8b4c 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -2203,7 +2203,7 @@ func TestAccServer_AdminPasswordEncryptionSSHKeyID(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() - sshKey := "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX opensource@scaleway.com" + sshKey := "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU= opensource@scaleway.com" resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, From 7e02a9afdedf12e8f552d9b3e10afd607e58448d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 15:46:16 +0200 Subject: [PATCH 05/12] fix TestAccDataSourceServers_PrivateIPs --- .../services/instance/servers_data_source_test.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/internal/services/instance/servers_data_source_test.go b/internal/services/instance/servers_data_source_test.go index 2e81d71b4..c5025b76b 100644 --- a/internal/services/instance/servers_data_source_test.go +++ b/internal/services/instance/servers_data_source_test.go @@ -110,7 +110,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { image = "ubuntu_focal" type = "DEV1-S" state = "stopped" - tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + tags = [ "terraform-test", "data_scaleway_instance_servers", "private-ips" ] private_network { pn_id = scaleway_vpc_private_network.pn01.id @@ -128,7 +128,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { image = "ubuntu_focal" type = "DEV1-S" state = "stopped" - tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + tags = [ "terraform-test", "data_scaleway_instance_servers", "private-ips" ] private_network { pn_id = scaleway_vpc_private_network.pn01.id @@ -140,7 +140,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { image = "ubuntu_focal" type = "DEV1-S" state = "stopped" - tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + tags = [ "terraform-test", "data_scaleway_instance_servers", "private-ips" ] private_network { pn_id = scaleway_vpc_private_network.pn01.id @@ -158,7 +158,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { image = "ubuntu_focal" type = "DEV1-S" state = "stopped" - tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + tags = [ "terraform-test", "data_scaleway_instance_servers", "private-ips" ] private_network { pn_id = scaleway_vpc_private_network.pn01.id @@ -170,7 +170,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { image = "ubuntu_focal" type = "DEV1-S" state = "stopped" - tags = [ "terraform-test", "data_scaleway_instance_servers", "basic" ] + tags = [ "terraform-test", "data_scaleway_instance_servers", "private-ips" ] private_network { pn_id = scaleway_vpc_private_network.pn01.id @@ -182,7 +182,7 @@ func TestAccDataSourceServers_PrivateIPs(t *testing.T) { } data "scaleway_instance_servers" "servers_by_tag" { - tags = ["data_scaleway_instance_servers", "terraform-test"] + tags = ["data_scaleway_instance_servers", "terraform-test", "private-ips"] } data "scaleway_instance_servers" "servers_by_name_other_zone" { From 343ed4bc8225651eb4318b33a61cfa61df9d0fab Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 15:46:46 +0200 Subject: [PATCH 06/12] fix TestAccServer_CustomDiffImage --- internal/services/instance/server_test.go | 137 ++++++++++------------ 1 file changed, 63 insertions(+), 74 deletions(-) diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index fce9b8b4c..f3c058003 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -10,6 +10,7 @@ import ( "github.com/hashicorp/terraform-plugin-testing/helper/resource" "github.com/hashicorp/terraform-plugin-testing/terraform" instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + "github.com/scaleway/scaleway-sdk-go/api/marketplace/v2" "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" @@ -20,6 +21,8 @@ import ( "github.com/stretchr/testify/assert" ) +const marketplaceImageType = "instance_sbs" + func TestAccServer_Minimal1(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -1391,6 +1394,8 @@ func TestAccServer_CustomDiffImage(t *testing.T) { tt := acctest.NewTestTools(t) defer tt.Cleanup() + var mainServerID, controlServerID string + resource.ParallelTest(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProtoV6ProviderFactories: tt.ProviderFactories, @@ -1399,143 +1404,125 @@ func TestAccServer_CustomDiffImage(t *testing.T) { { Config: ` resource "scaleway_instance_server" "main" { + name = "main-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } - `, - Check: resource.ComposeTestCheckFunc( - isServerPresent(tt, "scaleway_instance_server.main"), - resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy"), - ), - }, - { - Config: ` - resource "scaleway_instance_server" "main" { + resource "scaleway_instance_server" "control" { + name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } - } - resource "scaleway_instance_server" "copy" { - image = "ubuntu_jammy" - type = "DEV1-S" - state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } `, Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.main"), - isServerPresent(tt, "scaleway_instance_server.copy"), + isServerPresent(tt, "scaleway_instance_server.control"), resource.TestCheckResourceAttr("scaleway_instance_server.main", "image", "ubuntu_jammy"), - resource.TestCheckResourceAttr("scaleway_instance_server.copy", "image", "ubuntu_jammy"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "id", "scaleway_instance_server.copy", "id"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), ), - ResourceName: "scaleway_instance_server.copy", - ImportState: true, - ImportStateIdFunc: func(state *terraform.State) (string, error) { - return state.RootModule().Resources["scaleway_instance_server.main"].Primary.ID, nil - }, - ImportStatePersist: true, }, { - Config: ` + Config: fmt.Sprintf(` data "scaleway_marketplace_image" "jammy" { label = "ubuntu_jammy" + image_type = "%s" } resource "scaleway_instance_server" "main" { + name = "main-server" image = data.scaleway_marketplace_image.jammy.id type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } - resource "scaleway_instance_server" "copy" { + resource "scaleway_instance_server" "control" { + name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } - `, - Check: resource.ComposeTestCheckFunc( - isServerPresent(tt, "scaleway_instance_server.main"), - isServerPresent(tt, "scaleway_instance_server.copy"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.jammy", "id"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "id", "scaleway_instance_server.copy", "id"), - ), - }, - { - RefreshState: true, + `, marketplaceImageType), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.main"), - isServerPresent(tt, "scaleway_instance_server.copy"), + isServerPresent(tt, "scaleway_instance_server.control"), resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.jammy", "id"), - resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "id", "scaleway_instance_server.copy", "id"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", true), + acctest.CheckResourceIDPersisted("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), ), }, { - Config: ` + Config: fmt.Sprintf(` data "scaleway_marketplace_image" "focal" { label = "ubuntu_focal" + image_type = "%s" } resource "scaleway_instance_server" "main" { + name = "main-server" image = data.scaleway_marketplace_image.focal.id type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } - resource "scaleway_instance_server" "copy" { + resource "scaleway_instance_server" "control" { + name = "control-server" image = "ubuntu_jammy" type = "DEV1-S" state = "stopped" - root_volume { - volume_type = "l_ssd" // Keep this while data.scaleway_marketplace_image does not provide a image_type filter. - } } - `, - PlanOnly: true, - ExpectNonEmptyPlan: true, + `, marketplaceImageType), Check: resource.ComposeTestCheckFunc( isServerPresent(tt, "scaleway_instance_server.main"), + isServerPresent(tt, "scaleway_instance_server.control"), resource.TestCheckResourceAttrPair("scaleway_instance_server.main", "image", "data.scaleway_marketplace_image.focal", "id"), - resource.TestCheckResourceAttr("scaleway_instance_server.copy", "image", "ubuntu_jammy"), - serverIDsAreDifferent("scaleway_instance_server.main", "scaleway_instance_server.copy"), + resource.TestCheckResourceAttr("scaleway_instance_server.control", "image", "ubuntu_jammy"), + imageIDMatchLabel(tt, "scaleway_instance_server.main", "scaleway_instance_server.control", false), + acctest.CheckResourceIDChanged("scaleway_instance_server.main", &mainServerID), + acctest.CheckResourceIDPersisted("scaleway_instance_server.control", &controlServerID), ), }, }, }) } -func serverIDsAreDifferent(nameFirst, nameSecond string) resource.TestCheckFunc { +func imageIDMatchLabel(tt *acctest.TestTools, resourceWithImageID, resourceWithImageLabel string, expectMatch bool) resource.TestCheckFunc { return func(s *terraform.State) error { - rs, ok := s.RootModule().Resources[nameFirst] + rs, ok := s.RootModule().Resources[resourceWithImageID] if !ok { - return fmt.Errorf("resource was not found: %s", nameFirst) + return fmt.Errorf("resource was not found: %s", resourceWithImageID) } - idFirst := rs.Primary.ID + zonedImageID := zonal.ExpandID(rs.Primary.Attributes["image"]) + expectedImageID := zonedImageID.ID + zone := zonedImageID.Zone + commercialType := rs.Primary.Attributes["type"] - rs, ok = s.RootModule().Resources[nameSecond] + rs, ok = s.RootModule().Resources[resourceWithImageLabel] if !ok { - return fmt.Errorf("resource was not found: %s", nameSecond) + return fmt.Errorf("resource was not found: %s", resourceWithImageLabel) } - idSecond := rs.Primary.ID + imageLabel := rs.Primary.Attributes["image"] + + client := meta.ExtractScwClient(tt.Meta) + api := marketplace.NewAPI(client) + + localImageIDFromLabel, err := api.GetLocalImageByLabel(&marketplace.GetLocalImageByLabelRequest{ + ImageLabel: imageLabel, + Zone: zone, + CommercialType: commercialType, + Type: marketplaceImageType, + }) + if err != nil { + return fmt.Errorf("failed to get local image by label: %w", err) + } - if idFirst == idSecond { - return fmt.Errorf("IDs of both resources were equal when they should not have been (%s and %s)", nameFirst, nameSecond) + if expectMatch && expectedImageID != localImageIDFromLabel.ID { + return fmt.Errorf("unexpected image ID for label %q: expected %s, got %s", imageLabel, expectedImageID, localImageIDFromLabel.ID) + } else if !expectMatch && expectedImageID == localImageIDFromLabel.ID { + return fmt.Errorf("images IDs match when they should not") } return nil @@ -2200,6 +2187,7 @@ func TestAccServer_PrivateNetworkMissingPNIC(t *testing.T) { } func TestAccServer_AdminPasswordEncryptionSSHKeyID(t *testing.T) { + t.Skip("There is currently a bug when resetting the field, we should reinstate the test once the fix has been deployed") tt := acctest.NewTestTools(t) defer tt.Cleanup() @@ -2272,6 +2260,7 @@ func TestAccServer_AdminPasswordEncryptionSSHKeyID(t *testing.T) { } func TestGetEndOfServiceDate(t *testing.T) { + t.Skip("There are currently no Instance type scheduled for EndOfService") tt := acctest.NewTestTools(t) client := meta.ExtractScwClient(tt.Meta) From d5d104bcad1562fb1f86cfda5d1f78d0c529ede7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Thu, 9 Oct 2025 11:16:43 +0200 Subject: [PATCH 07/12] cassettes --- ...ata-source-private-nic-basic.cassette.yaml | 2251 ++-- .../data-source-server-basic.cassette.yaml | 1372 ++- .../data-source-servers-basic.cassette.yaml | 2244 ++-- ...a-source-servers-private-ips.cassette.yaml | 3839 ++----- ...age-server-with-local-volume.cassette.yaml | 6851 +++--------- ...image-server-with-sbs-volume.cassette.yaml | 2943 ++--- .../testdata/image-server.cassette.yaml | 1517 ++- .../placement-group-rename.cassette.yaml | 1114 +- .../testdata/private-nic-basic.cassette.yaml | 1689 +-- .../testdata/private-nic-tags.cassette.yaml | 1832 +-- .../private-nic-with-ipam.cassette.yaml | 1684 ++- .../testdata/server-alter-tags.cassette.yaml | 882 +- .../testdata/server-basic.cassette.yaml | 1890 ++-- .../testdata/server-basic2.cassette.yaml | 812 +- ...-external-root-volume-update.cassette.yaml | 1304 +-- ...r-block-external-root-volume.cassette.yaml | 4383 ++++++-- .../server-block-external.cassette.yaml | 2537 +++-- .../server-custom-diff-image.cassette.yaml | 1890 ++-- .../testdata/server-ip-removed.cassette.yaml | 1030 +- .../testdata/server-ips-removed.cassette.yaml | 1012 +- .../testdata/server-ips.cassette.yaml | 1476 +-- .../testdata/server-ipv6.cassette.yaml | 1454 +-- ...te-invalid-local-volume-size.cassette.yaml | 1078 +- .../testdata/server-migrate.cassette.yaml | 2576 ++--- .../testdata/server-minimal1.cassette.yaml | 1112 +- .../testdata/server-minimal2.cassette.yaml | 2846 ++--- ...private-network-missing-pnic.cassette.yaml | 2734 +++-- .../server-private-network.cassette.yaml | 9959 +---------------- .../server-root-volume-boot.cassette.yaml | 898 +- ...olume-from-external-snapshot.cassette.yaml | 2364 ++-- .../server-root-volume1.cassette.yaml | 2020 +--- .../testdata/server-state1.cassette.yaml | 1940 ++-- .../testdata/server-state2.cassette.yaml | 1816 +-- .../server-user-data-basic.cassette.yaml | 1046 +- ...ata-with-cloud-init-at-start.cassette.yaml | 1150 +- ...-without-cloud-init-at-start.cassette.yaml | 1382 +-- .../server-with-placement-group.cassette.yaml | 3147 ++---- .../server-with-reserved-ip.cassette.yaml | 2332 ++-- .../testdata/snapshot-server.cassette.yaml | 1271 +-- ...ta-source-ipamip-instance-lb.cassette.yaml | 2162 ++-- .../data-source-ipamip-instance.cassette.yaml | 1567 +-- .../ipamip-reverse-dns-basic.cassette.yaml | 1256 +-- .../testdata/vpc-route-basic.cassette.yaml | 3700 +++--- ...ublic-gateway-pat-rule-basic.cassette.yaml | 2099 ++-- ...ublic-gateway-pat-rule-basic.cassette.yaml | 2067 ++-- 45 files changed, 37263 insertions(+), 61265 deletions(-) diff --git a/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml b/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml index 38ed1838e..879325ca2 100644 --- a/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,7 +36,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:15 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1bc6200-e24d-4150-80be-425483351886 + - 7c8c083f-4a98-4b54-8067-bc99234e2efb X-Total-Count: - "75" status: 200 OK code: 200 - duration: 142.905042ms + duration: 45.13166ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:16 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 414fb4dd-e0be-4a93-bb28-3d0d74a4b038 + - b7697e85-5c19-432b-ba19-2fda51811b11 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 44.075042ms + duration: 67.198971ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -131,18 +131,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:16 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -152,29 +152,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1147c9c9-a3d3-4ff3-b8a1-bb66f40fd3a3 + - 7b86c934-5f78-42dc-999f-e919b12374bc status: 200 OK code: 200 - duration: 108.2655ms + duration: 53.665329ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 250 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-busy-bhaskara","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + body: '{"name":"test-terraform-datasource-private-nic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -182,18 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1774 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:15.998290Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","name":"tf-pn-busy-bhaskara","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-09-08T07:07:15.998290Z","id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-09-08T07:07:15.998290Z","id":"8cb79011-31c0-4273-95fd-78a69245bcb8","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3683::/64","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1065" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:16 GMT + - Wed, 08 Oct 2025 23:04:28 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -203,46 +205,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea23c4f0-c33e-4877-bcff-400654b7a150 - status: 200 OK - code: 200 - duration: 789.332291ms + - 8614e717-c92d-442e-955f-177ff989d086 + status: 201 Created + code: 201 + duration: 882.873644ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-modest-swanson","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b5a09270-b385-4e43-b78f-b90bb8f54a66 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1090 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:15.998290Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","name":"tf-pn-busy-bhaskara","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-09-08T07:07:15.998290Z","id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-09-08T07:07:15.998290Z","id":"8cb79011-31c0-4273-95fd-78a69245bcb8","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3683::/64","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "1065" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:16 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -252,50 +256,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80a09898-7d42-473c-8f6d-fda99b956d7c + - db87d0f8-4810-400b-b157-ca194f2bb9cf status: 200 OK code: 200 - duration: 47.141542ms + duration: 1.144366841s - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 250 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-terraform-datasource-private-nic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:16.338728+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:16 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee6dc43e-a145-4245-8c6e-25a852324cd4 - status: 201 Created - code: 201 - duration: 732.209292ms + - f35cb950-eb99-43e2-8bbb-30b8c38cef22 + status: 200 OK + code: 200 + duration: 117.592128ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c method: GET response: proto: HTTP/2.0 @@ -333,18 +333,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1090 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:16.338728+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "1752" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:17 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ed350a4-e23d-49fd-bc18-f409d7d1ce0d + - 11a91d08-f2ca-4ba0-bb37-52afa91b2963 status: 200 OK code: 200 - duration: 103.179375ms + duration: 53.794208ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -382,18 +382,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:16.338728+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:17 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7116bd3-a8e2-4be8-b41f-aefec32b7b63 + - 0e9605f4-93e7-4343-8a59-2105b1f6067b status: 200 OK code: 200 - duration: 120.609917ms + duration: 100.026496ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -431,18 +431,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:17 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ada1fc32-cdd6-498d-b356-52b4e3693b59 + - 46a75c5e-38f3-4935-9034-3bc082ba06cb status: 200 OK code: 200 - duration: 43.654375ms + duration: 35.024105ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/action","href_result":"/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33","id":"2c4c45cc-8b1b-465e-b4f1-6411cf92f951","progress":0,"started_at":"2025-09-08T07:07:17.361925+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action","href_result":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418","id":"2ee75cf8-33f8-42a6-926e-a3498a67f92b","progress":0,"started_at":"2025-10-08T23:04:28.765657+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:17 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2c4c45cc-8b1b-465e-b4f1-6411cf92f951 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2ee75cf8-33f8-42a6-926e-a3498a67f92b Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30557a34-d5bd-4e06-a68c-0b8df6a6ccc6 + - 11ca7bbd-0b43-462b-bb77-5fd7319615ca status: 202 Accepted code: 202 - duration: 203.846833ms + duration: 462.736113ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -533,18 +533,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:17.204524+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:28.352257+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1774" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:17 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76721ecb-5efc-4176-8064-35110accf3ef + - c2b57b5c-6bf5-48e5-b091-323995a38910 status: 200 OK code: 200 - duration: 123.380583ms + duration: 101.738348ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -582,18 +582,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1908 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1908" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:22 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76431edf-7002-4a5e-a88c-e47714e114de + - f15e67ad-700d-49f0-ba93-2f12e82c444a status: 200 OK code: 200 - duration: 132.488625ms + duration: 127.137008ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -631,18 +631,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1908 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1908" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a5fc997-84af-4d50-9f80-63d76d64c676 + - ae0374e7-e62e-4bcf-95ba-7c233f63808e status: 200 OK code: 200 - duration: 500.286667ms + duration: 91.986579ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' headers: Content-Length: - "143" @@ -691,7 +691,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2888ad8-f03b-438d-8010-bd71f564098b + - df135205-80dd-4a2c-935e-7d8b6b95cf02 status: 404 Not Found code: 404 - duration: 29.132666ms + duration: 27.947163ms - id: 14 request: proto: HTTP/1.1 @@ -720,8 +720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -729,18 +729,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be462854-a29e-407b-aa52-490dca517032 + - 4420c9ea-37db-4670-ab86-74ff10d10210 status: 200 OK code: 200 - duration: 47.162625ms + duration: 37.798494ms - id: 15 request: proto: HTTP/1.1 @@ -769,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data method: GET response: proto: HTTP/2.0 @@ -789,7 +789,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c690ce-d44f-4da4-828f-03765e805ae0 + - ae0377a9-998f-435a-980a-a5ace0a91cdd status: 200 OK code: 200 - duration: 62.6505ms + duration: 56.222445ms - id: 16 request: proto: HTTP/1.1 @@ -818,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -838,9 +838,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -850,12 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ef00998-1e51-436a-8ea7-65c3847f4786 + - 36b22aca-f3e9-427a-bc3a-f005871807f4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.223833ms + duration: 48.019839ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -880,18 +880,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1908 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1908" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 363c2506-9a50-4346-9997-9942a0006ec0 + - a48c61a4-f3a2-48bc-8eee-1ab82eea4652 status: 200 OK code: 200 - duration: 124.960167ms + duration: 116.645361ms - id: 18 request: proto: HTTP/1.1 @@ -916,14 +916,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","tags":["test-terraform-datasource-private-nic"]}' + body: '{"private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","tags":["test-terraform-datasource-private-nic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: POST response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -942,7 +942,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:24 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb9ba420-76fd-4506-9bf1-a456815afeb0 + - ed498627-ce5e-46a3-9e12-5eb3e549594a status: 201 Created code: 201 - duration: 642.696958ms + duration: 532.527352ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -982,7 +982,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -991,7 +991,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:24 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 648904d4-c259-4136-a103-63a346200944 + - fc50bf8e-55df-4241-9087-6916ff217598 status: 200 OK code: 200 - duration: 56.636958ms + duration: 67.311297ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1040,7 +1040,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:29 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4887409-bd79-44d6-b55b-cf15a492d23f + - ebed8ca6-43be-47de-b67d-4e26ecedb675 status: 200 OK code: 200 - duration: 67.11675ms + duration: 46.311112ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1089,7 +1089,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:34 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8a18d43-21b0-43ee-b6d1-7316b33a4153 + - d12fd514-cc68-497e-9802-7ee6b234b479 status: 200 OK code: 200 - duration: 65.458458ms + duration: 57.524223ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1138,7 +1138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:39 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c253de76-1122-40c7-8cf3-275b65f10bf7 + - 574c565f-35c0-4f13-a099-aab94dde58d9 status: 200 OK code: 200 - duration: 89.989792ms + duration: 57.735994ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1187,7 +1187,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:44 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4febe0c-d764-402a-95d9-e1b8ffaa5d86 + - 12959f77-00fb-4fd5-a3ec-5c51287cfe6b status: 200 OK code: 200 - duration: 51.645ms + duration: 55.500743ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1227,7 +1227,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1236,7 +1236,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:49 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ad7e66b-383a-4511-a9a0-9b63710096f4 + - df5877bc-f2dc-448f-96d5-83ad6c17152f status: 200 OK code: 200 - duration: 66.006708ms + duration: 51.082627ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1274,18 +1274,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 512 + content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:23.673851+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "512" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:54 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26863929-6d67-4f07-8ac6-d1d623edeb8a + - 57d0630d-366d-4e70-bb98-c0d9059e1b23 status: 200 OK code: 200 - duration: 73.67725ms + duration: 49.844982ms - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1325,7 +1325,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -1334,7 +1334,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:59 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d46b5d97-2127-4c9b-ba7c-781ce2efe618 + - 1feef937-5975-4555-80a8-09f005483b3e status: 200 OK code: 200 - duration: 71.871667ms + duration: 56.819974ms - id: 27 request: proto: HTTP/1.1 @@ -1363,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -1372,18 +1372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:59 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6085ce9f-22aa-463e-a129-32a960e7df07 + - eeb2055e-322a-41dc-92d3-9b91c4e555df status: 200 OK code: 200 - duration: 63.188125ms + duration: 83.805241ms - id: 28 request: proto: HTTP/1.1 @@ -1412,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1421,18 +1421,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:59 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7fc6c66-361d-4942-9aa0-6ba285a73765 + - b05ca5a7-c605-4d58-b0e6-1ba76acd026b status: 200 OK code: 200 - duration: 131.489583ms + duration: 81.094199ms - id: 29 request: proto: HTTP/1.1 @@ -1461,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c method: GET response: proto: HTTP/2.0 @@ -1470,18 +1470,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1090 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "1074" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:07:59 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0039bea-8796-46e5-9abb-28e3e9846332 + - 38511725-632b-4196-83bb-3b9db43c24e3 status: 200 OK code: 200 - duration: 70.808417ms + duration: 30.581068ms - id: 30 request: proto: HTTP/1.1 @@ -1510,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b5a09270-b385-4e43-b78f-b90bb8f54a66 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -1519,18 +1519,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 2428 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:15.998290Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","name":"tf-pn-busy-bhaskara","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-09-08T07:07:15.998290Z","id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-09-08T07:07:15.998290Z","id":"8cb79011-31c0-4273-95fd-78a69245bcb8","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3683::/64","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1065" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c988a5e-ddc0-4c3f-80fc-c143c131c052 + - a356afb6-6255-49f4-a54d-a77ed82e8e3c status: 200 OK code: 200 - duration: 121.404792ms + duration: 102.976604ms - id: 31 request: proto: HTTP/1.1 @@ -1559,8 +1559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -1568,18 +1568,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' headers: Content-Length: - - "2405" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1589,10 +1589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a58ce0d6-621b-40e5-93bf-080b0f43e1e1 - status: 200 OK - code: 200 - duration: 140.30475ms + - 9fed5c17-7774-43ed-89b3-90d20af13803 + status: 404 Not Found + code: 404 + duration: 27.413631ms - id: 32 request: proto: HTTP/1.1 @@ -1608,8 +1608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -1617,18 +1617,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1638,10 +1638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2041e850-b7c8-4a7f-8c9a-bd7f3996ce24 - status: 404 Not Found - code: 404 - duration: 36.733083ms + - df64aa8f-137d-416e-aef1-a1361ea2c7aa + status: 200 OK + code: 200 + duration: 43.856039ms - id: 33 request: proto: HTTP/1.1 @@ -1657,8 +1657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data method: GET response: proto: HTTP/2.0 @@ -1666,18 +1666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "686" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1687,10 +1687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d69f4f7b-6cd3-4386-ba29-d702c8095252 + - 332102cf-7abe-4e09-baf2-6c4623930e9c status: 200 OK code: 200 - duration: 70.871667ms + duration: 51.897505ms - id: 34 request: proto: HTTP/1.1 @@ -1706,8 +1706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -1715,18 +1715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 517 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:06 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1736,10 +1738,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f628a056-1cf5-4487-93e0-f489845b05e0 + - 756af5f8-fd1c-46c5-91aa-31c005c3af00 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 56.635209ms + duration: 51.86199ms - id: 35 request: proto: HTTP/1.1 @@ -1755,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1764,20 +1768,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1104 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "517" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1787,12 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38c13f4a-39e2-4b60-9252-726c03e0a391 - X-Total-Count: - - "1" + - 0ca88b9f-7899-4ad5-b7a1-6df9619d9b75 status: 200 OK code: 200 - duration: 52.995042ms + duration: 34.621582ms - id: 36 request: proto: HTTP/1.1 @@ -1808,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -1817,18 +1817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1838,10 +1838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04f03a44-1c32-4361-9f1e-ab05225a47c7 + - e5516945-4b8e-4c03-86e3-2c4cc7d61f39 status: 200 OK code: 200 - duration: 44.957625ms + duration: 54.252207ms - id: 37 request: proto: HTTP/1.1 @@ -1857,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -1866,18 +1866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1887,10 +1887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4bfae17-b7a7-41e9-91f2-05bf2a6012b3 + - a629978e-9141-4135-9ccc-99a183082a84 status: 200 OK code: 200 - duration: 72.540334ms + duration: 118.007237ms - id: 38 request: proto: HTTP/1.1 @@ -1906,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1915,18 +1915,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1936,10 +1936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5b15ea-fccb-4dc7-b45d-54e864db5214 + - 965dd817-ba75-403d-8123-2c5e24380834 status: 200 OK code: 200 - duration: 157.239125ms + duration: 51.308173ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c method: GET response: proto: HTTP/2.0 @@ -1964,18 +1964,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1090 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "1074" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:00 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1985,10 +1985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41936831-f727-4d8e-83fe-97d113927506 + - a9cacf07-2700-4182-923e-cc94259ff2d6 status: 200 OK code: 200 - duration: 71.079792ms + duration: 26.993041ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b5a09270-b385-4e43-b78f-b90bb8f54a66 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -2013,18 +2013,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 2428 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:15.998290Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","name":"tf-pn-busy-bhaskara","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-09-08T07:07:15.998290Z","id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-09-08T07:07:15.998290Z","id":"8cb79011-31c0-4273-95fd-78a69245bcb8","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3683::/64","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1065" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2034,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a08116f-0b79-4f54-ae19-d2ca0c005e61 + - 2d66d17f-e227-4ac0-8c1e-a6e488f6c8d1 status: 200 OK code: 200 - duration: 27.488417ms + duration: 94.327782ms - id: 41 request: proto: HTTP/1.1 @@ -2053,8 +2053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -2062,18 +2062,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' headers: Content-Length: - - "2405" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2083,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73f715a1-aee3-4a6e-8a03-728e47ab7c59 - status: 200 OK - code: 200 - duration: 155.6995ms + - 7eeef4ac-d076-4c5d-8e78-8c1cc02b7d6d + status: 404 Not Found + code: 404 + duration: 27.649327ms - id: 42 request: proto: HTTP/1.1 @@ -2102,8 +2102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -2111,18 +2111,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2132,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 419fc001-605f-40bf-8ec9-9c28cc863a8f - status: 404 Not Found - code: 404 - duration: 32.216333ms + - 26e8aae9-025d-443a-892d-29868dc31153 + status: 200 OK + code: 200 + duration: 60.748901ms - id: 43 request: proto: HTTP/1.1 @@ -2151,8 +2151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data method: GET response: proto: HTTP/2.0 @@ -2160,18 +2160,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "686" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2181,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94b68716-3479-49f2-bbc8-1ab6b0dbeabd + - 6d7878e4-5f41-4095-a3f0-2425d5b1aac0 status: 200 OK code: 200 - duration: 47.185ms + duration: 70.737143ms - id: 44 request: proto: HTTP/1.1 @@ -2200,8 +2200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -2209,18 +2209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 517 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2230,10 +2232,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3861eb8b-fb5d-46ba-ae7a-7ad31b28547f + - 7f38e35f-5d18-466b-be5f-1f26ca62e89f + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 55.587541ms + duration: 56.51569ms - id: 45 request: proto: HTTP/1.1 @@ -2249,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2258,20 +2262,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1104 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "517" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2281,12 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8cc2267-e202-49a2-a110-df9ddcef873b - X-Total-Count: - - "1" + - 6a0fd139-e1a8-40d5-a0f0-7e3ec2b4b149 status: 200 OK code: 200 - duration: 72.187041ms + duration: 50.235957ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -2311,18 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 517 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1074" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2332,10 +2334,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af9214be-88e6-4d75-8bcc-781b508a20b7 + - b58dd1b1-f198-4a02-8a81-c1efbcb8f2a5 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 33.702833ms + duration: 62.086068ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics?tags=test-terraform-datasource-private-nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -2362,7 +2366,7 @@ interactions: trailer: {} content_length: 517 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - "517" @@ -2371,9 +2375,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2383,12 +2387,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54abcd76-3019-46e4-ac1a-4fe62f7cfb3e + - 1334b3a8-9a01-470d-83f3-a5cb732abe7c X-Total-Count: - "1" status: 200 OK code: 200 - duration: 62.342458ms + duration: 67.737567ms - id: 48 request: proto: HTTP/1.1 @@ -2404,8 +2408,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -2413,20 +2417,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2436,12 +2438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebee176a-05a6-49d2-a45f-878cb69fc357 - X-Total-Count: - - "1" + - f3305c70-b5f7-4bd3-82e9-fd5c9e5bb955 status: 200 OK code: 200 - duration: 63.723ms + duration: 75.434615ms - id: 49 request: proto: HTTP/1.1 @@ -2457,8 +2457,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -2468,7 +2468,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -2477,7 +2477,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2487,10 +2487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e3bfcec-547c-4c98-b809-0d171d95a26d + - 1acb7292-9278-4bfc-a0b1-d237a09a1650 status: 200 OK code: 200 - duration: 73.432292ms + duration: 52.808292ms - id: 50 request: proto: HTTP/1.1 @@ -2506,8 +2506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -2517,7 +2517,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -2526,7 +2526,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2536,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1057edd6-23ce-4801-ae60-46dbde9ded01 + - 592ddd34-45fd-4fde-8401-4bc21aad903c status: 200 OK code: 200 - duration: 61.374167ms + duration: 63.781088ms - id: 51 request: proto: HTTP/1.1 @@ -2555,8 +2555,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -2564,18 +2564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2585,10 +2585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0427cfc5-f523-43f4-a6e3-ad3445ce38cd + - a6168c7f-b8d7-4d89-88bc-ae4eb8c43dc2 status: 200 OK code: 200 - duration: 63.832333ms + duration: 109.274339ms - id: 52 request: proto: HTTP/1.1 @@ -2604,8 +2604,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -2613,18 +2613,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2405" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2634,10 +2634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd8b5d59-9f31-4dfe-915e-3a891b95d7fb + - 70dba7c4-ac77-4f80-810b-46f5686b3c76 status: 200 OK code: 200 - duration: 121.175041ms + duration: 105.92276ms - id: 53 request: proto: HTTP/1.1 @@ -2653,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2662,18 +2662,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1104 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1074" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2683,10 +2683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a1f49b-8289-4e28-afc1-4d00361ddcd4 + - 02003c33-1ade-42f7-8e2d-6dabefba5a28 status: 200 OK code: 200 - duration: 47.837791ms + duration: 38.265783ms - id: 54 request: proto: HTTP/1.1 @@ -2702,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -2711,18 +2711,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2405" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2732,10 +2732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 943e3190-e762-409b-b356-e67d53636f90 + - 098c45da-d563-4727-9709-43b2a31975f9 status: 200 OK code: 200 - duration: 118.656083ms + duration: 107.096695ms - id: 55 request: proto: HTTP/1.1 @@ -2751,8 +2751,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2760,18 +2760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2781,10 +2781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f274186-15d4-4179-924b-1255c04e66c2 + - e466e7d1-746f-49ae-be1f-44cbf9396bba status: 200 OK code: 200 - duration: 121.715125ms + duration: 50.201133ms - id: 56 request: proto: HTTP/1.1 @@ -2800,8 +2800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -2809,18 +2809,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2830,10 +2830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d883ccf8-18e0-45de-a8df-00aa3a7726cb + - aab5f84b-a952-456b-9200-e78dd0b30955 status: 200 OK code: 200 - duration: 49.251875ms + duration: 44.960084ms - id: 57 request: proto: HTTP/1.1 @@ -2849,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2858,18 +2858,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2879,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13620b2a-21c2-4dde-ae9d-a6cb625d1d04 + - db214d4f-136e-45ec-8184-881d7e0eb6d3 status: 200 OK code: 200 - duration: 55.742875ms + duration: 46.486131ms - id: 58 request: proto: HTTP/1.1 @@ -2898,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -2907,18 +2907,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2928,10 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b2c23d3-5333-4677-904d-be6aa0c601f8 + - 31781d05-e602-4115-a544-48569a77e048 status: 200 OK code: 200 - duration: 86.124625ms + duration: 112.430335ms - id: 59 request: proto: HTTP/1.1 @@ -2947,8 +2947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2956,18 +2956,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2977,10 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17da1534-82bd-4e0b-80a8-7a726154e007 + - a5c28795-30dc-4e01-a8b4-48882c62109a status: 200 OK code: 200 - duration: 100.477834ms + duration: 46.448521ms - id: 60 request: proto: HTTP/1.1 @@ -2996,8 +2996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -3005,18 +3005,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:01 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3026,10 +3026,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faa76ac8-55fe-4b0d-9796-d44809590b23 + - e2b03acb-f5d2-418f-a044-7420a170c8ed status: 200 OK code: 200 - duration: 104.993667ms + duration: 55.411093ms - id: 61 request: proto: HTTP/1.1 @@ -3045,8 +3045,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -3054,18 +3054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "514" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3075,10 +3077,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 914149a1-ff77-4710-8375-043204f7f7c9 + - 74f9636a-226d-42ff-ae9d-6ffed6875081 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 55.863292ms + duration: 47.769598ms - id: 62 request: proto: HTTP/1.1 @@ -3094,8 +3098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -3105,7 +3109,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -3114,7 +3118,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3124,10 +3128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb19e16e-1357-4b32-b8cd-40dd70d7d17e + - aa997cdf-406e-45a4-9aeb-87595e8d31d0 status: 200 OK code: 200 - duration: 68.044166ms + duration: 49.268524ms - id: 63 request: proto: HTTP/1.1 @@ -3143,8 +3147,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics?tags=test-terraform-datasource-private-nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -3154,7 +3158,7 @@ interactions: trailer: {} content_length: 517 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - "517" @@ -3163,9 +3167,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3175,12 +3179,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61dbe294-d75e-4bbc-bafa-18d979305a6b + - 3088b4fd-daed-4b65-97f5-df82d3842000 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 72.736958ms + duration: 53.221226ms - id: 64 request: proto: HTTP/1.1 @@ -3196,8 +3200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -3205,20 +3209,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3228,12 +3230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03213665-c9fb-4f4e-a472-fd085b057c5d - X-Total-Count: - - "1" + - 10ffdb69-b0b3-4f03-b560-2d412fc236ba status: 200 OK code: 200 - duration: 73.292084ms + duration: 53.943244ms - id: 65 request: proto: HTTP/1.1 @@ -3249,8 +3249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -3260,7 +3260,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -3269,7 +3269,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3279,10 +3279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0566b12d-1a24-4a7e-8d65-4ec2603bc207 + - 42a08c54-dba7-472e-b8f8-379209b41dec status: 200 OK code: 200 - duration: 57.732167ms + duration: 79.725192ms - id: 66 request: proto: HTTP/1.1 @@ -3298,8 +3298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -3307,18 +3307,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3328,10 +3328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2f38a95-841f-41c0-af40-88c6e653c1f2 + - 37ab865e-f73f-4386-863a-3be694b41dd3 status: 200 OK code: 200 - duration: 58.701958ms + duration: 87.464338ms - id: 67 request: proto: HTTP/1.1 @@ -3347,8 +3347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3356,18 +3356,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3377,10 +3377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09be371a-b7f2-41f7-a988-1f69858732b9 + - b9538323-058c-437d-90f3-ad806eb4b053 status: 200 OK code: 200 - duration: 139.919833ms + duration: 49.007711ms - id: 68 request: proto: HTTP/1.1 @@ -3396,8 +3396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -3405,18 +3405,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3426,10 +3426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddef6df4-2557-44ab-b4f5-956f490fd712 + - c91af73c-35f7-4cd6-a05a-171400a6375b status: 200 OK code: 200 - duration: 42.90875ms + duration: 105.000542ms - id: 69 request: proto: HTTP/1.1 @@ -3445,8 +3445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -3454,18 +3454,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2405" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3475,10 +3475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d56715d-1658-4241-9c57-8b2837072735 + - ae1dca03-d872-483b-a853-4974404dc770 status: 200 OK code: 200 - duration: 135.536875ms + duration: 106.088357ms - id: 70 request: proto: HTTP/1.1 @@ -3494,8 +3494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3503,18 +3503,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3524,10 +3524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4eaba530-5523-4c04-8751-a838ba213641 + - 8558e3a3-aed3-4f6d-bfcf-fea1b201f8e8 status: 200 OK code: 200 - duration: 144.624375ms + duration: 50.371638ms - id: 71 request: proto: HTTP/1.1 @@ -3543,8 +3543,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3552,18 +3552,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1104 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1074" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3573,10 +3573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f40d1832-7d23-444f-bb53-01848fe23dbf + - 401c2877-2537-40c0-9e6f-acd5a5f576d1 status: 200 OK code: 200 - duration: 51.611292ms + duration: 50.742976ms - id: 72 request: proto: HTTP/1.1 @@ -3592,8 +3592,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c method: GET response: proto: HTTP/2.0 @@ -3601,18 +3601,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1090 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "1074" + - "1090" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3622,10 +3622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd959973-d9ec-44b7-950f-8cf3cbade572 + - 018e71e2-e95a-4c2c-a18a-f80c3a397298 status: 200 OK code: 200 - duration: 60.759208ms + duration: 39.254535ms - id: 73 request: proto: HTTP/1.1 @@ -3641,8 +3641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b5a09270-b385-4e43-b78f-b90bb8f54a66 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -3650,18 +3650,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 2428 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:15.998290Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","name":"tf-pn-busy-bhaskara","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-09-08T07:07:15.998290Z","id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-09-08T07:07:15.998290Z","id":"8cb79011-31c0-4273-95fd-78a69245bcb8","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3683::/64","updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-09-08T07:07:15.998290Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1065" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3671,10 +3671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7edfc23-e1ea-4351-9cf0-aa57f66b9889 + - 31316add-428e-4834-8f5f-12f4a8f5c3df status: 200 OK code: 200 - duration: 39.133ms + duration: 77.71574ms - id: 74 request: proto: HTTP/1.1 @@ -3690,8 +3690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -3699,18 +3699,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' headers: Content-Length: - - "2405" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3720,10 +3720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b555a74a-8f32-4ac3-8a6f-e5ed471097c8 - status: 200 OK - code: 200 - duration: 123.460917ms + - 9e7039c4-4861-4e8a-b1b6-28b5888238d3 + status: 404 Not Found + code: 404 + duration: 30.275973ms - id: 75 request: proto: HTTP/1.1 @@ -3739,8 +3739,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -3748,18 +3748,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3769,10 +3769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0459488-8132-4d4d-90d6-204c5fed561b - status: 404 Not Found - code: 404 - duration: 29.241875ms + - 09ce79c2-f145-405b-be77-283ea1b68ee1 + status: 200 OK + code: 200 + duration: 43.434939ms - id: 76 request: proto: HTTP/1.1 @@ -3788,8 +3788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data method: GET response: proto: HTTP/2.0 @@ -3797,18 +3797,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "686" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3818,10 +3818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02b41792-971b-48b6-98fb-89e3b89edac1 + - 4c3f4fd8-1f9f-4db9-a81a-23c77353640a status: 200 OK code: 200 - duration: 43.927458ms + duration: 54.511877ms - id: 77 request: proto: HTTP/1.1 @@ -3837,8 +3837,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -3846,18 +3846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 517 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:02 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3867,10 +3869,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c96c98-8e77-4574-a638-c5a7b72ae64d + - c722a325-462a-4951-8b0e-e3b61da2d654 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 58.614125ms + duration: 80.414889ms - id: 78 request: proto: HTTP/1.1 @@ -3886,8 +3890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3895,20 +3899,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1104 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "517" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3918,12 +3920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a749dba-918f-47da-a405-0ac33dad6df8 - X-Total-Count: - - "1" + - 70926ab4-6424-445c-b7ae-8e217693adb7 status: 200 OK code: 200 - duration: 88.0465ms + duration: 25.934902ms - id: 79 request: proto: HTTP/1.1 @@ -3939,8 +3939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -3948,18 +3948,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3969,10 +3969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8004450-6f22-49c3-9e4e-ad7d3f88b21e + - 0e8de3c6-c270-4986-99cb-573c29144135 status: 200 OK code: 200 - duration: 28.563042ms + duration: 55.430208ms - id: 80 request: proto: HTTP/1.1 @@ -3988,8 +3988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics method: GET response: proto: HTTP/2.0 @@ -3999,7 +3999,7 @@ interactions: trailer: {} content_length: 517 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - "517" @@ -4008,9 +4008,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4020,12 +4020,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4006d39c-5a94-4aba-84a7-31a1a5e65e00 + - 6020ed2d-2b0f-4e10-b709-782bbc85ee17 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 62.254459ms + duration: 55.832744ms - id: 81 request: proto: HTTP/1.1 @@ -4041,8 +4041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -4050,18 +4050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "514" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4071,10 +4073,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fad1c844-b6f3-4de2-989c-ca979617419b + - f6f045db-1273-4ff3-bbdc-5059520e2b73 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 70.37375ms + duration: 55.760761ms - id: 82 request: proto: HTTP/1.1 @@ -4090,8 +4094,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics?tags=test-terraform-datasource-private-nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -4099,20 +4103,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 514 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4122,12 +4124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c7b0400-a2e5-426f-80ce-68084c81547a - X-Total-Count: - - "1" + - e25be386-ce9d-4231-a8d7-aa5040ee61ad status: 200 OK code: 200 - duration: 70.424875ms + duration: 55.907042ms - id: 83 request: proto: HTTP/1.1 @@ -4143,8 +4143,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -4154,7 +4154,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -4163,7 +4163,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4173,10 +4173,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b17744f-e814-4ef3-82b9-f9b50d3a4e2c + - d80bac0b-6660-4352-a5e4-9d9149782f63 status: 200 OK code: 200 - duration: 70.601834ms + duration: 64.444787ms - id: 84 request: proto: HTTP/1.1 @@ -4192,8 +4192,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4201,18 +4201,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4222,10 +4222,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98b3f5ad-81a6-46fd-bab5-591847ba41de + - 152cd51f-56b1-4dda-b86e-1059b66cbe09 status: 200 OK code: 200 - duration: 62.608667ms + duration: 92.983973ms - id: 85 request: proto: HTTP/1.1 @@ -4241,8 +4241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4250,18 +4250,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2405" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4271,10 +4271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4750e64e-4da0-4128-9548-4f812e310735 + - 17fba7e1-f4ab-4856-ae51-7823b7a3034f status: 200 OK code: 200 - duration: 112.988292ms + duration: 87.909162ms - id: 86 request: proto: HTTP/1.1 @@ -4290,8 +4290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4299,18 +4299,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1104 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1074" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4320,10 +4320,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27a151b4-bc71-4689-944d-56df030a56b6 + - b0dd39a1-ccb6-4320-9ebc-36053cbb7d81 status: 200 OK code: 200 - duration: 55.733375ms + duration: 66.084495ms - id: 87 request: proto: HTTP/1.1 @@ -4339,8 +4339,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4348,18 +4348,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2405" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4369,10 +4369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6cda530-2b2b-419b-b51d-b21f4d2622ac + - 1a7e7c4d-cda2-47be-9f82-4aae6a4ee526 status: 200 OK code: 200 - duration: 124.471083ms + duration: 116.053927ms - id: 88 request: proto: HTTP/1.1 @@ -4388,8 +4388,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4397,18 +4397,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4418,10 +4418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91244ae4-3079-462d-a477-9d1433637775 + - b1cd3deb-a5e4-4c60-8c78-a9b2d87569fa status: 200 OK code: 200 - duration: 129.533417ms + duration: 41.938276ms - id: 89 request: proto: HTTP/1.1 @@ -4437,8 +4437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4446,18 +4446,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4467,10 +4467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 607a28c4-c536-4b71-85f6-49bcf6f395de + - db4f51de-e14d-4486-923e-5c6a93a4aaa6 status: 200 OK code: 200 - duration: 50.9765ms + duration: 41.70829ms - id: 90 request: proto: HTTP/1.1 @@ -4486,8 +4486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -4495,18 +4495,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4516,10 +4516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54cc0f7c-4aeb-4fcd-9a86-b41c99a783b0 + - 7a53ae62-9cd0-45c3-8464-670799be6654 status: 200 OK code: 200 - duration: 43.428625ms + duration: 54.608727ms - id: 91 request: proto: HTTP/1.1 @@ -4535,8 +4535,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4544,18 +4544,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4565,10 +4565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d885e496-60a9-492d-baa4-25f5075be705 + - 9a927733-1689-4fa5-b3b6-c451a9c4184a status: 200 OK code: 200 - duration: 63.604625ms + duration: 107.231334ms - id: 92 request: proto: HTTP/1.1 @@ -4584,8 +4584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4593,18 +4593,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2405 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2405" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4614,10 +4614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40b3461d-958b-4550-a837-6b3b7210a737 + - e830a24e-6673-4e93-9d0f-fcb9f4310008 status: 200 OK code: 200 - duration: 96.442417ms + duration: 43.108363ms - id: 93 request: proto: HTTP/1.1 @@ -4633,8 +4633,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b5a09270-b385-4e43-b78f-b90bb8f54a66&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=3e1bd031-80ff-4360-b8bc-acba76a959b3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -4642,18 +4642,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:3683:951d:9287:49e2:4e64/64","created_at":"2025-09-08T07:07:23.980493Z","id":"872e2b0c-f1dd-4bef-8fc3-8ee82715c65c","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8cb79011-31c0-4273-95fd-78a69245bcb8"},"tags":[],"updated_at":"2025-09-08T07:07:23.980493Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-09-08T07:07:23.831707Z","id":"82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","mac_address":"02:00:00:19:81:46","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"841e1fa1-6a4e-4813-8f01-ca1edd1a7f90"},"tags":[],"updated_at":"2025-09-08T07:07:23.831707Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1074" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4663,10 +4663,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9ef8c2-5a24-4440-9620-843cc323ba9d + - 2b067eab-b9aa-44dd-aa3a-115ad274f086 status: 200 OK code: 200 - duration: 46.695625ms + duration: 52.302434ms - id: 94 request: proto: HTTP/1.1 @@ -4682,27 +4682,25 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 0 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-08T07:07:23.506965+00:00","id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","ipam_ip_ids":["82f0bd1b-1dc4-42bf-9e73-4f37b5cfbd0b","872e2b0c-f1dd-4bef-8fc3-8ee82715c65c"],"mac_address":"02:00:00:19:81:46","modification_date":"2025-09-08T07:07:58.406920+00:00","private_network_id":"b5a09270-b385-4e43-b78f-b90bb8f54a66","server_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:03 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4712,10 +4710,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d410112-39c7-4d5f-87c7-4f8511ab9894 - status: 200 OK - code: 200 - duration: 53.336709ms + - 3ef9a5e8-102a-4536-bfe6-e300a57837ec + status: 204 No Content + code: 204 + duration: 302.223113ms - id: 95 request: proto: HTTP/1.1 @@ -4731,25 +4729,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 148 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"52478560-bd30-4bde-815e-874f6eeecfe7","type":"not_found"}' headers: + Content-Length: + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4759,10 +4759,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bee60c04-a474-41cd-a8b9-4bc62b0398fe - status: 204 No Content - code: 204 - duration: 320.339709ms + - f10bebfb-5758-4311-8915-f672ea677656 + status: 404 Not Found + code: 404 + duration: 46.471763ms - id: 96 request: proto: HTTP/1.1 @@ -4778,8 +4778,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4787,18 +4787,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 1931 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"3e1bd031-80ff-4360-b8bc-acba76a959b3","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4808,46 +4808,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5910f37f-7130-48c7-8179-1086e70497b7 - status: 404 Not Found - code: 404 - duration: 55.856917ms + - d1c460b2-5555-4b30-939f-1e4cff4342e7 + status: 200 OK + code: 200 + duration: 98.818389ms - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1908 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:07:20.082468+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action","href_result":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418","id":"ac8f9b45-9fd0-4cc1-a461-06c0252db251","progress":0,"started_at":"2025-10-08T23:05:09.439359+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1908" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT + - Wed, 08 Oct 2025 23:05:09 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ac8f9b45-9fd0-4cc1-a461-06c0252db251 Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4857,10 +4861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d74c05c-9b9b-4911-af98-c5e5a1142608 - status: 200 OK - code: 200 - duration: 127.20675ms + - 3517d050-d64e-4fab-81cc-16a70960825c + status: 202 Accepted + code: 202 + duration: 163.770675ms - id: 98 request: proto: HTTP/1.1 @@ -4876,8 +4880,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4885,18 +4889,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1894 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:07:16.449103Z","id":"95396df1-3f83-43eb-90cc-1ffa41560c04","product_resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:07:16.449103Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4906,50 +4910,44 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 076f7c42-8a96-4dd4-860e-5c47ee4dc346 + - 86a2a859-47f3-4bb4-bd32-e579dbd35666 status: 200 OK code: 200 - duration: 40.05175ms + duration: 105.305145ms - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 0 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/action","href_result":"/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33","id":"69886d74-7654-438d-9dd5-cf2a4a973656","progress":0,"started_at":"2025-09-08T07:08:04.555022+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/69886d74-7654-438d-9dd5-cf2a4a973656 + - Wed, 08 Oct 2025 23:05:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4959,10 +4957,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39a37a2e-d4d9-4fa7-817c-7f911e468cda - status: 202 Accepted - code: 202 - duration: 338.363167ms + - b0c02178-b16d-4c74-a983-554a02f568f3 + status: 204 No Content + code: 204 + duration: 1.274664584s - id: 100 request: proto: HTTP/1.1 @@ -4978,8 +4976,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -4987,18 +4985,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1894 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:04 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5008,10 +5006,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24a9d130-8cc5-4e4e-b01c-a8d8007c425a + - 0b811c5a-424d-439b-9b2a-3cd1dbef1bad status: 200 OK code: 200 - duration: 138.558042ms + duration: 97.345729ms - id: 101 request: proto: HTTP/1.1 @@ -5027,25 +5025,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b5a09270-b385-4e43-b78f-b90bb8f54a66 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1894 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:05 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5055,10 +5055,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8bcf459-1add-40f0-bdec-2d9729277c72 - status: 204 No Content - code: 204 - duration: 1.129239209s + - 5c0bd781-c61a-4ce5-a0c3-c311c9f7cbff + status: 200 OK + code: 200 + duration: 88.669446ms - id: 102 request: proto: HTTP/1.1 @@ -5074,8 +5074,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 method: GET response: proto: HTTP/2.0 @@ -5083,18 +5083,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' headers: Content-Length: - - "1868" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5104,450 +5104,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 264b184b-b2f7-4cc4-b3d2-6272a8ac94bc - status: 200 OK - code: 200 - duration: 108.800041ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1868 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1868" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a251ae2-9d49-4fac-9848-5dee3f84d01f - status: 200 OK - code: 200 - duration: 133.153541ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1868 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1868" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0614a71c-1e37-4d10-aa2b-45958b369b09 - status: 200 OK - code: 200 - duration: 143.331708ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1868 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1868" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46022b75-3b63-46ec-bab3-5aa85f7c698a - status: 200 OK - code: 200 - duration: 131.670625ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1868 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1868" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c2edc9a-06c7-4a8e-a790-9eb5f5bf56e8 - status: 200 OK - code: 200 - duration: 479.969917ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1868 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"701","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:04.270751+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1868" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65d2efc4-780d-4a42-bf7e-d21136875d62 - status: 200 OK - code: 200 - duration: 122.58325ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1752 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:37.224553+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 89b70a99-1fb0-4759-bcf7-9bb4fc80f7d9 - status: 200 OK - code: 200 - duration: 117.366125ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1752 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:07:16.338728+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:a3","maintenances":[],"modification_date":"2025-09-08T07:08:37.224553+00:00","name":"test-terraform-datasource-private-nic","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1752" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98ba57cb-332d-468e-84a5-ce58f0a4faa5 - status: 200 OK - code: 200 - duration: 197.609334ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01d7de1c-5d34-4851-82de-24026f8d02f5 - status: 204 No Content - code: 204 - duration: 490.6405ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:08:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8138d5c6-b156-413c-964b-49d0edfefc1a + - af38ebd0-cbc4-4b68-a3fa-56ae47cde8e7 status: 404 Not Found code: 404 - duration: 79.11ms - - id: 112 + duration: 42.321563ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5562,8 +5123,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -5573,7 +5134,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' headers: Content-Length: - "143" @@ -5582,7 +5143,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:41 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5592,11 +5153,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f213c6-9f83-48de-9c3d-271ea9c9233b + - f9faaa0b-7069-46ef-87d5-670164acc8a4 status: 404 Not Found code: 404 - duration: 30.258458ms - - id: 113 + duration: 34.367119ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5611,8 +5172,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: GET response: proto: HTTP/2.0 @@ -5620,18 +5181,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 498 uncompressed: false - body: '{"created_at":"2025-09-08T07:07:16.449103Z","id":"e239d6ee-cc81-4c63-ab9c-951864db9aae","last_detached_at":"2025-09-08T07:08:41.696171Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:08:41.696171Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":"2025-10-08T23:05:21.152445Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.152445Z","zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:41 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5641,11 +5202,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fba5180d-54fb-414b-998f-bbfb17b26c43 + - 350e0a44-8c9a-4eaa-b76f-739baa9cb228 status: 200 OK code: 200 - duration: 42.273834ms - - id: 114 + duration: 41.759662ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5660,8 +5221,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e239d6ee-cc81-4c63-ab9c-951864db9aae + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f method: DELETE response: proto: HTTP/2.0 @@ -5678,7 +5239,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:41 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5688,11 +5249,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf46f471-b343-468f-b3c8-f8530fe342e5 + - a916be09-7ec2-4244-a17d-860598c67714 status: 204 No Content code: 204 - duration: 84.003208ms - - id: 115 + duration: 69.44843ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5707,8 +5268,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -5718,7 +5279,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' headers: Content-Length: - "143" @@ -5727,7 +5288,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:41 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5737,11 +5298,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9702fa9-5883-467a-a86b-c8eafd0fb460 + - 7c839353-07d6-465c-ae29-18166d8c0cc8 status: 404 Not Found code: 404 - duration: 32.564458ms - - id: 116 + duration: 29.256953ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5756,8 +5317,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -5767,7 +5328,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' headers: Content-Length: - "143" @@ -5776,7 +5337,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:41 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5786,11 +5347,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ce04b2-23e7-494b-9509-9d7b07d8d2a8 + - 4c84bed4-2200-4c3d-8a6d-97355ca951d5 status: 404 Not Found code: 404 - duration: 34.512667ms - - id: 117 + duration: 31.721539ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5805,8 +5366,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -5816,7 +5377,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' headers: Content-Length: - "143" @@ -5825,7 +5386,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:42 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5835,11 +5396,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f8c820-fef5-4492-98cc-d11c342155aa + - 55e46b08-e5d2-49f7-8958-dc34f0d5e298 status: 404 Not Found code: 404 - duration: 44.63375ms - - id: 118 + duration: 29.264597ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5854,8 +5415,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/34673ef8-658e-49ad-a37c-bb60a4d7df33/private_nics/3e1bd031-80ff-4360-b8bc-acba76a959b3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 method: GET response: proto: HTTP/2.0 @@ -5865,7 +5426,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"34673ef8-658e-49ad-a37c-bb60a4d7df33","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' headers: Content-Length: - "143" @@ -5874,7 +5435,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:08:42 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5884,7 +5445,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59c9dcbd-3f81-437f-9357-8c5378687ef5 + - e14b00aa-fc02-48d6-a43f-be23925343e3 status: 404 Not Found code: 404 - duration: 25.379375ms + duration: 29.640273ms diff --git a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml index fa1529e07..f302f1a5d 100644 --- a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:18 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 468fb435-78ca-4159-9a01-d0c88140c925 + - be2178de-5162-44c4-998e-884e7cb7c6ff X-Total-Count: - "75" status: 200 OK code: 200 - duration: 137.478208ms + duration: 56.6927ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:18 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d879996-01bb-4990-a5a9-fe64bf072c71 + - 2aae1493-a345-4cdc-869a-847e9ca47e3e X-Total-Count: - "75" status: 200 OK code: 200 - duration: 59.943333ms + duration: 66.512611ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:19 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d448041c-01a2-4578-bafe-a97afea27a3f + - fdab8266-2b65-4ca6-9e43-f958082f8d3f status: 200 OK code: 200 - duration: 99.6365ms + duration: 45.148164ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_server","basic"]}' + body: '{"name":"tf-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_server","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:19 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df538509-f027-49ef-98b1-2563f7bc81a9 + - cf7390ff-1c8a-4057-adcb-ecad352fd913 status: 201 Created code: 201 - duration: 796.751166ms + duration: 726.688108ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e79ea8e7-a554-4af3-bd87-9819f710882e + - 09f1f71d-3cc1-435a-afc5-5d61ac9f4490 status: 200 OK code: 200 - duration: 129.673ms + duration: 97.614586ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e84453-883e-4cc6-84ff-e75cb48ea147 + - 5c7a5a02-83b7-460d-9468-332bbb6f3a10 status: 200 OK code: 200 - duration: 118.413292ms + duration: 104.069703ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3de3a01-a073-4ae5-8401-19792c6462fe + - 9e24d5e1-a03b-4644-a4de-3ebf256ff486 status: 200 OK code: 200 - duration: 138.19275ms + duration: 91.648333ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be50f9a2-fe13-4d1a-9ce0-b8bb4b53d616 + - ad7d9454-f47a-4795-92ad-73d4e50cfc97 status: 404 Not Found code: 404 - duration: 29.632833ms + duration: 26.833066ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -429,20 +429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa989c72-4966-47aa-a96f-2367dbf81903 + - f29e4156-e178-480c-83cc-71c87611d7c3 status: 200 OK code: 200 - duration: 49.059375ms + duration: 46.34978ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8afa9d7-0d6e-41c9-b62d-2b4676a766d9 + - b8c58789-2e08-4a5d-857f-52ab69f2bb91 status: 200 OK code: 200 - duration: 55.693333ms + duration: 51.935677ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23dc46d2-2cdc-410e-8b88-5c2c0588ce7f + - cdab0209-56cf-4aa3-acc1-fd7f3327af4a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.175291ms + duration: 60.229511ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33a63d32-2d98-436b-b06c-cc1255c55f55 + - e6f9a9e7-7de8-4297-9d27-8b6e9a7111ba status: 200 OK code: 200 - duration: 121.170875ms + duration: 88.229379ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1105bb6-655e-40b1-bebc-76ea9a64462f + - 9af9e6f2-13e0-4368-8fee-924ee7a0a376 status: 404 Not Found code: 404 - duration: 27.542917ms + duration: 28.968483ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b322d8b1-a9de-442a-9dbe-4f316eb4dbcc + - fafd28bf-2dc1-4e99-b75d-a119bca77bce status: 200 OK code: 200 - duration: 51.095708ms + duration: 37.605462ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:20 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eda61758-998d-4281-af40-fa6c15c968c5 + - 1582172d-6d56-4ba0-8757-37315566f094 status: 200 OK code: 200 - duration: 89.177209ms + duration: 67.803321ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47b81d2a-c918-41ab-af1a-d0057e762f1c + - 28eb16a5-fde4-4e9a-aa3f-0edc4bdb49ef X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.554709ms + duration: 58.619219ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe3ef96-bdda-4621-b8db-7826a69b4352 + - 25854809-563b-4e96-8fa2-7663d42571da status: 200 OK code: 200 - duration: 100.096959ms + duration: 101.740046ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82acc965-10f4-44c6-8349-0461af06a317 + - 270699d5-79af-4699-9fab-423814cb7bd1 status: 404 Not Found code: 404 - duration: 44.257166ms + duration: 29.451206ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd96d63f-7152-464e-8345-4e706b9aab59 + - 8eff716e-4531-4a32-a787-6d2c7cf436eb status: 200 OK code: 200 - duration: 48.5315ms + duration: 38.377412ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 347a2717-93b0-46f6-b531-9bf9524f741d + - 689f328f-61c7-42ba-b8c1-38d3f77b0388 status: 200 OK code: 200 - duration: 96.193917ms + duration: 54.109354ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 462ec473-81bf-45eb-a503-2c9262971fe6 + - 443054dc-756e-4897-bd7d-f0435529da19 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.6455ms + duration: 55.723864ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ee44957-766d-483c-bfb9-c497199d87f0 + - a8357a5e-060b-4145-acae-4ce4056de580 status: 200 OK code: 200 - duration: 108.413083ms + duration: 97.966045ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1775 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e270af5b-260e-4791-8918-a3699c716fe2 - status: 404 Not Found - code: 404 - duration: 28.656375ms + - c7b99d11-827a-42cd-9b8e-8c1e2e8d4aa8 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 123.813817ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1176,22 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1753 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - - "1753" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ca1688c-a8a2-41df-910f-581ea61c0a7b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 139.889584ms + - ca156942-5296-42b5-a490-eb205abec281 + status: 404 Not Found + code: 404 + duration: 27.161194ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 430c50f5-72b4-47e3-9b5b-3420bbdce659 + - edd26db2-8590-4c6a-87fd-537040045a32 status: 200 OK code: 200 - duration: 57.000291ms + duration: 39.504981ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -1289,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6306e86-a2ee-4f5d-952c-df9fe168e21a + - b7328691-a344-4d71-a52f-dc749f1b18d9 status: 200 OK code: 200 - duration: 69.787542ms + duration: 48.678424ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a70af0f6-c034-478e-bb62-6a838c492026 + - 0d33bd53-1d7a-4bca-96a9-c4e4c2b8e49f status: 200 OK code: 200 - duration: 139.105208ms + duration: 107.558626ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb90cf97-f201-4763-9244-05f90465708e + - 36bbb970-2ff4-4f3c-9eb2-de4744abc441 status: 404 Not Found code: 404 - duration: 39.170458ms + duration: 30.530806ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -1436,11 +1436,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,12 +1448,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0222df3-c925-4a8b-bef5-ab785fc46d39 + - 6dd03660-8d52-4085-ba8b-443e7d13bdef X-Total-Count: - "0" status: 200 OK code: 200 - duration: 76.0155ms + duration: 56.907287ms - id: 29 request: proto: HTTP/1.1 @@ -1469,8 +1469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07e3199e-4d65-476c-8e44-0835ea7b7096 + - 5ca0d2a2-caee-4047-af6f-0e2a29adaa3c status: 200 OK code: 200 - duration: 43.124083ms + duration: 39.558961ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -1538,9 +1538,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:21 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 741a410f-0a36-4aad-b29c-86bf310e75d6 + - 067cedb3-9a9d-4319-9e49-22ab145da6e3 status: 200 OK code: 200 - duration: 53.444584ms + duration: 69.599729ms - id: 31 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -1587,11 +1587,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,12 +1599,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d15c7468-f39d-4f60-a50e-13986f5cbdc9 + - 41686469-1c75-45f6-a2a9-2ce53f343ca3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 79.825916ms + duration: 52.199747ms - id: 32 request: proto: HTTP/1.1 @@ -1620,8 +1620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1629,20 +1629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1650,10 +1650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8b5eaf2-b970-4b48-8d81-65ae385cf8ed + - 9e6f7ebd-f99e-46a0-b43a-bca037e3d86f status: 200 OK code: 200 - duration: 198.217084ms + duration: 105.377935ms - id: 33 request: proto: HTTP/1.1 @@ -1669,8 +1669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1678,20 +1678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,10 +1699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b28e25a-d07e-4a3e-86a6-ad918d3a22df + - 9fb9d938-115f-4288-87d4-0c286460813b status: 200 OK code: 200 - duration: 135.202375ms + duration: 106.376574ms - id: 34 request: proto: HTTP/1.1 @@ -1718,8 +1718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1727,20 +1727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,10 +1748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c15f8a2-dbe3-47cf-a17b-411b78d873e0 + - 57c618db-f8a6-4f9c-a17c-13361f4d287f status: 200 OK code: 200 - duration: 271.518417ms + duration: 89.435282ms - id: 35 request: proto: HTTP/1.1 @@ -1767,7 +1767,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: @@ -1776,22 +1776,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1753 + content_length: 1775 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "1753" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,12 +1799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d672c72-6bbc-4dfd-8235-299204dbfc7f + - 829f2b52-efbd-40c4-b854-c96e0bbfed64 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 271.672166ms + duration: 106.098138ms - id: 36 request: proto: HTTP/1.1 @@ -1820,8 +1820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1831,7 +1831,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -1840,9 +1840,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83164ff3-c547-4c5c-9aee-c5283fdf752c + - 9fdf0f14-ff4c-44cb-85c7-283b311abb90 status: 404 Not Found code: 404 - duration: 44.591292ms + duration: 25.331846ms - id: 37 request: proto: HTTP/1.1 @@ -1869,8 +1869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -1878,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2306783-dad9-40dd-ae70-85913f5ca2f9 + - 7a1312ce-66a2-43da-a02e-4e7dce770ae1 status: 200 OK code: 200 - duration: 48.670666ms + duration: 43.302024ms - id: 38 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -1927,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca2191c5-1ad1-449c-b209-71a55a9409b5 + - 238d0254-0b90-4c22-9958-fa9071b28ae3 status: 200 OK code: 200 - duration: 121.7675ms + duration: 94.669138ms - id: 39 request: proto: HTTP/1.1 @@ -1967,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -1987,9 +1987,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f41e51ea-632d-4b6e-8f63-7834d08de4b3 + - c9e61b18-eeb1-4d1d-870b-b462d9f9db09 status: 200 OK code: 200 - duration: 48.303458ms + duration: 54.862128ms - id: 40 request: proto: HTTP/1.1 @@ -2016,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2027,7 +2027,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -2036,9 +2036,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:22 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4c10675-6af4-4873-8ec1-8d8e3871cf33 + - a2e6ef4d-81f9-4bf3-8852-7800ab87c239 status: 404 Not Found code: 404 - duration: 34.379291ms + duration: 37.66925ms - id: 41 request: proto: HTTP/1.1 @@ -2065,8 +2065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -2085,11 +2085,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,12 +2097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f45a0fc-e4e7-4de8-ba17-0f9025b4e295 + - acaafccb-893e-4d1f-85ad-645d1f26f088 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.142584ms + duration: 46.869643ms - id: 42 request: proto: HTTP/1.1 @@ -2118,8 +2118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2127,20 +2127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2148,10 +2148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f149770f-78ea-4689-ad9c-4fbf8cd869c6 + - 1af94c40-34f6-4184-a899-af8e015d8d73 status: 200 OK code: 200 - duration: 56.066542ms + duration: 45.013694ms - id: 43 request: proto: HTTP/1.1 @@ -2167,8 +2167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -2187,9 +2187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2197,10 +2197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1187fab-f132-4bc2-aa00-f684cb0f190b + - 19a11487-580b-4cef-894f-f14af4ec57a5 status: 200 OK code: 200 - duration: 61.111292ms + duration: 49.052887ms - id: 44 request: proto: HTTP/1.1 @@ -2216,8 +2216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -2236,11 +2236,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,12 +2248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df1e0dd2-6eb4-4fd6-9b87-ec95a8b98fd1 + - 5b806247-f73f-433c-9dd9-6173151e2374 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.53525ms + duration: 48.505734ms - id: 45 request: proto: HTTP/1.1 @@ -2269,8 +2269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -2278,20 +2278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2299,10 +2299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6e26684-f7bb-4ca3-aff7-178aea700d5b + - fa0c2b71-4a54-4c5a-a456-fd066216839f status: 200 OK code: 200 - duration: 110.098375ms + duration: 88.315268ms - id: 46 request: proto: HTTP/1.1 @@ -2318,8 +2318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2329,7 +2329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -2338,9 +2338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2348,10 +2348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b2fdf56-fd5c-40d9-b18e-100a772b981d + - 0a267c2f-8d7f-43f7-88e4-c4f65f18af0c status: 404 Not Found code: 404 - duration: 49.985042ms + duration: 29.096489ms - id: 47 request: proto: HTTP/1.1 @@ -2367,8 +2367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2376,20 +2376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2397,10 +2397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e02548a8-cc2f-40dc-aee8-f701411f09c4 + - 76f38271-825f-4585-bb2c-4a8e3866ec26 status: 200 OK code: 200 - duration: 53.359417ms + duration: 44.081928ms - id: 48 request: proto: HTTP/1.1 @@ -2416,8 +2416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -2436,9 +2436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2446,10 +2446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c93c5dc4-bdf2-4131-bb97-5661fd350c1f + - d1d408d3-0b62-4309-9012-2e69eedfce37 status: 200 OK code: 200 - duration: 68.994792ms + duration: 54.195233ms - id: 49 request: proto: HTTP/1.1 @@ -2465,8 +2465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -2485,11 +2485,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,12 +2497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1a0a1bf-be61-47c5-9b1b-177fd9601116 + - 0ff30a43-1c85-4bd5-8cdf-4494c27214ef X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.408667ms + duration: 59.386359ms - id: 50 request: proto: HTTP/1.1 @@ -2518,8 +2518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2527,20 +2527,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1775 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "1750" + - "1775" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2548,10 +2550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c27d366-e3b4-4c53-b368-e792c36d6f24 + - 6a1ae6eb-7e27-447a-a8dd-4c25795a378d + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 115.840333ms + duration: 116.688386ms - id: 51 request: proto: HTTP/1.1 @@ -2567,8 +2571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -2576,20 +2580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1772 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,10 +2601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8993d2cd-6c9b-4cc7-b1ba-b9bf60c9b792 - status: 404 Not Found - code: 404 - duration: 39.092917ms + - 2947d2d9-0ad3-4e4d-b1be-0a3a584a8eab + status: 200 OK + code: 200 + duration: 128.883517ms - id: 52 request: proto: HTTP/1.1 @@ -2616,8 +2620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2625,22 +2629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1753 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - - "1753" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,12 +2650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea59827b-2943-460b-a886-0b64f56232c2 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 155.587084ms + - 2eef02cd-6001-4154-8c7c-ad5b2dc54112 + status: 404 Not Found + code: 404 + duration: 21.992329ms - id: 53 request: proto: HTTP/1.1 @@ -2669,8 +2669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2678,20 +2678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "682" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2699,10 +2699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b79b958a-dbf4-4dc6-8d1f-10a79a5cef44 + - 522e2816-3508-4f9b-b1dd-7f67b9fd9c94 status: 200 OK code: 200 - duration: 41.786125ms + duration: 34.897285ms - id: 54 request: proto: HTTP/1.1 @@ -2718,8 +2718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -2727,20 +2727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1772 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2748,10 +2748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 535e1d74-b1d5-4c84-983d-e14ae471632e + - 4701d2d0-f417-475f-b5dd-e66ff0111836 status: 200 OK code: 200 - duration: 57.554791ms + duration: 98.088692ms - id: 55 request: proto: HTTP/1.1 @@ -2767,8 +2767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -2776,20 +2776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1750" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,10 +2797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 695e9b01-47ff-44dd-8fa2-ff27d191f789 + - 218d091b-268c-4147-9fa5-ab69109769df status: 200 OK code: 200 - duration: 112.524ms + duration: 59.274421ms - id: 56 request: proto: HTTP/1.1 @@ -2816,8 +2816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2827,7 +2827,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -2836,9 +2836,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,10 +2846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e4d1cff-2a5d-4988-853b-44aaed1eddd3 + - 32a9c7d9-c47f-440a-bd3a-f59608f92cf3 status: 404 Not Found code: 404 - duration: 28.449083ms + duration: 32.239772ms - id: 57 request: proto: HTTP/1.1 @@ -2865,8 +2865,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -2874,22 +2874,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2897,12 +2895,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ce3d3ae-1a42-48df-876c-a843ea4fd2a5 - X-Total-Count: - - "0" + - 1aec62a0-17d7-495f-9137-90ff5e53166c status: 200 OK code: 200 - duration: 52.187541ms + duration: 46.783933ms - id: 58 request: proto: HTTP/1.1 @@ -2918,8 +2914,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -2927,20 +2923,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:19.370431Z","id":"84cd14d1-982d-4ad2-96c0-19d7328cd780","product_resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:19.370431Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "682" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2948,10 +2946,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d032b840-c6d1-4ede-bb8c-751d5c9d8cce + - fde71926-b302-40b4-9ca1-104ca9bb6345 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 45.213625ms + duration: 56.835012ms - id: 59 request: proto: HTTP/1.1 @@ -2967,8 +2967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data method: GET response: proto: HTTP/2.0 @@ -2987,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2997,10 +2997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e33eb71-879b-438f-a56c-bf66cffe52ba + - 44f3cf74-0804-46ca-a3e7-37d570aa1c0a status: 200 OK code: 200 - duration: 62.374167ms + duration: 49.528759ms - id: 60 request: proto: HTTP/1.1 @@ -3016,8 +3016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics method: GET response: proto: HTTP/2.0 @@ -3036,11 +3036,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3048,12 +3048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbe9c542-a97d-4ab6-ab03-fe3c2893f84e + - 2ffb97de-925c-4f7e-814d-f6b0f531547e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.899709ms + duration: 56.345757ms - id: 61 request: proto: HTTP/1.1 @@ -3069,8 +3069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -3078,20 +3078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3099,10 +3099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e6d169e-73cb-445e-8b82-cd92653b31e4 + - fbff86eb-a5ce-4882-8863-83e389e1c16a status: 200 OK code: 200 - duration: 126.4375ms + duration: 130.652854ms - id: 62 request: proto: HTTP/1.1 @@ -3118,8 +3118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -3127,20 +3127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:19.261695+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:71","maintenances":[],"modification_date":"2025-09-08T07:23:19.261695+00:00","name":"tf-server","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' headers: Content-Length: - - "1750" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,11 +3148,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d657466-d14a-48ac-9c65-dabcc58295dc + - 2db8fe3e-9dba-48e0-98b2-8f5a7fbde2d5 status: 200 OK code: 200 - duration: 123.932958ms + duration: 39.388965ms - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action","href_result":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712","id":"2383e87d-6c8d-4f36-9f89-8fb0036353b8","progress":0,"started_at":"2025-10-08T23:05:01.207976+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2383e87d-6c8d-4f36-9f89-8fb0036353b8 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efd31f01-4f08-42c6-9257-a9f4499935cf + status: 202 Accepted + code: 202 + duration: 260.139348ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3167,27 +3220,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1794 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:00.990314+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1794" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a57c4e35-4569-4b95-96d4-e865c0868375 + status: 200 OK + code: 200 + duration: 106.09885ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1928 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"501","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:03.353595+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1928" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 187b4b7a-169a-4d24-b4a3-1ae0fd058354 + status: 200 OK + code: 200 + duration: 103.82754ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action","href_result":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712","id":"c927640e-071b-4307-97ca-1a9108854361","progress":0,"started_at":"2025-10-08T23:05:06.808157+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:06 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c927640e-071b-4307-97ca-1a9108854361 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 083240c7-8008-4e9e-a900-b92ec3fcaa73 + status: 202 Accepted + code: 202 + duration: 391.871972ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1891 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"501","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:06.463075+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3195,11 +3401,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c3f4d3d-4904-4f89-96cd-28f9401e373b - status: 204 No Content - code: 204 - duration: 180.967458ms - - id: 64 + - 2295fc97-da7c-481a-bdce-05115977f502 + status: 200 OK + code: 200 + duration: 132.734536ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3214,8 +3420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -3225,7 +3431,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' headers: Content-Length: - "143" @@ -3234,9 +3440,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3244,11 +3450,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cfb5df9-b06b-4068-81fc-6c10997b8451 + - b5f808e2-de06-4f73-bc3b-e321fcba3d0d status: 404 Not Found code: 404 - duration: 143.826583ms - - id: 65 + duration: 48.938472ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3263,8 +3469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -3274,7 +3480,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' headers: Content-Length: - "143" @@ -3283,9 +3489,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:24 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3293,11 +3499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28edd374-5ed1-4179-aa69-ebfce1b12e74 + - 477aeb5f-693a-4575-a112-e9fca36a0233 status: 404 Not Found code: 404 - duration: 29.895583ms - - id: 66 + duration: 33.047787ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3312,8 +3518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: GET response: proto: HTTP/2.0 @@ -3321,20 +3527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 480 + content_length: 494 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:19.370431Z","id":"d6a0ea53-3f4a-4685-9d0a-edc6fa249a31","last_detached_at":"2025-09-08T07:23:24.839898Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:24.839898Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":"2025-10-08T23:05:08.043358Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.043358Z","zone":"fr-par-1"}' headers: Content-Length: - - "480" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:25 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3342,11 +3548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47b35297-7540-49bd-bd5e-9e08c1eb9b84 + - 5b30b646-51fd-49aa-86cf-01b1fc65206e status: 200 OK code: 200 - duration: 58.520375ms - - id: 67 + duration: 44.54827ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3361,8 +3567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6a0ea53-3f4a-4685-9d0a-edc6fa249a31 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae method: DELETE response: proto: HTTP/2.0 @@ -3379,9 +3585,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:25 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3389,11 +3595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7b038f2-a86d-4f19-a866-ed1f162ae36d + - 17e1f2e0-3cae-48a0-9e45-2463d1de07a1 status: 204 No Content code: 204 - duration: 94.12625ms - - id: 68 + duration: 73.532409ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3408,8 +3614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -3419,7 +3625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' headers: Content-Length: - "143" @@ -3428,9 +3634,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:25 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3438,11 +3644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad45e074-6b9d-498b-9f10-dfc5ed494909 + - 4044ac01-1e70-4a27-a35a-4a929dde9103 status: 404 Not Found code: 404 - duration: 72.641459ms - - id: 69 + duration: 63.817684ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3457,8 +3663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -3468,7 +3674,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' headers: Content-Length: - "143" @@ -3477,9 +3683,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:25 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3487,11 +3693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d8e17fa-550a-468c-9f67-cc2289c8030e + - 94a142e4-03c7-4a38-a924-55b6dcfd4730 status: 404 Not Found code: 404 - duration: 97.611917ms - - id: 70 + duration: 51.111226ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3506,8 +3712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1e50ba52-2f41-4ced-8a1d-4f7df109f3f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 method: GET response: proto: HTTP/2.0 @@ -3517,7 +3723,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1e50ba52-2f41-4ced-8a1d-4f7df109f3f3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' headers: Content-Length: - "143" @@ -3526,9 +3732,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:25 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3536,7 +3742,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 760846ae-4096-4b97-a82c-28c544a73b37 + - 2cec9b8a-0747-48d7-b4b5-810dcca0dea2 status: 404 Not Found code: 404 - duration: 77.563834ms + duration: 51.99293ms diff --git a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml index e62983b6b..a31b8d46d 100644 --- a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 213a36a2-c55b-4740-a504-3bfdcfc6034f + - c754d7d3-cef3-4812-85f8-9c64ef1f915c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 279.804583ms + duration: 54.687633ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c716e7d9-deb4-437d-ae64-e84338ebfdfc + - c76e3834-8d16-4296-bac2-d467d8341f8d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 65.058166ms + duration: 53.921313ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - "1260" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eb416cd-1b69-4ea2-a10d-a882eb34b49c + - 8d371eb1-b0ec-4a3f-b3e8-899c2b35aa2e status: 200 OK code: 200 - duration: 86.691208ms + duration: 61.448989ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba22d817-fe89-41fd-b55f-a69d5d2e46e4 + - 1470fb6b-40df-4fc6-b0c7-80cd0759324c status: 201 Created code: 201 - duration: 732.797625ms + duration: 724.461263ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13edcfc1-a470-4045-837c-b4b128b52139 + - 2ee454b3-78c8-415f-80fa-b48fd3f0d9bf status: 200 OK code: 200 - duration: 124.67925ms + duration: 105.973184ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a716cce-6c4d-41f9-8839-d0407f3be70a + - 0f4d3dfa-7dda-48a6-bc7f-be4b2e0c49d7 status: 200 OK code: 200 - duration: 143.530334ms + duration: 101.642881ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc483c12-baa6-4705-9aa9-2e309907e2b4 + - 640a625a-e6c3-44a6-96af-06751d9d1269 status: 200 OK code: 200 - duration: 132.660542ms + duration: 88.690545ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5586de33-fa49-4c55-948a-36c1a1b7fa1d + - b2f7a0bd-16f8-47e5-a968-3cc3b1fda520 status: 404 Not Found code: 404 - duration: 39.290917ms + duration: 30.038258ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3e53896-789e-457f-81ca-c4dea234f698 + - ba621e4b-a062-4e91-a288-508879b46e28 status: 200 OK code: 200 - duration: 61.89625ms + duration: 36.007797ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87061723-e79d-426c-b96b-8d53a242a30f + - 97aac4c5-5e31-40db-8b6e-13916d3bccff status: 200 OK code: 200 - duration: 64.571ms + duration: 54.69683ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f39fbc-af79-4041-8243-704e0fc3aaa0 + - 5119cdda-d42b-4534-92ab-71cce470b384 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 102.27725ms + duration: 59.699488ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58e7f793-697b-4fd8-ac74-a88cbe5d382a + - be7ded3a-43bb-4e4b-a131-742ac8770174 status: 200 OK code: 200 - duration: 137.186167ms + duration: 98.748409ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - "143" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee5271c8-af40-4baa-a5e6-e951c464b1b4 + - b9a3fcb1-e804-498e-bbb4-ac2c3f700b94 status: 404 Not Found code: 404 - duration: 36.922833ms + duration: 31.596736ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dc68c74-3ab3-4bb4-b838-42326e552a33 + - 1f70fc37-7bf1-4448-8e43-afa5a56e557a status: 200 OK code: 200 - duration: 50.050291ms + duration: 56.037754ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3b33117-e284-4526-8376-d9911deff525 + - f3e97735-edb7-4aee-9241-3dab5f32f64f status: 200 OK code: 200 - duration: 62.146375ms + duration: 47.457709ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c693e9f-28b8-4214-bd06-da738565a14e + - fa1340bc-7427-42ea-a799-388e7fafe41f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.930459ms + duration: 64.890454ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5c13272-37a8-4929-bb01-bb945034416f + - e887aa5d-500b-42be-973c-dc8a48bb07d7 status: 200 OK code: 200 - duration: 128.769541ms + duration: 100.844932ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee4c9108-e6ce-4106-88e0-f90ed87c6251 + - 184db4f4-8c54-4d05-8b65-ed711b6c231b status: 404 Not Found code: 404 - duration: 32.660166ms + duration: 24.300669ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c52ad7c-a19d-45cf-a0b7-af2faa591caa + - 63e47a4c-0e10-41b4-a4a7-c2e487c2f461 status: 200 OK code: 200 - duration: 50.429666ms + duration: 38.794961ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9f28ff7-674c-4176-8c98-de0ce3d016f4 + - 4fb803ad-f908-4ab2-8951-932d141ff5d2 status: 200 OK code: 200 - duration: 63.400375ms + duration: 47.723601ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca54c44-4d50-44f4-9f37-f0380a0deac0 + - 64873f88-ad7f-4c21-a364-1386ad33212f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 72.492333ms + duration: 58.139187ms - id: 21 request: proto: HTTP/1.1 @@ -1069,7 +1069,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1089,11 +1089,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,12 +1101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a351df4-d60f-4576-9e47-5f755576eb5a + - ccbe8ac0-9068-4c0d-9ce0-477a371a8393 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 51.289333ms + duration: 40.612959ms - id: 22 request: proto: HTTP/1.1 @@ -1122,7 +1122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1142,11 +1142,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1154,12 +1154,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eed1b3e-9647-46d5-a901-024388af4e4f + - 650ee53b-feba-4c54-8aef-997f33e73c42 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 57.791167ms + duration: 48.728072ms - id: 23 request: proto: HTTP/1.1 @@ -1175,7 +1175,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -1186,7 +1186,7 @@ interactions: trailer: {} content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - "1260" @@ -1195,9 +1195,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1205,10 +1205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ef6c0d-1317-4b24-8c7a-dfc76156a496 + - 212e7959-457e-4ad7-b23e-3bbab8e6875a status: 200 OK code: 200 - duration: 71.663625ms + duration: 51.547746ms - id: 24 request: proto: HTTP/1.1 @@ -1220,13 +1220,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1235,22 +1235,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:57 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1258,10 +1258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 859dcd97-7724-4586-8c5e-d585d831d70f + - 589cbaf6-a683-4f65-90c8-481c68af1aa6 status: 201 Created code: 201 - duration: 637.94425ms + duration: 822.362794ms - id: 25 request: proto: HTTP/1.1 @@ -1277,8 +1277,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -1286,20 +1286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:57 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1307,10 +1307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d2b49c6-9ea5-43bc-b956-23bcf847caa2 + - 464ee411-4845-4d8d-bd96-f4087052d9da status: 200 OK code: 200 - duration: 119.486541ms + duration: 84.216727ms - id: 26 request: proto: HTTP/1.1 @@ -1326,8 +1326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -1335,20 +1335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3457571c-f589-488b-9399-020d4ac4957b + - 05ceac9e-4098-4fdb-8359-256686d8e92f status: 200 OK code: 200 - duration: 106.205292ms + duration: 102.081092ms - id: 27 request: proto: HTTP/1.1 @@ -1375,8 +1375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -1384,20 +1384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69357bd1-93bb-46fb-8fb9-8ffff7083bbd + - 83010200-24f4-470c-891e-1e57ef8215db status: 200 OK code: 200 - duration: 124.285417ms + duration: 88.663384ms - id: 28 request: proto: HTTP/1.1 @@ -1424,8 +1424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -1435,7 +1435,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' headers: Content-Length: - "143" @@ -1444,9 +1444,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1e7209e-05df-4e21-a211-bbe808318d13 + - 22b070ea-b444-4435-a89e-2e5008d82110 status: 404 Not Found code: 404 - duration: 33.313084ms + duration: 29.479373ms - id: 29 request: proto: HTTP/1.1 @@ -1473,8 +1473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -1484,7 +1484,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1493,9 +1493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51c4779c-f753-4643-959d-24fb20fb6f0f + - 389a73e3-182d-4c9d-83e0-1f1f56e32da1 status: 200 OK code: 200 - duration: 55.016083ms + duration: 52.976262ms - id: 30 request: proto: HTTP/1.1 @@ -1522,8 +1522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data method: GET response: proto: HTTP/2.0 @@ -1542,9 +1542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,10 +1552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a795eab4-1821-4875-89d0-f2b920138e1a + - a7bb6c6d-b24e-4856-bd7e-5bc4f2d85726 status: 200 OK code: 200 - duration: 54.752875ms + duration: 61.126191ms - id: 31 request: proto: HTTP/1.1 @@ -1571,8 +1571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -1591,11 +1591,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,12 +1603,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf475156-d74b-40ee-9fdb-09fb5a17d4d0 + - f10b100f-eedc-4e00-aa7f-71566cd4cdf0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.108167ms + duration: 64.838688ms - id: 32 request: proto: HTTP/1.1 @@ -1624,8 +1624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -1633,20 +1633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1654,10 +1654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f9984a5-282e-4262-85ea-9e2b63f0650a + - e558a14d-49d1-4eba-b636-bd1538fb3392 status: 200 OK code: 200 - duration: 136.329416ms + duration: 98.87439ms - id: 33 request: proto: HTTP/1.1 @@ -1673,8 +1673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -1682,20 +1682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1703,10 +1703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d9b3132-db78-468a-a297-4f71c08c38b4 + - afc6bf61-292a-48e4-be89-c701d33eaea3 status: 200 OK code: 200 - duration: 152.167792ms + duration: 121.516757ms - id: 34 request: proto: HTTP/1.1 @@ -1722,8 +1722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -1733,7 +1733,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - "143" @@ -1742,9 +1742,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1752,10 +1752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b38adc80-872c-4d5a-a036-34fc782e487a + - e654e905-f534-4eab-8bbe-2b8dd6a38b68 status: 404 Not Found code: 404 - duration: 25.799417ms + duration: 24.526166ms - id: 35 request: proto: HTTP/1.1 @@ -1771,8 +1771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -1782,7 +1782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' headers: Content-Length: - "143" @@ -1791,9 +1791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,10 +1801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dd3fc7d-b059-4496-ac58-9c178a49991c + - d81fb66a-f04f-4b4b-9714-372984782cb3 status: 404 Not Found code: 404 - duration: 32.510792ms + duration: 26.222158ms - id: 36 request: proto: HTTP/1.1 @@ -1820,8 +1820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -1831,7 +1831,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1840,9 +1840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dad4e923-297a-4971-9528-13b889a129da + - 858b5730-dffa-4455-a90c-21732afa2559 status: 200 OK code: 200 - duration: 52.754334ms + duration: 32.455505ms - id: 37 request: proto: HTTP/1.1 @@ -1869,8 +1869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -1880,7 +1880,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1889,9 +1889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36edea2b-d30f-4831-9a14-cc6e4bbe8e43 + - 5c2ee84a-bacc-47e4-8be7-a0ff747723e4 status: 200 OK code: 200 - duration: 44.529291ms + duration: 38.761047ms - id: 38 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -1938,9 +1938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a635bb7-77a5-45fd-9a61-43ba29058882 + - e5a0e65b-f2eb-430f-bf50-b08af672173e status: 200 OK code: 200 - duration: 67.684041ms + duration: 52.08996ms - id: 39 request: proto: HTTP/1.1 @@ -1967,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data method: GET response: proto: HTTP/2.0 @@ -1987,9 +1987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ec20249-1d9f-437d-a41e-222712dd4ff5 + - 07f69583-a1db-41f4-b701-4890855bfafc status: 200 OK code: 200 - duration: 59.634167ms + duration: 50.889456ms - id: 40 request: proto: HTTP/1.1 @@ -2016,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -2036,11 +2036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,12 +2048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfa80a02-5659-4e69-aac4-bff2ac10ee15 + - a8aa7a51-5eaa-45af-b979-fe1ef7793557 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.49525ms + duration: 49.275877ms - id: 41 request: proto: HTTP/1.1 @@ -2069,8 +2069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -2089,11 +2089,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,12 +2101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3079cedc-48c2-4fda-a924-3f7967a9e7fc + - 3e7b52ee-310d-42a3-b49e-90824bd571c3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.966542ms + duration: 58.861795ms - id: 42 request: proto: HTTP/1.1 @@ -2122,8 +2122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -2131,22 +2131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1797 uncompressed: false - body: '{"servers":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "15" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2154,12 +2152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9da544-62e7-4edb-88ed-02322b4fd2ae - X-Total-Count: - - "0" + - 9b1aa839-d6aa-49d6-817f-ecb54447a36d status: 200 OK code: 200 - duration: 106.965958ms + duration: 71.682296ms - id: 43 request: proto: HTTP/1.1 @@ -2175,8 +2171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -2184,20 +2180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2205,10 +2201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c381b0c2-2d2c-47f8-b7e3-4479a82cec5f + - 27bec14a-23d7-4885-8a75-86f81408806e status: 200 OK code: 200 - duration: 134.036375ms + duration: 86.806373ms - id: 44 request: proto: HTTP/1.1 @@ -2224,8 +2220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2233,22 +2229,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 15 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[]}' headers: Content-Length: - - "3543" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2256,12 +2252,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3392ffc8-8400-4327-8d83-f19ac37a7765 + - 04dc98ba-5efb-4782-898b-b650f80ca4b1 X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 138.576833ms + duration: 93.019714ms - id: 45 request: proto: HTTP/1.1 @@ -2277,8 +2273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -2286,20 +2282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' headers: Content-Length: - - "1775" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2307,10 +2303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f73ebe-a4fa-4dcd-a51f-3f7d6bda071a - status: 200 OK - code: 200 - duration: 137.353875ms + - 92559f70-9499-4668-9a4d-5b571697a33a + status: 404 Not Found + code: 404 + duration: 29.931551ms - id: 46 request: proto: HTTP/1.1 @@ -2326,8 +2322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -2335,22 +2331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - - "3543" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2358,12 +2352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e1154c8-5f9b-4ecd-ae97-fdfacb01ace0 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 147.606875ms + - f0d780d9-9917-4ef6-beff-39d5714f86bf + status: 404 Not Found + code: 404 + duration: 33.298498ms - id: 47 request: proto: HTTP/1.1 @@ -2379,8 +2371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -2388,20 +2380,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3587 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2409,10 +2403,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c794e0-938e-4ad2-a5f5-c09b8cb2bf20 - status: 404 Not Found - code: 404 - duration: 33.464084ms + - f88e7fda-6b3c-4a33-8ff7-c894ab6bbcf0 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 126.379817ms - id: 48 request: proto: HTTP/1.1 @@ -2428,8 +2424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2437,20 +2433,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3587 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2458,10 +2456,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f3c833d-8dfe-4807-8f5b-22ec50e4168f - status: 404 Not Found - code: 404 - duration: 38.704416ms + - 4102ae8c-fbc1-469c-9342-118b275e2128 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 134.781221ms - id: 49 request: proto: HTTP/1.1 @@ -2477,8 +2477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -2486,22 +2486,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2509,12 +2507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2504f44-0ca6-432b-8032-4a4748c69c13 - X-Total-Count: - - "0" + - b0f64d32-0cea-4947-bb67-b25dfa3572aa status: 200 OK code: 200 - duration: 59.697958ms + duration: 45.128844ms - id: 50 request: proto: HTTP/1.1 @@ -2530,8 +2526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -2539,22 +2535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2562,12 +2556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5671ea16-d333-4376-88f3-3e56dc1c1a79 - X-Total-Count: - - "0" + - ef901471-3be0-467f-bf1e-4838e3e709bf status: 200 OK code: 200 - duration: 53.760833ms + duration: 38.495244ms - id: 51 request: proto: HTTP/1.1 @@ -2583,8 +2575,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -2592,20 +2584,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2613,10 +2607,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7f92cb-925a-4ff2-9f02-7f3355ae4434 + - d88c3b12-ae8f-4125-95a8-9e63f1dfcffb + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 42.846792ms + duration: 49.748932ms - id: 52 request: proto: HTTP/1.1 @@ -2632,8 +2628,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data method: GET response: proto: HTTP/2.0 @@ -2641,20 +2637,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "701" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2662,10 +2658,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7a1f66f-3ab4-4e55-8f1a-d58f03b1508d + - 20e92911-1261-4437-a629-dae361373785 status: 200 OK code: 200 - duration: 44.784166ms + duration: 48.778866ms - id: 53 request: proto: HTTP/1.1 @@ -2681,8 +2677,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -2701,11 +2697,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2713,12 +2709,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a29b75e-0bbb-4f8c-a895-6351b60c7868 + - 75a2ee32-226d-4441-bc77-7d5a141a27ce X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.370083ms + duration: 74.643462ms - id: 54 request: proto: HTTP/1.1 @@ -2734,8 +2730,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -2743,22 +2739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2766,12 +2760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b3be139-14a1-4b5e-bbd3-04ebb0473417 - X-Total-Count: - - "0" + - f823e621-abdf-40be-b5a5-50026ce54d2a status: 200 OK code: 200 - duration: 61.412917ms + duration: 56.415223ms - id: 55 request: proto: HTTP/1.1 @@ -2787,8 +2779,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -2796,20 +2788,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2817,10 +2811,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8b0d14a-a6a4-4d57-80e3-534d956250c5 + - 9a33e63e-0a6c-4032-a7b7-8bde1252e3c2 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 54.355125ms + duration: 45.002991ms - id: 56 request: proto: HTTP/1.1 @@ -2836,8 +2832,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -2845,20 +2841,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2866,10 +2864,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1d13c52-2a43-4a47-8b96-0f950f7c190f + - 95529e58-5be2-4844-a0ba-3e1faa81b967 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 54.849083ms + duration: 56.348279ms - id: 57 request: proto: HTTP/1.1 @@ -2885,8 +2885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -2905,11 +2905,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2917,12 +2917,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b908f551-fc03-43e6-9483-30c6cfe6c77a + - e94c42e5-a408-4fbe-a18e-d14fd203d552 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.359667ms + duration: 53.746088ms - id: 58 request: proto: HTTP/1.1 @@ -2938,8 +2938,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -2958,11 +2958,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2970,12 +2970,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00b674d5-785b-453c-96e9-64eb1017dfc5 + - be2a8a05-e1d9-4893-8b3f-72a404d31591 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 69.022875ms + duration: 59.775268ms - id: 59 request: proto: HTTP/1.1 @@ -2991,7 +2991,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: @@ -3011,11 +3011,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3023,12 +3023,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0be5ae48-5b17-4b64-8d2e-ac7374057b5e + - 6cb74498-2f18-44d2-bae9-1c3a8e473053 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 84.948541ms + duration: 112.630054ms - id: 60 request: proto: HTTP/1.1 @@ -3044,8 +3044,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3053,22 +3053,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 3587 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "3543" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3076,12 +3076,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db7c9a95-cce3-4710-81c5-f3aa3c911c68 + - fa6f854e-8e4d-4ee1-a9c6-21faea4b3e97 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 142.867ms + duration: 121.950861ms - id: 61 request: proto: HTTP/1.1 @@ -3097,8 +3097,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3106,22 +3106,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 3587 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "3543" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3129,12 +3129,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 022189d3-6c79-46a7-ab1e-80850d4ecbce + - cec51e8b-6ff6-42b9-850c-c675603cbefc X-Total-Count: - "2" status: 200 OK code: 200 - duration: 143.567417ms + duration: 142.562565ms - id: 62 request: proto: HTTP/1.1 @@ -3150,8 +3150,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -3170,11 +3170,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3182,12 +3182,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3b035b6-ece6-48d0-b044-afd012399938 + - e47d4c18-8c98-4eb2-bb8c-b09d8cb3626e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.641708ms + duration: 46.002392ms - id: 63 request: proto: HTTP/1.1 @@ -3203,8 +3203,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -3223,11 +3223,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3235,12 +3235,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f85eec84-4ac8-43a2-873d-4c47e3812a8f + - ad25cf8c-2619-4b13-a2c4-f8f8ae378994 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 68.535709ms + duration: 45.023699ms - id: 64 request: proto: HTTP/1.1 @@ -3256,8 +3256,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -3276,11 +3276,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3288,12 +3288,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e6eaa6c-2299-4a3d-8f0d-f3160f29dc85 + - 06678164-b91e-4eb4-b573-e1a286793adb X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.960833ms + duration: 61.890045ms - id: 65 request: proto: HTTP/1.1 @@ -3309,8 +3309,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -3329,11 +3329,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:52:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3341,12 +3341,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5905c4d6-a8e4-42a5-9002-7c109151ab53 + - 4d064ab1-b167-4946-9e93-d3c0ddcbc8ef X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.3925ms + duration: 51.065652ms - id: 66 request: proto: HTTP/1.1 @@ -3362,8 +3362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -3371,22 +3371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1797 uncompressed: false - body: '{"servers":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "15" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3394,12 +3392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c1ee474-4559-4731-b68c-3592388fc41c - X-Total-Count: - - "0" + - c0383cd9-3baa-4d25-a4eb-0aa8abae66c6 status: 200 OK code: 200 - duration: 107.06575ms + duration: 92.263583ms - id: 67 request: proto: HTTP/1.1 @@ -3415,8 +3411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3424,22 +3420,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 15 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[]}' headers: Content-Length: - - "3543" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3447,12 +3443,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 726e8ed1-1ccd-4753-bf6f-bbace2976c90 + - 88276aa5-a35b-44bb-b00c-c6663acc62fe X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 154.605125ms + duration: 93.741191ms - id: 68 request: proto: HTTP/1.1 @@ -3468,8 +3464,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -3477,22 +3473,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 1797 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3543" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3500,12 +3494,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42d1501f-382e-4c3e-a35e-f2726026cb3d - X-Total-Count: - - "2" + - 9abc45cb-e3e6-4fde-b03a-12eaac91f3c8 status: 200 OK code: 200 - duration: 169.405334ms + duration: 95.203821ms - id: 69 request: proto: HTTP/1.1 @@ -3521,8 +3513,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3530,22 +3522,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 3587 uncompressed: false - body: '{"private_nics":[]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "20" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3553,12 +3545,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57f893dd-ed9e-4709-aaf7-d6ac4b7816ea + - 130353df-1fc0-495c-b716-340b743b4b75 X-Total-Count: - - "0" + - "2" status: 200 OK code: 200 - duration: 63.287167ms + duration: 129.166228ms - id: 70 request: proto: HTTP/1.1 @@ -3574,8 +3566,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -3583,22 +3575,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3606,12 +3596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b89cc29c-3bd1-4078-b86e-87f80d675476 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 85.847292ms + - 02fcd3ab-3f87-48d1-ab32-4b517ae34f83 + status: 404 Not Found + code: 404 + duration: 34.424874ms - id: 71 request: proto: HTTP/1.1 @@ -3627,8 +3615,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3636,22 +3624,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 3587 uncompressed: false - body: '{"private_nics":[]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "20" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3659,12 +3647,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90653dd8-ca3a-456f-bfdf-61393554c992 + - 9f05bbcd-88c1-42bb-8ce4-923be1c22023 X-Total-Count: - - "0" + - "2" status: 200 OK code: 200 - duration: 58.846125ms + duration: 132.021367ms - id: 72 request: proto: HTTP/1.1 @@ -3680,8 +3668,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -3689,22 +3677,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3712,12 +3698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd08c1f6-47f8-4f74-87ab-bf9e36fb00b1 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 99.531ms + - 73225d2b-06b2-4421-935f-a31a9d7ad9e7 + status: 404 Not Found + code: 404 + duration: 43.229475ms - id: 73 request: proto: HTTP/1.1 @@ -3733,8 +3717,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -3742,22 +3726,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 701 uncompressed: false - body: '{"servers":[]}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - - "15" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3765,12 +3747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44b26742-6844-4d88-8657-764604626109 - X-Total-Count: - - "0" + - 41c79f70-f4a8-4038-8b75-ac26b70e42be status: 200 OK code: 200 - duration: 78.712125ms + duration: 41.059576ms - id: 74 request: proto: HTTP/1.1 @@ -3786,8 +3766,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -3795,20 +3775,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' headers: Content-Length: - - "1775" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3816,10 +3796,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13ed991d-e7bd-4908-9b2d-83a3ee033987 + - cbe89413-5a8a-4737-bdf0-a7ee76dd978d status: 200 OK code: 200 - duration: 128.604042ms + duration: 37.400938ms - id: 75 request: proto: HTTP/1.1 @@ -3835,8 +3815,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -3844,22 +3824,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 20 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "3543" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3867,12 +3847,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5285051-14e3-4f65-83e4-96225fcd8866 + - 6a98543b-4b7e-47f5-8271-ca59932760e2 X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 158.364125ms + duration: 53.68824ms - id: 76 request: proto: HTTP/1.1 @@ -3888,8 +3868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -3897,20 +3877,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3918,10 +3900,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3182dbb0-391f-4fc0-8024-10ff60e806f6 - status: 404 Not Found - code: 404 - duration: 29.105917ms + - ceae605e-9bab-4c2f-95a8-3aee1ddaa774 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 51.233383ms - id: 77 request: proto: HTTP/1.1 @@ -3937,8 +3921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data method: GET response: proto: HTTP/2.0 @@ -3946,22 +3930,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 17 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "3543" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3969,12 +3951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cf28560-f1a6-43ec-b6ed-4253a76f0e42 - X-Total-Count: - - "2" + - b7cebf7b-992c-4584-a827-5cc175dcf9ac status: 200 OK code: 200 - duration: 167.822292ms + duration: 52.162513ms - id: 78 request: proto: HTTP/1.1 @@ -3990,8 +3970,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data method: GET response: proto: HTTP/2.0 @@ -3999,20 +3979,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1775" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4020,10 +4000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2d056da-efa4-4022-986b-263455a3dc54 + - a81f5d7c-052f-43bf-8848-e2dfe06b9424 status: 200 OK code: 200 - duration: 196.325875ms + duration: 56.952086ms - id: 79 request: proto: HTTP/1.1 @@ -4039,8 +4019,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -4048,20 +4028,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:54.546957Z","id":"5cb0b908-6bd4-415b-a4b2-d2571fba1ee2","product_resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:54.546957Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4069,10 +4051,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e1acb1f-210e-4876-9c94-073afa238fe8 + - ea6904ad-d3a5-45a1-a07e-9ef14947a4c1 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 42.775084ms + duration: 76.03541ms - id: 80 request: proto: HTTP/1.1 @@ -4088,8 +4072,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -4097,20 +4081,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4118,10 +4104,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6582856-84c2-4018-ad3d-2ca5602bf3af - status: 404 Not Found - code: 404 - duration: 25.326625ms + - 5d7170c5-2d4a-4117-bb0d-4afdb284da1c + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 76.22993ms - id: 81 request: proto: HTTP/1.1 @@ -4137,8 +4125,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics method: GET response: proto: HTTP/2.0 @@ -4157,11 +4145,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4169,12 +4157,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21ad3fb-80ee-48e4-a0f8-d026457ebf31 + - f6de428c-bcd1-4945-a0cc-31a0f1795b79 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 66.892625ms + duration: 52.839789ms - id: 82 request: proto: HTTP/1.1 @@ -4190,8 +4178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics method: GET response: proto: HTTP/2.0 @@ -4210,11 +4198,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4222,12 +4210,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac3d8724-a375-40e2-91d8-4881fe98ec77 + - f55df4e0-aadb-4757-9960-7fdd238db71b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 66.179583ms + duration: 58.040834ms - id: 83 request: proto: HTTP/1.1 @@ -4243,8 +4231,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -4252,20 +4240,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1797 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4273,10 +4261,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e32aadd2-99a4-4663-950d-defd983a182d + - a70dc480-2d1e-4485-8f6c-bdce2e8b6d2b status: 200 OK code: 200 - duration: 58.472334ms + duration: 104.047334ms - id: 84 request: proto: HTTP/1.1 @@ -4292,8 +4280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -4301,20 +4289,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1797 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:52:57.445229Z","id":"4b7ceb96-809f-4a44-91dd-dfccfa74cf06","product_resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:52:57.445229Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4322,10 +4310,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fe10f01-8e10-4a45-a37e-8b4afaa303df + - 805332ab-6482-4647-a842-2ac091a6c784 status: 200 OK code: 200 - duration: 55.313375ms + duration: 106.115986ms - id: 85 request: proto: HTTP/1.1 @@ -4341,8 +4329,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -4350,22 +4338,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,12 +4359,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a485d7e7-9209-49ee-8748-e532546cbd15 - X-Total-Count: - - "0" + - f47434cc-2818-441c-9a6b-bf6bc38bab8d status: 200 OK code: 200 - duration: 61.614542ms + duration: 45.311903ms - id: 86 request: proto: HTTP/1.1 @@ -4394,8 +4378,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -4403,22 +4387,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4426,52 +4408,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e0e27c6-4925-4223-8820-8a7b7e7f2438 - X-Total-Count: - - "0" + - a924d8df-a973-4842-bc12-121d5b56a1c5 status: 200 OK code: 200 - duration: 72.212375ms + duration: 46.345357ms - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 357 uncompressed: false - body: '{"private_nics":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action","href_result":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d","id":"db7b59ee-f8d0-4411-97e9-a6321ab36cc7","progress":0,"started_at":"2025-10-08T23:04:33.237453+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/db7b59ee-f8d0-4411-97e9-a6321ab36cc7 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4479,50 +4461,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfa48cf5-08d5-4c22-95fb-4582d6dae1ae - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 58.69675ms + - 6c2d6742-abb3-498a-8f13-8c5809d3fa89 + status: 202 Accepted + code: 202 + duration: 191.734057ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/user_data - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 357 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action","href_result":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db","id":"abed8912-121a-4c67-866d-9f485d412e6b","progress":0,"started_at":"2025-10-08T23:04:33.271494+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT + - Wed, 08 Oct 2025 23:04:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/abed8912-121a-4c67-866d-9f485d412e6b Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4530,10 +4514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7ac82b0-fed1-4b2d-8bf2-0c14ba2bafff - status: 200 OK - code: 200 - duration: 64.151125ms + - 474bb32f-aa1b-444d-83d4-a2b2b10ae9af + status: 202 Accepted + code: 202 + duration: 212.48518ms - id: 89 request: proto: HTTP/1.1 @@ -4549,8 +4533,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -4558,22 +4542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1819 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:33.100506+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1819" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:00 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4581,12 +4563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c499769-cb1d-4e87-98ba-2d93b3f7dfa5 - X-Total-Count: - - "0" + - a6139b5a-176a-45dd-98e2-18ae10da271c status: 200 OK code: 200 - duration: 61.221875ms + duration: 108.771224ms - id: 90 request: proto: HTTP/1.1 @@ -4602,8 +4582,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -4611,22 +4591,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1819 uncompressed: false - body: '{"servers":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:33.107921+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "15" + - "1819" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4634,12 +4612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 587605e1-68bd-431d-b09d-c20efdb60446 - X-Total-Count: - - "0" + - f694c793-65a5-4351-831c-f6a58be41e99 status: 200 OK code: 200 - duration: 106.837917ms + duration: 121.96669ms - id: 91 request: proto: HTTP/1.1 @@ -4655,8 +4631,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -4664,22 +4640,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 1952 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"104","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:36.702071+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3543" + - "1952" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4687,12 +4661,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d41652c6-0f6a-4091-a13a-3dae3fe83318 - X-Total-Count: - - "2" + - be834ea4-f612-49fe-a9cd-0526e3e57344 status: 200 OK code: 200 - duration: 137.065333ms + duration: 106.111334ms - id: 92 request: proto: HTTP/1.1 @@ -4708,8 +4680,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -4717,22 +4689,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3543 + content_length: 1953 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"203","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:35.773014+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "3543" + - "1953" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4740,52 +4710,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a33eaa7b-190a-401c-8a62-a1a3ead3efe4 - X-Total-Count: - - "2" + - 2827c238-1b95-4da4-a3ea-6202be573243 status: 200 OK code: 200 - duration: 185.158334ms + duration: 98.804287ms - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 353 uncompressed: false - body: '{"private_nics":[]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action","href_result":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d","id":"0658fb03-e189-411e-8d0c-082ef9d8bb32","progress":0,"started_at":"2025-10-08T23:04:38.667306+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0658fb03-e189-411e-8d0c-082ef9d8bb32 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4793,52 +4763,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64c54719-7943-4d1e-aae0-dea434139eb7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 76.625334ms + - 063d3a3c-272a-4fd2-8688-b04cac471993 + status: 202 Accepted + code: 202 + duration: 205.589289ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 353 uncompressed: false - body: '{"private_nics":[]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action","href_result":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db","id":"29f5a8ee-26b6-4b60-8b22-d6112064855b","progress":0,"started_at":"2025-10-08T23:04:38.684232+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/29f5a8ee-26b6-4b60-8b22-d6112064855b Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4846,12 +4816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a70d29b5-9186-4add-81a4-aedf1cfba923 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 51.672875ms + - 2c8b1c5d-8d20-4d83-aaeb-2b83dfc43530 + status: 202 Accepted + code: 202 + duration: 205.49218ms - id: 95 request: proto: HTTP/1.1 @@ -4867,8 +4835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -4876,22 +4844,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1915 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"104","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:38.512670+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1915" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4899,12 +4865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a21409-4747-45a9-b109-9d77e7c80b36 - X-Total-Count: - - "0" + - 363b7e95-2af5-4aa3-8fe4-600ebc444fff status: 200 OK code: 200 - duration: 71.443959ms + duration: 117.147319ms - id: 96 request: proto: HTTP/1.1 @@ -4920,8 +4884,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -4929,22 +4893,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1916 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"203","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:38.534558+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4952,12 +4914,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02d6aae5-d845-4499-bd5c-57c002dcba24 - X-Total-Count: - - "0" + - d79355a5-abe8-40d3-b625-12d3cb60aaf5 status: 200 OK code: 200 - duration: 79.71675ms + duration: 108.372423ms - id: 97 request: proto: HTTP/1.1 @@ -4973,8 +4933,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -4982,20 +4942,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","type":"not_found"}' headers: Content-Length: - - "1775" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:01 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5003,10 +4963,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e488b10e-0aec-4848-840f-da7f6dfcab44 - status: 200 OK - code: 200 - duration: 101.228ms + - 4dc654b6-9d8e-4fbb-bd78-da256cf16a55 + status: 404 Not Found + code: 404 + duration: 59.310833ms - id: 98 request: proto: HTTP/1.1 @@ -5022,249 +4982,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1775 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1775" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 18d7b8ef-5b56-493c-858a-ea359c40a5a0 - status: 200 OK - code: 200 - duration: 140.479333ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1775 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:57.335496+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:15","maintenances":[],"modification_date":"2025-08-06T09:52:57.335496+00:00","name":"tf-server-datasource1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1775" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78feed3b-461f-48d9-b959-ca68acc1d6be - status: 200 OK - code: 200 - duration: 129.535584ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1775 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:52:54.392519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cd:13","maintenances":[],"modification_date":"2025-08-06T09:52:54.392519+00:00","name":"tf-server-datasource0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"67e9260b-3498-46df-a767-df331844cd1a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1775" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1134b33a-0974-42a7-91d7-e300993e1b2b - status: 200 OK - code: 200 - duration: 102.498292ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ca0d52a-ea15-4a07-8130-931d9213aea0 - status: 204 No Content - code: 204 - duration: 199.273666ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:01 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5e77aa0-d32d-4682-b7c0-af71c8f94da4 - status: 204 No Content - code: 204 - duration: 208.221291ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -5274,7 +4993,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","type":"not_found"}' headers: Content-Length: - "143" @@ -5283,9 +5002,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5293,11 +5012,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33748f24-7cd0-41f7-970f-6bd58d884b34 + - 8a744e7e-aa1b-49df-9a21-0c00b4bf22bb status: 404 Not Found code: 404 - duration: 83.017875ms - - id: 104 + duration: 46.375921ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5312,8 +5031,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -5323,7 +5042,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' headers: Content-Length: - "143" @@ -5332,9 +5051,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5342,11 +5061,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bed9485b-39df-4c8f-b90d-2b71dc3756af + - 3be14218-0ebb-4bb5-8eae-948505c90f33 status: 404 Not Found code: 404 - duration: 39.13125ms - - id: 105 + duration: 25.978996ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5361,8 +5080,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -5372,7 +5091,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' headers: Content-Length: - "143" @@ -5381,9 +5100,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5391,11 +5110,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9b8830-c332-4991-be65-a3c3f9235361 + - 6d13eaa9-cc1b-42cf-9871-790deb10a7a5 status: 404 Not Found code: 404 - duration: 156.701709ms - - id: 106 + duration: 29.730786ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5410,8 +5129,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: GET response: proto: HTTP/2.0 @@ -5421,7 +5140,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-08-06T09:52:57.445229Z","id":"3afa39ca-06b1-4d14-87ba-023e43e3f9e9","last_detached_at":"2025-08-06T09:53:02.048614Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:53:02.048614Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":"2025-10-08T23:04:39.823346Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:39.823346Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -5430,9 +5149,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5440,11 +5159,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e67f630-f3fb-4eef-89e0-b151adb4f510 + - 7964c65e-ddd7-48d5-bf33-14f8efd00e72 status: 200 OK code: 200 - duration: 57.966ms - - id: 107 + duration: 45.770019ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5459,8 +5178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: GET response: proto: HTTP/2.0 @@ -5468,20 +5187,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 494 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"67e9260b-3498-46df-a767-df331844cd1a","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":"2025-10-08T23:04:39.921043Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:39.921043Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5489,11 +5208,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b98fd744-0442-4576-a4b5-4fbfa6d5370b - status: 404 Not Found - code: 404 - duration: 31.615916ms - - id: 108 + - 0c4d5457-cae6-4a29-a00a-83fe365a3175 + status: 200 OK + code: 200 + duration: 44.124601ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5508,8 +5227,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3afa39ca-06b1-4d14-87ba-023e43e3f9e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 method: DELETE response: proto: HTTP/2.0 @@ -5526,9 +5245,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5536,60 +5255,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfc6d311-16a7-4e69-b6f2-00c97d118593 + - 9ce5ee76-50ff-4a5b-b9f3-e3f848a009b5 status: 204 No Content code: 204 - duration: 75.8465ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-08-06T09:52:54.546957Z","id":"67e9260b-3498-46df-a767-df331844cd1a","last_detached_at":"2025-08-06T09:53:02.062998Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:53:02.062998Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:53:02 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ca3ad51-ffb9-42ef-9245-58a1148ab25d - status: 200 OK - code: 200 - duration: 52.996208ms - - id: 110 + duration: 71.733476ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5604,8 +5274,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/67e9260b-3498-46df-a767-df331844cd1a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 method: DELETE response: proto: HTTP/2.0 @@ -5622,9 +5292,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5632,11 +5302,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b67f09c-d492-4666-bf80-ef68c9d6b7f7 + - 58ca593f-75a3-4b71-9f2c-d222b24ab2c7 status: 204 No Content code: 204 - duration: 78.462708ms - - id: 111 + duration: 73.477307ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5651,8 +5321,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d method: GET response: proto: HTTP/2.0 @@ -5662,7 +5332,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"221fe78e-4c0f-4f7e-9f31-c0d8c6cf5e23","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","type":"not_found"}' headers: Content-Length: - "143" @@ -5671,9 +5341,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5681,11 +5351,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e237f8-cd4f-40cd-9e85-211478889197 + - b26a6ce9-6fd1-4b5c-8530-0ff6be6cc681 status: 404 Not Found code: 404 - duration: 80.70175ms - - id: 112 + duration: 54.139012ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5700,8 +5370,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a1e57f49-268d-43d4-a52a-eecc25c395b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db method: GET response: proto: HTTP/2.0 @@ -5711,7 +5381,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a1e57f49-268d-43d4-a52a-eecc25c395b4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","type":"not_found"}' headers: Content-Length: - "143" @@ -5720,9 +5390,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:53:02 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5730,7 +5400,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8722077d-d431-4320-adb8-28d487db207c + - 3d7d096e-6bf7-4333-aaea-37cc022634d2 status: 404 Not Found code: 404 - duration: 88.194916ms + duration: 45.864884ms diff --git a/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml index 089a37096..5e4ebb7fa 100644 --- a/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private_network_instance_servers","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance_servers","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:05 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ae6167e-db1f-4072-9391-9c4dd40900d0 + - ffbfd544-d53a-433c-b583-ac53ca490eb7 status: 200 OK code: 200 - duration: 892.454333ms + duration: 742.648993ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:05 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a166ca-3e12-43c5-a699-c8a8723af50f + - b5424d38-7b93-41c7-a6ba-7b243eaf0df8 status: 200 OK code: 200 - duration: 27.682209ms + duration: 31.050563ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -136,11 +136,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:05 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,12 +148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1cb6c7f-3053-4577-b96e-01bbef0367ad + - 62d36984-8e7a-4d02-ac3d-510935f9e96c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 45.187792ms + duration: 48.131982ms - id: 3 request: proto: HTTP/1.1 @@ -169,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -189,11 +189,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:05 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8970bbd5-c34c-4e26-8856-c0dcd7b4acb4 + - c5b9ac23-08ea-4a1a-9ddb-f15a25d802c7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 41.205792ms + duration: 49.890429ms - id: 4 request: proto: HTTP/1.1 @@ -222,7 +222,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -233,7 +233,7 @@ interactions: trailer: {} content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - "1260" @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:05 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,10 +252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d562b102-69ab-4555-bf06-ef770b03cbd0 + - 39b6d325-8a4d-48bb-90fc-0d6680be4b5e status: 200 OK code: 200 - duration: 82.269917ms + duration: 56.537171ms - id: 5 request: proto: HTTP/1.1 @@ -267,13 +267,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -282,22 +282,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:06 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f271c4b-ed24-4695-849b-3920f4f3a45d + - 93a740a7-954a-4f05-99e4-fc39b98a354e status: 201 Created code: 201 - duration: 683.650958ms + duration: 509.361494ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:06 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94f72925-4c68-4a9a-8751-0450332a5fbd + - 629f64b6-15c7-4d82-98ff-4f83ba9d57be status: 200 OK code: 200 - duration: 141.35925ms + duration: 95.224489ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1864b78-4324-46d1-95c2-60fc5305a9e4 + - 5023ce69-d7dc-42f4-9515-032bdc53f15d status: 200 OK code: 200 - duration: 267.949167ms + duration: 125.900669ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 979a806e-52c2-4e66-ad73-4f27600824ea + - 4a090cd0-ceee-4e15-b533-918fff5adf19 status: 200 OK code: 200 - duration: 64.523125ms + duration: 23.14488ms - id: 9 request: proto: HTTP/1.1 @@ -471,8 +471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -480,20 +480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,10 +501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b7eed4-0954-4adf-897c-ca5b4c342457 + - 56b0cad6-f2fa-42dc-a9f7-68afb034aedc status: 200 OK code: 200 - duration: 110.190792ms + duration: 102.566709ms - id: 10 request: proto: HTTP/1.1 @@ -516,14 +516,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d"}' + body: '{"private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: POST response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b1a9cb5-1b2d-4817-981e-7c1a7f74607a + - 1f9edd48-44f1-4da8-b87c-e34e33b65b94 status: 201 Created code: 201 - duration: 456.392667ms + duration: 468.18913ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics/af4dfcf8-aceb-45fb-b64f-36b88cfce003 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9e1745b-1e00-4910-b205-8b4af3d0d3b4 + - bc9f9d07-6353-412c-8faa-6b747b6f7a7a status: 200 OK code: 200 - duration: 52.265167ms + duration: 65.364671ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics/af4dfcf8-aceb-45fb-b64f-36b88cfce003 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a59c55c4-3b1d-4e83-b23b-1f61771254aa + - 9068d028-b13e-4198-8c98-27c6ad1d0c55 status: 200 OK code: 200 - duration: 70.023ms + duration: 59.298064ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3121fba3-026c-48db-8945-54f301f528a0 + - 0fddc400-09c2-4c85-8012-5c5a2b125c67 status: 200 OK code: 200 - duration: 149.34475ms + duration: 105.929697ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -729,7 +729,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - "143" @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:07 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b513d503-3896-489e-99ed-1cc0e9291be0 + - 9095b340-0a28-4f9b-889f-863a30959add status: 404 Not Found code: 404 - duration: 30.344459ms + duration: 30.241385ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -778,7 +778,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04ba739f-d2e5-4d3e-9ba2-dd466197b169 + - 3037eed8-50df-4f0a-988f-101bb591aad7 status: 200 OK code: 200 - duration: 55.050625ms + duration: 53.800932ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -836,9 +836,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -846,10 +846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53523228-47ab-403f-8d19-ae5928fd4763 + - f6135451-e4af-4c07-a9d2-bbdbc2333fa3 status: 200 OK code: 200 - duration: 56.165583ms + duration: 71.678616ms - id: 17 request: proto: HTTP/1.1 @@ -865,8 +865,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -876,7 +876,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -885,11 +885,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,12 +897,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be9f94c4-972f-4946-bea8-cd1b132fb3f0 + - 5a8c88eb-0015-4777-b95c-dd4315aaa79a X-Total-Count: - "1" status: 200 OK code: 200 - duration: 63.216083ms + duration: 78.94739ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75fc66fd-a644-4941-9b24-612010859daf + - cd2d6fcd-0b5d-48c0-b0a9-f79a75b94219 status: 200 OK code: 200 - duration: 49.274167ms + duration: 38.081385ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -978,7 +978,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 203d3a74-a9e4-4ae0-96e8-cfed6da869f1 + - 57f5e4ff-e079-4663-94a1-c8f945a955c1 status: 200 OK code: 200 - duration: 27.924333ms + duration: 24.968918ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c777494-3b8f-4aa2-8fec-ad411d260217 + - b56a6c74-21ab-44ef-aeb7-b18dee7cddf2 status: 200 OK code: 200 - duration: 149.344541ms + duration: 99.197328ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -1076,7 +1076,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1085,9 +1085,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d64d9f91-af73-491f-a0ec-a61b73cd6e0e + - 67216e64-327f-46ac-b74d-1e972274761a status: 404 Not Found code: 404 - duration: 36.529125ms + duration: 26.292951ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -1125,7 +1125,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1134,9 +1134,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1144,10 +1144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a127b17-a58d-42df-8071-8f64f7be2a31 + - b19277af-8af1-44c6-8ea9-74f41334c689 status: 200 OK code: 200 - duration: 43.375583ms + duration: 37.515387ms - id: 23 request: proto: HTTP/1.1 @@ -1163,8 +1163,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -1183,9 +1183,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1193,10 +1193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dad49412-82ef-488b-a994-efee3a50cdfb + - f1b251e0-84b1-4f23-af0c-0acc9092921c status: 200 OK code: 200 - duration: 64.484209ms + duration: 54.745712ms - id: 24 request: proto: HTTP/1.1 @@ -1212,8 +1212,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -1223,7 +1223,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1232,11 +1232,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,12 +1244,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a34b79cf-6557-44bc-a307-6b2277dff971 + - eb27677a-6671-4987-b1e9-2eaa9aedc752 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 64.817458ms + duration: 52.137972ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1276,7 +1276,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -1285,9 +1285,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:08 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95784ef0-77c5-4ead-b5d2-ceea69526c8a + - a3fc7e0b-2e22-41b0-ae8d-4f30becd49f0 status: 200 OK code: 200 - duration: 36.5105ms + duration: 27.663248ms - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -1325,7 +1325,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -1334,9 +1334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d8e31de-c1ac-45c5-baf3-87bbda893f50 + - 2ef3061e-3209-4cfa-9ac0-488bf09d1623 status: 200 OK code: 200 - duration: 33.928292ms + duration: 32.867609ms - id: 27 request: proto: HTTP/1.1 @@ -1363,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8f1a59-9d73-450c-86ce-47f2aaf7f357 + - 09c0287a-c0f2-4e1f-a4b3-768ce495dfda status: 200 OK code: 200 - duration: 125.240375ms + duration: 86.43089ms - id: 28 request: proto: HTTP/1.1 @@ -1412,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -1423,7 +1423,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1432,9 +1432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71bef4ad-b95b-4859-9e6f-d2f222d286b6 + - e4ad3be4-bc01-489d-b50c-cf47802bea37 status: 404 Not Found code: 404 - duration: 25.6625ms + duration: 28.742128ms - id: 29 request: proto: HTTP/1.1 @@ -1461,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -1472,7 +1472,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1481,9 +1481,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb651703-9edb-47bc-8aaa-abdc2482fd1f + - 65662635-2140-4abf-89f1-0e5dda5e4e08 status: 200 OK code: 200 - duration: 44.221834ms + duration: 46.292595ms - id: 30 request: proto: HTTP/1.1 @@ -1510,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -1530,9 +1530,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf7f5df-1e1b-4478-b54c-09281d90071f + - 91f72b4a-c8ee-4ebd-ad7d-3348225d1658 status: 200 OK code: 200 - duration: 54.406375ms + duration: 56.771564ms - id: 31 request: proto: HTTP/1.1 @@ -1559,8 +1559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -1570,7 +1570,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1579,11 +1579,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,12 +1591,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bec0d1b5-f63c-48d2-aabe-001638b12611 + - ddff22e2-b9a9-45f9-917b-0e35027110d3 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 67.309125ms + duration: 53.22246ms - id: 32 request: proto: HTTP/1.1 @@ -1612,8 +1612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1623,7 +1623,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -1632,9 +1632,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,10 +1642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98d5e703-cf28-4e8f-ae86-7f3f611e3c5c + - c17c2be5-ad29-4497-af36-c6e25b3495ea status: 200 OK code: 200 - duration: 33.33975ms + duration: 31.523508ms - id: 33 request: proto: HTTP/1.1 @@ -1661,7 +1661,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1681,11 +1681,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,12 +1693,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 870b3c41-2f9e-4012-ac24-6f4a3be31b11 + - fb19d537-ce31-4f68-a592-32346b61da97 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 43.198917ms + duration: 50.089618ms - id: 34 request: proto: HTTP/1.1 @@ -1714,7 +1714,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1734,11 +1734,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,12 +1746,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b37c2a-0cf9-4ba9-a3d9-9d3cdd129e4a + - 85607263-d0ca-4b95-bb2c-5d3431b753d7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 46.517166ms + duration: 41.537157ms - id: 35 request: proto: HTTP/1.1 @@ -1767,7 +1767,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -1778,7 +1778,7 @@ interactions: trailer: {} content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - "1260" @@ -1787,9 +1787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:09 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,10 +1797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 860284d3-96b7-484d-a558-507cff54f3ba + - df0b08e7-d127-4e29-b751-1216755875a5 status: 200 OK code: 200 - duration: 102.183958ms + duration: 53.530892ms - id: 36 request: proto: HTTP/1.1 @@ -1812,13 +1812,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1827,22 +1827,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:10 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccda0714-26eb-49fd-902f-6e808a8bf095 + - 7fa161ae-59a0-4bae-929d-c23332e3686e status: 201 Created code: 201 - duration: 708.374625ms + duration: 591.533198ms - id: 37 request: proto: HTTP/1.1 @@ -1869,8 +1869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -1878,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:10 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 762fc5ff-1dca-485b-a5e6-af3b6e4b6cf9 + - d650a836-ac56-4c5c-9928-b31d74697223 status: 200 OK code: 200 - duration: 154.434959ms + duration: 90.881754ms - id: 38 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -1927,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:10 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7c15547-c22f-4d8e-93ae-33b594512a72 + - 3eb033ed-2672-493f-9a75-f01e1e24e2e9 status: 200 OK code: 200 - duration: 107.602125ms + duration: 103.699144ms - id: 39 request: proto: HTTP/1.1 @@ -1967,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -1978,7 +1978,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -1987,9 +1987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:10 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41b9d845-8bfc-4467-9a90-18cb034747e0 + - 4ea9fc51-5953-408c-b2b2-7d7189fba024 status: 200 OK code: 200 - duration: 45.272584ms + duration: 21.094902ms - id: 40 request: proto: HTTP/1.1 @@ -2016,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -2025,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1823 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1823" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 444cbf83-da1c-48b9-b0bd-735d1e2c47e5 + - a155ce51-58c1-4e20-b3e8-0868d2606c46 status: 200 OK code: 200 - duration: 151.245708ms + duration: 104.735795ms - id: 41 request: proto: HTTP/1.1 @@ -2061,14 +2061,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d"}' + body: '{"private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: POST response: proto: HTTP/2.0 @@ -2078,7 +2078,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0e908b6-583c-4f4a-a054-995d659c5d4b + - 6b4f4b1a-ebb1-48e9-bf8b-26d0e0e1bccb status: 201 Created code: 201 - duration: 540.628209ms + duration: 435.590234ms - id: 42 request: proto: HTTP/1.1 @@ -2116,8 +2116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics/4e379852-ab6d-468c-8280-4e586fbfc1d5 method: GET response: proto: HTTP/2.0 @@ -2127,7 +2127,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2136,9 +2136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,10 +2146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52ae051e-242b-4b40-990a-b8a8121e0d27 + - 5d22c3f0-6009-47e2-a17e-38b11601e3e7 status: 200 OK code: 200 - duration: 63.295083ms + duration: 55.888309ms - id: 43 request: proto: HTTP/1.1 @@ -2165,8 +2165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics/4e379852-ab6d-468c-8280-4e586fbfc1d5 method: GET response: proto: HTTP/2.0 @@ -2176,7 +2176,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2185,9 +2185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2195,10 +2195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a65b4605-b227-4ec5-8ba4-5585b73f2667 + - ee842c02-902b-4d06-9246-dd9d521de3d5 status: 200 OK code: 200 - duration: 71.599375ms + duration: 57.172876ms - id: 44 request: proto: HTTP/1.1 @@ -2214,8 +2214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -2223,20 +2223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,10 +2244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed86137b-ed2c-40e6-a1b5-3e2d356eff73 + - 1fbcbc39-b013-499c-9a6f-cfefb22226f9 status: 200 OK code: 200 - duration: 127.557084ms + duration: 94.175344ms - id: 45 request: proto: HTTP/1.1 @@ -2263,8 +2263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -2274,7 +2274,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' headers: Content-Length: - "143" @@ -2283,9 +2283,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:11 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2293,10 +2293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b87b69-365e-4048-8cbe-6bcc3c880fac + - 35b6937d-8fea-491a-b7f1-5f62e0c8fc84 status: 404 Not Found code: 404 - duration: 66.673125ms + duration: 47.241632ms - id: 46 request: proto: HTTP/1.1 @@ -2312,8 +2312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -2323,7 +2323,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2332,9 +2332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2342,10 +2342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f26078c-6fb8-4604-af31-fd3348ade083 + - 0ea6e56b-317a-4ea4-b206-19b8cfadf029 status: 200 OK code: 200 - duration: 50.519416ms + duration: 53.532354ms - id: 47 request: proto: HTTP/1.1 @@ -2361,8 +2361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data method: GET response: proto: HTTP/2.0 @@ -2381,9 +2381,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,10 +2391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cd15994-73a8-4bfc-9b1e-76740810b41d + - 901c4276-4000-4ba3-8f3d-c2c12cc63f9e status: 200 OK code: 200 - duration: 80.909084ms + duration: 54.101468ms - id: 48 request: proto: HTTP/1.1 @@ -2410,8 +2410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -2421,7 +2421,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2430,11 +2430,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,12 +2442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb2e721a-0ad4-4181-b690-4cbcffe1fa08 + - 5a290940-26c2-4f6f-a3e0-9901110d5dc2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 98.231917ms + duration: 54.76072ms - id: 49 request: proto: HTTP/1.1 @@ -2463,8 +2463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2474,7 +2474,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -2483,9 +2483,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,10 +2493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a6f426b-babb-48d0-b5d1-3e312b6f1a44 + - 679c6570-2263-43cc-bf9e-217290e596fa status: 200 OK code: 200 - duration: 33.556ms + duration: 32.228744ms - id: 50 request: proto: HTTP/1.1 @@ -2512,8 +2512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -2523,7 +2523,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -2532,9 +2532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,10 +2542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66714651-5508-4db4-88ba-e440417201d2 + - bed601b6-614e-47f3-b1df-5d94b8a04fe5 status: 200 OK code: 200 - duration: 34.165042ms + duration: 27.269068ms - id: 51 request: proto: HTTP/1.1 @@ -2561,8 +2561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -2570,20 +2570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2591,10 +2591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0e9e04e-5a95-4c08-8b8d-bbf210d0827f + - 56a6c0d4-76b0-4e40-b3e5-4be9df708c50 status: 200 OK code: 200 - duration: 130.409917ms + duration: 97.762859ms - id: 52 request: proto: HTTP/1.1 @@ -2610,8 +2610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -2619,20 +2619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2281 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2640,10 +2640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45ef1d3c-b3bf-49be-b3a2-2a3c396c4eff + - 57353a87-9628-45c8-b319-41964e6b88bb status: 200 OK code: 200 - duration: 130.374959ms + duration: 128.753651ms - id: 53 request: proto: HTTP/1.1 @@ -2659,8 +2659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -2670,7 +2670,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' headers: Content-Length: - "143" @@ -2679,9 +2679,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2689,10 +2689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bf06af6-e1ae-414d-b178-384391a1d259 + - fcbc4d1f-692a-4053-a136-ae73206a3455 status: 404 Not Found code: 404 - duration: 41.49025ms + duration: 29.563348ms - id: 54 request: proto: HTTP/1.1 @@ -2708,8 +2708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -2719,7 +2719,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - "143" @@ -2728,9 +2728,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2738,10 +2738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4f577b4-6bc3-4711-a64b-0d9a87e0e222 + - be9ebce2-4a4d-4c9b-b10b-3cd07809ec06 status: 404 Not Found code: 404 - duration: 55.232542ms + duration: 28.858562ms - id: 55 request: proto: HTTP/1.1 @@ -2757,8 +2757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -2768,7 +2768,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2777,9 +2777,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2787,10 +2787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6937b104-5608-47b7-866c-1ce0874c79f2 + - a33c4637-6e60-41e5-8b60-56c524288b07 status: 200 OK code: 200 - duration: 44.359167ms + duration: 46.100138ms - id: 56 request: proto: HTTP/1.1 @@ -2806,8 +2806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -2817,7 +2817,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2826,9 +2826,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2836,10 +2836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf057ce-d378-4f15-af38-4d22ed8e7d9a + - 05251efd-386a-4185-a60d-b87a2f971728 status: 200 OK code: 200 - duration: 42.564541ms + duration: 43.967248ms - id: 57 request: proto: HTTP/1.1 @@ -2855,8 +2855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data method: GET response: proto: HTTP/2.0 @@ -2875,9 +2875,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,10 +2885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2d3919e-a7f4-4677-8eae-659656c7a78f + - 7fea158e-a1d1-449f-a278-d9f24432e78a status: 200 OK code: 200 - duration: 70.693458ms + duration: 66.755797ms - id: 58 request: proto: HTTP/1.1 @@ -2904,8 +2904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -2924,9 +2924,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2934,10 +2934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dee33f0f-c35e-4491-beb6-39b49ee0f3f8 + - e284b003-32a2-40c4-a289-f25a489d9850 status: 200 OK code: 200 - duration: 69.005917ms + duration: 63.92866ms - id: 59 request: proto: HTTP/1.1 @@ -2953,8 +2953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -2964,7 +2964,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2973,11 +2973,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,12 +2985,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c12f7d-9fe3-4d15-8727-4de5fd0e0929 + - 4cb90088-555a-4b29-84f2-c7904a8cb6f5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 68.280166ms + duration: 62.71888ms - id: 60 request: proto: HTTP/1.1 @@ -3006,8 +3006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -3017,7 +3017,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3026,11 +3026,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3038,12 +3038,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d84c3a66-76cf-41f7-be18-6c985b76c2c3 + - 69d14fb7-1032-4aff-9068-bc78562cb3f1 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 67.577ms + duration: 54.697502ms - id: 61 request: proto: HTTP/1.1 @@ -3059,8 +3059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3070,7 +3070,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -3079,9 +3079,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3089,10 +3089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcb9b659-6fea-4635-9987-a42cef1c0874 + - 07aa6867-429d-4ac5-9874-823deb2676c2 status: 200 OK code: 200 - duration: 33.428791ms + duration: 31.332434ms - id: 62 request: proto: HTTP/1.1 @@ -3108,8 +3108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3119,7 +3119,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -3128,9 +3128,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:12 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3138,10 +3138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa35570-2af1-4888-835a-bfc097ec3fa4 + - 7c68d55a-b5ad-4962-bd44-cc59f3dba493 status: 200 OK code: 200 - duration: 25.7515ms + duration: 38.48907ms - id: 63 request: proto: HTTP/1.1 @@ -3157,8 +3157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -3168,7 +3168,7 @@ interactions: trailer: {} content_length: 1102 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - "1102" @@ -3177,9 +3177,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3187,10 +3187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b996e43-331e-460a-a51c-bedb5653ad6a + - d70226c3-6cb6-4028-be34-04f321fd413d status: 200 OK code: 200 - duration: 29.298625ms + duration: 31.163292ms - id: 64 request: proto: HTTP/1.1 @@ -3206,7 +3206,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: @@ -3226,11 +3226,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3238,12 +3238,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54452529-6f6f-4d28-8aa1-c10f8cfbe886 + - 143ac954-001e-4b70-a721-a76f892051c6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 78.264917ms + duration: 85.242809ms - id: 65 request: proto: HTTP/1.1 @@ -3259,8 +3259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -3268,22 +3268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 2281 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "4511" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3291,12 +3289,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6a48093-c578-4272-b36f-ba779e3d2368 - X-Total-Count: - - "2" + - 4653842b-1a35-4c95-b9c8-38788714b611 status: 200 OK code: 200 - duration: 148.216666ms + duration: 88.719648ms - id: 66 request: proto: HTTP/1.1 @@ -3312,8 +3308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -3321,22 +3317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 2281 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "4511" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,12 +3338,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f07298af-1027-4768-aba4-1bfb5dbd0fe5 - X-Total-Count: - - "2" + - 2468c494-9b51-42ae-8a1f-e74876274932 status: 200 OK code: 200 - duration: 164.339083ms + duration: 92.540616ms - id: 67 request: proto: HTTP/1.1 @@ -3365,8 +3357,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3374,20 +3366,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 4555 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "2259" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3395,10 +3389,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2ea62bd-2ec0-43db-abd0-55c418710d5b + - dcd7c1e8-3c23-45ae-a579-d886fc0de425 + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 147.375666ms + duration: 143.716875ms - id: 68 request: proto: HTTP/1.1 @@ -3414,8 +3410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3423,20 +3419,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 4555 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "2259" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3444,10 +3442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 588a7a00-280a-4d31-9646-ddc6355e5fd7 + - f0f65d9b-6aa9-4cb1-8dc8-4ba3622edb52 + X-Total-Count: + - "2" status: 200 OK code: 200 - duration: 164.827625ms + duration: 161.748995ms - id: 69 request: proto: HTTP/1.1 @@ -3463,8 +3463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -3472,22 +3472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3495,12 +3493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5d73ad0-cd8a-43ff-bbf6-663aaf95646b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 59.806166ms + - 3da4e02e-a136-4151-94b5-4a4fcf7ef473 + status: 404 Not Found + code: 404 + duration: 31.363402ms - id: 70 request: proto: HTTP/1.1 @@ -3516,8 +3512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -3525,22 +3521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3548,12 +3542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff6c5c25-b262-4128-a04e-17d53eda350b - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 64.446708ms + - c3f6e31b-e8b7-42d1-8aaf-447f69fb9888 + status: 404 Not Found + code: 404 + duration: 37.829068ms - id: 71 request: proto: HTTP/1.1 @@ -3569,8 +3561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -3578,20 +3570,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3599,10 +3593,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bfb8e55-87df-4559-b7f3-cdad702a4e3b - status: 404 Not Found - code: 404 - duration: 31.263458ms + - bc43cb74-5b9e-4e09-938e-0684bb9f6bbe + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 58.723259ms - id: 72 request: proto: HTTP/1.1 @@ -3618,8 +3614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -3627,20 +3623,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3648,10 +3646,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94f824cf-b334-44f1-b1d7-9a0a3fa61f2f + - 7f172cbf-46b7-4e5f-9ea7-9f130842b46e + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 26.38475ms + duration: 51.457661ms - id: 73 request: proto: HTTP/1.1 @@ -3667,8 +3667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -3676,20 +3676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3697,10 +3697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a65a9e-37d8-4440-b471-b39f30b30ba0 - status: 404 Not Found - code: 404 - duration: 64.328875ms + - 2b761a90-08fb-4ce7-91f0-ec66339c04f1 + status: 200 OK + code: 200 + duration: 50.053992ms - id: 74 request: proto: HTTP/1.1 @@ -3716,8 +3716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -3725,20 +3725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 701 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3746,10 +3746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cf62265-bd97-4d2c-8dce-56dc3395b3a7 + - 21501008-27f6-44a0-b1af-fd58f83459ae status: 200 OK code: 200 - duration: 27.706917ms + duration: 47.677659ms - id: 75 request: proto: HTTP/1.1 @@ -3765,8 +3765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3774,20 +3774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1098 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3795,10 +3795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33aafa14-169e-41bb-9655-7a93d26b8f58 + - 4a524cbe-c1ef-4ef3-ab48-06a630e8936b status: 200 OK code: 200 - duration: 50.716958ms + duration: 19.464873ms - id: 76 request: proto: HTTP/1.1 @@ -3814,8 +3814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3823,20 +3823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1098 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3844,10 +3844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02e3ef63-8484-4a98-8089-dc8738925bdf + - a4be688b-239a-4ebe-9175-1d8ab9a47d94 status: 200 OK code: 200 - duration: 37.746625ms + duration: 29.193893ms - id: 77 request: proto: HTTP/1.1 @@ -3863,8 +3863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data method: GET response: proto: HTTP/2.0 @@ -3872,22 +3872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3895,12 +3893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbf38237-ef57-494e-a406-fbcedea5cca5 - X-Total-Count: - - "1" + - e3f2b364-6d75-4fa8-a433-c698076eb659 status: 200 OK code: 200 - duration: 78.206334ms + duration: 65.430121ms - id: 78 request: proto: HTTP/1.1 @@ -3916,8 +3912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -3927,7 +3923,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3936,11 +3932,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3948,12 +3944,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f5a0972-80e8-4c5e-95cb-4a040dffc5ac + - 15d63b0a-4663-42ae-a8ba-a233f1c2885a X-Total-Count: - "1" status: 200 OK code: 200 - duration: 64.291042ms + duration: 66.198644ms - id: 79 request: proto: HTTP/1.1 @@ -3969,8 +3965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -3989,9 +3985,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3999,10 +3995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd22eae2-8ad9-42dc-8dd0-351cb9e76c81 + - ef415444-307d-4610-92d0-e52dadc0f433 status: 200 OK code: 200 - duration: 62.116834ms + duration: 73.742267ms - id: 80 request: proto: HTTP/1.1 @@ -4018,8 +4014,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -4027,20 +4023,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4048,10 +4046,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e4877a4-b629-454b-9e71-ee49652d2d9e + - ef340f86-e80a-41c2-9ccd-3d6a07c04b5e + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 31.895ms + duration: 68.199751ms - id: 81 request: proto: HTTP/1.1 @@ -4067,8 +4067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4076,20 +4076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1098 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4097,10 +4097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efb5f668-305a-4099-a99a-461dcc58eb8c + - 82b23f54-3627-4064-b8c4-59273679991b status: 200 OK code: 200 - duration: 73.392208ms + duration: 27.170947ms - id: 82 request: proto: HTTP/1.1 @@ -4116,8 +4116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4127,7 +4127,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -4136,9 +4136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4146,10 +4146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e30a9b78-fc79-44a0-a57f-babdebb74512 + - 6909c5f7-6ac2-4f76-a69b-8fa499ff790e status: 200 OK code: 200 - duration: 43.142333ms + duration: 25.343842ms - id: 83 request: proto: HTTP/1.1 @@ -4165,8 +4165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -4176,7 +4176,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4185,11 +4185,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4197,12 +4197,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4410dba8-efbb-4b1e-9fe0-e8d0ee8a69d9 + - d9a0a9fd-f634-41ca-8e78-c9637b4dc36c X-Total-Count: - "1" status: 200 OK code: 200 - duration: 60.858709ms + duration: 55.661137ms - id: 84 request: proto: HTTP/1.1 @@ -4218,8 +4218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -4229,7 +4229,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4238,11 +4238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4250,12 +4250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04a09953-c439-4277-a5b0-124a44ec1dc0 + - 6b72590c-0eb6-4744-b92e-52b81d000dd6 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 56.426291ms + duration: 54.544409ms - id: 85 request: proto: HTTP/1.1 @@ -4271,8 +4271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4282,7 +4282,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -4291,9 +4291,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4301,10 +4301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86cd525a-9b75-45c4-8446-5afb839032b6 + - a84ddf68-9c7a-4c65-aedc-0b0bda226d36 status: 200 OK code: 200 - duration: 31.401709ms + duration: 29.415765ms - id: 86 request: proto: HTTP/1.1 @@ -4320,8 +4320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4331,7 +4331,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -4340,9 +4340,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4350,10 +4350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 644489e0-183a-4e7d-b8b8-4bada693c70c + - 6eb571e0-c844-44bf-bcc9-fd4b5e3cbe7d status: 200 OK code: 200 - duration: 28.598875ms + duration: 24.634038ms - id: 87 request: proto: HTTP/1.1 @@ -4369,7 +4369,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: @@ -4389,11 +4389,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4401,12 +4401,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d6ce22d-b8c7-41d7-8e36-1358d07b762c + - 2470112d-754c-4139-a08e-482a1a9466e3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.847875ms + duration: 95.097862ms - id: 88 request: proto: HTTP/1.1 @@ -4422,8 +4422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -4431,22 +4431,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 4555 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4511" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4454,12 +4454,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5a00416-b215-4d00-9e15-744baaa18e9f + - 82bc62ff-ef62-4e90-a4f9-7c93fd974f73 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 132.468083ms + duration: 138.620877ms - id: 89 request: proto: HTTP/1.1 @@ -4475,8 +4475,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -4484,22 +4484,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 4555 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4511" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4507,12 +4507,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6134d164-cf2d-436d-90ea-e87669bd6ed3 + - 1250328c-9c96-483f-b3d4-b61a69840b85 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 188.328417ms + duration: 143.908981ms - id: 90 request: proto: HTTP/1.1 @@ -4528,8 +4528,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -4539,7 +4539,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4548,11 +4548,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4560,12 +4560,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 299b3fae-5fd0-4266-93e9-d10bec8dac86 + - d00f7bc4-8aa4-459e-a45e-561151300d66 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 64.227375ms + duration: 50.300908ms - id: 91 request: proto: HTTP/1.1 @@ -4581,8 +4581,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -4590,20 +4590,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4611,10 +4613,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7755cc93-5547-45f4-8697-fab71d17ff2b + - c83f97b1-9254-456c-81ef-60888ed2468f + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 31.774708ms + duration: 57.97946ms - id: 92 request: proto: HTTP/1.1 @@ -4630,8 +4634,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4639,22 +4643,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4662,12 +4664,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43e7d66b-c149-4d7a-8e39-e6478b5e24be - X-Total-Count: - - "1" + - e05b21f7-b4c5-4277-a675-1b10580954dc status: 200 OK code: 200 - duration: 59.52475ms + duration: 27.698343ms - id: 93 request: proto: HTTP/1.1 @@ -4683,8 +4683,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4694,7 +4694,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -4703,9 +4703,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4713,10 +4713,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05d1b9ea-bcbe-4c2f-b8f3-be41c62d113c + - 8ed89b81-3ac8-4a89-8dd3-baab6ce98d55 status: 200 OK code: 200 - duration: 32.090292ms + duration: 30.280135ms - id: 94 request: proto: HTTP/1.1 @@ -4732,8 +4732,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -4743,7 +4743,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4752,11 +4752,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4764,12 +4764,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8727da-8b4b-41ba-9176-d7ef90bb93bf + - bcab0a5c-2878-4510-8b5e-63f1fb58c188 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 57.756416ms + duration: 48.495214ms - id: 95 request: proto: HTTP/1.1 @@ -4785,8 +4785,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -4794,20 +4794,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT + - Wed, 08 Oct 2025 23:05:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4815,10 +4817,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7f0c16a-8d95-4703-a3ba-32404f7f0a7f + - f5d1851d-eec7-447a-8f14-0e8d7c31f87a + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 32.94075ms + duration: 64.32297ms - id: 96 request: proto: HTTP/1.1 @@ -4834,8 +4838,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4843,22 +4847,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:13 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4866,12 +4868,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f124a320-d479-4f8e-8e6d-da427e80c089 - X-Total-Count: - - "1" + - b8a26a9b-2e9b-4d0e-9baa-7d55b1d2551a status: 200 OK code: 200 - duration: 53.611459ms + duration: 29.70495ms - id: 97 request: proto: HTTP/1.1 @@ -4887,8 +4887,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4898,7 +4898,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -4907,9 +4907,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4917,10 +4917,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3025dc-aa97-49dc-995a-0a56a3235689 + - 52b994a5-e953-41dc-8e74-dc992fe88773 status: 200 OK code: 200 - duration: 42.839709ms + duration: 35.858838ms - id: 98 request: proto: HTTP/1.1 @@ -4936,8 +4936,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 method: GET response: proto: HTTP/2.0 @@ -4945,22 +4945,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1102 uncompressed: false - body: '{"servers":[]}' + body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' headers: Content-Length: - - "15" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4968,12 +4966,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdf80cd1-aa74-4f9c-a8ec-efbc630f9bf0 - X-Total-Count: - - "0" + - 48fe2b53-17e1-4e81-8dd9-36e30a159cc9 status: 200 OK code: 200 - duration: 115.0265ms + duration: 32.759508ms - id: 99 request: proto: HTTP/1.1 @@ -4989,8 +4985,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -4998,22 +4994,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 15 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[]}' headers: Content-Length: - - "4511" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5021,12 +5017,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e56fe1-b44a-4a6c-8914-eece61346bd6 + - b75d345e-fc3f-4855-aaca-2c431f7c4f76 X-Total-Count: - - "2" + - "0" status: 200 OK code: 200 - duration: 143.485875ms + duration: 94.229815ms - id: 100 request: proto: HTTP/1.1 @@ -5042,7 +5038,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: @@ -5051,22 +5047,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 4555 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4511" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5074,12 +5070,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4c899c3-28c2-4110-ac63-7fc67956d466 + - 9185e686-c5ca-4e5f-bc3c-d8a8844ae9cf X-Total-Count: - "2" status: 200 OK code: 200 - duration: 167.248792ms + duration: 119.094068ms - id: 101 request: proto: HTTP/1.1 @@ -5095,8 +5091,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -5104,22 +5100,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 4555 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "478" + - "4555" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5127,12 +5123,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3397a927-8a37-423f-b2ea-c6af2d831e13 + - 05a22993-88d0-4fda-9a15-0e3535ac7802 X-Total-Count: - - "1" + - "2" status: 200 OK code: 200 - duration: 71.468791ms + duration: 134.137892ms - id: 102 request: proto: HTTP/1.1 @@ -5148,8 +5144,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -5157,22 +5153,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2281 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5180,12 +5174,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 858b1539-a868-4b62-8e31-003a2c3e831a - X-Total-Count: - - "1" + - 15890e6f-46ec-48aa-a7b2-92dbf625ea9e status: 200 OK code: 200 - duration: 58.970917ms + duration: 96.293917ms - id: 103 request: proto: HTTP/1.1 @@ -5201,8 +5193,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -5210,20 +5202,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 2281 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5231,10 +5223,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 271116a1-ff6d-41ca-88e6-3147c5c5d377 + - 42165c1d-5df9-4828-af6b-d125cd0fbb88 status: 200 OK code: 200 - duration: 27.925958ms + duration: 110.527702ms - id: 104 request: proto: HTTP/1.1 @@ -5250,8 +5242,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -5259,20 +5251,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' headers: Content-Length: - - "1098" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5280,10 +5272,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 588ef6e3-436a-47cd-a0ef-7a02e12a9bd0 - status: 200 OK - code: 200 - duration: 27.632958ms + - 8c47f6fe-b329-4f7c-9272-8ec84f93a4a9 + status: 404 Not Found + code: 404 + duration: 22.724671ms - id: 105 request: proto: HTTP/1.1 @@ -5299,8 +5291,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -5310,7 +5302,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5319,11 +5311,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5331,12 +5323,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fada8efd-2802-4169-9c99-193ba6b2239b + - 866a3d23-6722-44c5-bdf7-4c5f1321396d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 66.866792ms + duration: 43.270856ms - id: 106 request: proto: HTTP/1.1 @@ -5352,8 +5344,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -5363,7 +5355,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5372,11 +5364,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5384,12 +5376,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02e6c6d3-ffc1-4715-b267-590074b5b648 + - 38c81cd9-7cd9-43d7-92e8-26d03e42dda9 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 87.25025ms + duration: 47.034219ms - id: 107 request: proto: HTTP/1.1 @@ -5405,8 +5397,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -5414,20 +5406,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' headers: Content-Length: - - "1098" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5435,10 +5427,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6c9b9f3-9645-4e22-b22c-edfc7661a50e - status: 200 OK - code: 200 - duration: 29.38725ms + - 1345c81c-3bb2-410a-9417-e466b76c5f69 + status: 404 Not Found + code: 404 + duration: 33.174367ms - id: 108 request: proto: HTTP/1.1 @@ -5454,8 +5446,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5465,7 +5457,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -5474,9 +5466,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5484,10 +5476,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aaa36f7-8b73-465c-8a41-e704fb3c76fc + - 38c9cea3-aaca-4a8a-826c-4d826b789ca9 status: 200 OK code: 200 - duration: 30.324416ms + duration: 29.663383ms - id: 109 request: proto: HTTP/1.1 @@ -5503,8 +5495,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5512,20 +5504,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1098 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:05.024597Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","name":"private_network_instance_servers","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-08-06T09:42:05.024597Z","id":"d393c5e7-30fe-467f-af2c-19b014871ff3","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.80.0/22","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-08-06T09:42:05.024597Z","id":"68fff708-be69-40c4-857e-79dee8a23675","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:662f::/64","updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-08-06T09:42:05.024597Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1102" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5533,10 +5525,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5442d01d-f67a-4d5b-99bd-f3fd6871ca6c + - 2cb3070f-5d13-4fcf-ab2d-3f541a36226f status: 200 OK code: 200 - duration: 28.557083ms + duration: 24.152334ms - id: 110 request: proto: HTTP/1.1 @@ -5552,8 +5544,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -5561,22 +5553,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 701 uncompressed: false - body: '{"servers":[]}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - - "15" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5584,12 +5574,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65618a38-9026-4162-a8b2-c84ee7e8b5cd - X-Total-Count: - - "0" + - 7d3723f1-548c-4a27-a278-57ef1a1a8875 status: 200 OK code: 200 - duration: 102.998959ms + duration: 46.399001ms - id: 111 request: proto: HTTP/1.1 @@ -5605,8 +5593,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -5614,22 +5602,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 701 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' headers: Content-Length: - - "4511" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5637,12 +5623,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32bfeb58-7c9d-4b92-af97-52261181e230 - X-Total-Count: - - "2" + - 72aee079-8244-4566-8141-c60d715fa11b status: 200 OK code: 200 - duration: 149.831375ms + duration: 46.742968ms - id: 112 request: proto: HTTP/1.1 @@ -5658,8 +5642,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -5667,22 +5651,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 478 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "4511" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5690,12 +5674,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d07aa60-7863-430d-bfc5-a9727e5f3530 + - e1abf374-1042-49ff-8475-eff0f8f59ffc X-Total-Count: - - "2" + - "1" status: 200 OK code: 200 - duration: 152.938042ms + duration: 52.609083ms - id: 113 request: proto: HTTP/1.1 @@ -5711,8 +5695,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data method: GET response: proto: HTTP/2.0 @@ -5720,20 +5704,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2259" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5741,10 +5725,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2793ba8-f522-4b48-b225-73889d91674b + - ec33a6c1-45eb-4311-971f-c6315fc294ba status: 200 OK code: 200 - duration: 135.136417ms + duration: 45.90161ms - id: 114 request: proto: HTTP/1.1 @@ -5760,8 +5744,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -5769,20 +5753,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5790,10 +5776,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b762cbf-1c07-407a-9606-54357ca568e9 - status: 404 Not Found - code: 404 - duration: 30.869125ms + - b4c4238a-dabf-4f69-aa78-4d1107979353 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 61.97987ms - id: 115 request: proto: HTTP/1.1 @@ -5809,8 +5797,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5818,22 +5806,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5841,12 +5827,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2983bb0c-896d-44da-b7f2-4bfe3cd21aad - X-Total-Count: - - "1" + - b57b68c8-22b6-41e8-be00-e833f7f8211a status: 200 OK code: 200 - duration: 55.278667ms + duration: 33.223156ms - id: 116 request: proto: HTTP/1.1 @@ -5862,8 +5846,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data method: GET response: proto: HTTP/2.0 @@ -5871,22 +5855,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5894,12 +5876,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2530c1b2-0dbb-4c40-803d-5f535138490c - X-Total-Count: - - "1" + - 0b62f4bc-6465-4dda-9268-f126bead70b1 status: 200 OK code: 200 - duration: 60.729334ms + duration: 45.630898ms - id: 117 request: proto: HTTP/1.1 @@ -5915,8 +5895,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5926,7 +5906,7 @@ interactions: trailer: {} content_length: 1098 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - "1098" @@ -5935,9 +5915,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5945,10 +5925,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d91ea653-6358-4d4b-ac1b-fb8cf2295e3d + - 6b4e6db6-2c47-468b-a35f-fa9e7bdae09c status: 200 OK code: 200 - duration: 23.324375ms + duration: 23.817165ms - id: 118 request: proto: HTTP/1.1 @@ -5964,8 +5944,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -5973,20 +5953,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5994,10 +5976,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d50142b-4de0-42fa-982b-a497242396b8 + - c3cb9d28-8089-4584-b98b-99e9d4cc6e9e + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 26.969ms + duration: 49.337754ms - id: 119 request: proto: HTTP/1.1 @@ -6013,8 +5997,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -6022,20 +6006,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:06.301516Z","id":"501b7915-d8ca-44b2-853e-9f194e1c5da3","product_resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:06.301516Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "701" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:14 GMT + - Wed, 08 Oct 2025 23:05:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6043,10 +6029,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1feac31-2b93-4f13-895e-4459508f6f24 + - 250c6f2a-7fba-492f-acd6-a9aeca41db3f + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 40.00025ms + duration: 47.78034ms - id: 120 request: proto: HTTP/1.1 @@ -6062,8 +6050,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6071,22 +6059,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6094,12 +6080,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04482b26-d0ed-4267-aa99-f95a5698a661 - X-Total-Count: - - "1" + - b78bf2ea-635a-4860-9d7a-89de7bdb41d0 status: 200 OK code: 200 - duration: 77.496084ms + duration: 31.467475ms - id: 121 request: proto: HTTP/1.1 @@ -6115,8 +6099,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6124,22 +6108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1098 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1098" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6147,12 +6129,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcfa60fb-1b3d-4fc8-a5a9-1c6e7c4c163d - X-Total-Count: - - "1" + - b68bbfb3-c992-4ab5-a990-f2a30180ef50 status: 200 OK code: 200 - duration: 80.4565ms + duration: 30.350506ms - id: 122 request: proto: HTTP/1.1 @@ -6168,8 +6148,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -6177,20 +6157,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2281 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6198,10 +6178,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca5b2fb-6887-4bff-8b5b-9c4f1b44435d + - 9b31eddb-cc17-47b4-97f9-280f031c0475 status: 200 OK code: 200 - duration: 98.521375ms + duration: 100.360259ms - id: 123 request: proto: HTTP/1.1 @@ -6217,8 +6197,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -6226,20 +6206,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 2281 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "2281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6247,10 +6227,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94cfbee3-bd05-469b-a7a5-a745f942c2e4 + - 502dcbf0-4022-4533-816f-6092ad053bda status: 200 OK code: 200 - duration: 28.524375ms + duration: 105.432273ms - id: 124 request: proto: HTTP/1.1 @@ -6266,8 +6246,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 method: GET response: proto: HTTP/2.0 @@ -6275,20 +6255,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 701 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' headers: Content-Length: - - "1098" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6296,10 +6276,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22ac650f-c960-456f-81c9-62dec8e47c9a + - 6f492e02-d3c8-48c5-999f-da72c05659f8 status: 200 OK code: 200 - duration: 24.750958ms + duration: 41.580105ms - id: 125 request: proto: HTTP/1.1 @@ -6315,8 +6295,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 method: GET response: proto: HTTP/2.0 @@ -6324,22 +6304,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 701 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6347,50 +6325,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f313c9ee-3bc7-4042-b23c-a2f10c07933e - X-Total-Count: - - "1" + - d2e3ca2d-ab3b-48d7-8e8a-456cd96d6f4a status: 200 OK code: 200 - duration: 64.508292ms + duration: 45.900267ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 357 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action","href_result":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","id":"58b7542e-2d25-4485-9787-be5871923009","progress":0,"started_at":"2025-10-08T23:05:48.246405+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:15 GMT + - Wed, 08 Oct 2025 23:05:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/58b7542e-2d25-4485-9787-be5871923009 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6398,10 +6378,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74dd24a7-4cbb-4f59-b279-5afe475a914a - status: 200 OK - code: 200 - duration: 31.904125ms + - 01e6d1c8-0b3a-44da-9a8a-a924dc0c8dc6 + status: 202 Accepted + code: 202 + duration: 183.340826ms - id: 127 request: proto: HTTP/1.1 @@ -6417,8 +6397,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -6426,20 +6406,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2259 + content_length: 2303 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:48.103542+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2259" + - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:16 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6447,48 +6427,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d479d86-1dab-4de5-abe3-24155ca62243 + - 8c6078a5-5d86-479b-920c-2de0d80f0b3b status: 200 OK code: 200 - duration: 2.139007083s + duration: 106.151235ms - id: 128 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 357 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action","href_result":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624","id":"5d81b155-9cd8-4081-a7aa-565d74a86882","progress":0,"started_at":"2025-10-08T23:05:48.495407+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:16 GMT + - Wed, 08 Oct 2025 23:05:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d81b155-9cd8-4081-a7aa-565d74a86882 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6496,10 +6480,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab373286-e9ac-4260-be99-666198aeb560 - status: 404 Not Found - code: 404 - duration: 39.074792ms + - ad70edc6-d190-4fe5-9ee9-317131c91938 + status: 202 Accepted + code: 202 + duration: 439.131295ms - id: 129 request: proto: HTTP/1.1 @@ -6515,8 +6499,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -6524,20 +6508,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2303 uncompressed: false - body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-08-06T09:42:10.271193Z","id":"ffeceaa3-1a23-43e9-9ae3-24655eb0c284","product_resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:10.271193Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:48.118544+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:16 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6545,10 +6529,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41e192cf-2a78-43b7-88b1-36b618a7545a + - bad365a8-a871-4af6-983b-9b0138ec403e status: 200 OK code: 200 - duration: 56.95375ms + duration: 108.587698ms - id: 130 request: proto: HTTP/1.1 @@ -6564,8 +6548,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -6573,20 +6557,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2437 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"402","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:51.123043+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6594,50 +6578,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b430d3d-3cc2-4bf4-94bd-ee08b6030475 + - 8c7f0e30-d13d-4b6b-b9bc-c245befe3ed5 status: 200 OK code: 200 - duration: 86.480209ms + duration: 114.336273ms - id: 131 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 353 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action","href_result":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","id":"8079de5f-9b9b-43b6-a2f7-070d88489ad5","progress":0,"started_at":"2025-10-08T23:05:53.649091+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8079de5f-9b9b-43b6-a2f7-070d88489ad5 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6645,12 +6631,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af04945d-b2a5-49b9-a3e2-cbe86335c9c0 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 73.440291ms + - a6985278-1356-49a9-9c39-ce46fbe6fbec + status: 202 Accepted + code: 202 + duration: 181.872291ms - id: 132 request: proto: HTTP/1.1 @@ -6666,8 +6650,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -6675,20 +6659,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 2437 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:50.660719+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "2437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6696,10 +6680,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7adca73-e709-4cfb-a6b1-354f302899a1 + - 2c476c4b-aea1-4fd0-a5c2-82b55777b8e6 status: 200 OK code: 200 - duration: 34.787583ms + duration: 85.075546ms - id: 133 request: proto: HTTP/1.1 @@ -6715,8 +6699,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -6724,22 +6708,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 2400 uncompressed: false - body: '{"servers":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"402","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:53.518748+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "15" + - "2400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6747,52 +6729,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8315e9f-2da5-42f2-9dea-758463bfe6a3 - X-Total-Count: - - "0" + - 90f0caee-984e-45a4-81e6-bb2abbf3afb2 status: 200 OK code: 200 - duration: 73.89925ms + duration: 113.465961ms - id: 134 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 353 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action","href_result":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624","id":"3309d571-d987-45f8-9d78-58ff0f8e53d9","progress":0,"started_at":"2025-10-08T23:05:53.908194+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "4511" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3309d571-d987-45f8-9d78-58ff0f8e53d9 Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6800,12 +6782,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 001b2994-5948-4cfb-8bee-60732fd32527 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 124.530958ms + - bd601df7-6da6-46ad-b5f6-dfbc9c2caf91 + status: 202 Accepted + code: 202 + duration: 201.788541ms - id: 135 request: proto: HTTP/1.1 @@ -6821,8 +6801,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -6830,22 +6810,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4511 + content_length: 2400 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "4511" + - "2400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6853,12 +6831,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c43a8727-7d16-4306-85a6-27373374a828 - X-Total-Count: - - "2" + - c1b94413-b0ae-4f0a-873d-ac540c270c3d status: 200 OK code: 200 - duration: 143.8155ms + duration: 132.098361ms - id: 136 request: proto: HTTP/1.1 @@ -6874,8 +6850,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c method: GET response: proto: HTTP/2.0 @@ -6883,22 +6859,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6906,12 +6880,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8221ef12-4eab-4a89-a3bf-671680a67b58 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 57.422167ms + - 696ac1ff-2da4-43c6-94b6-39019c14dae5 + status: 404 Not Found + code: 404 + duration: 56.706129ms - id: 137 request: proto: HTTP/1.1 @@ -6927,8 +6899,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics method: GET response: proto: HTTP/2.0 @@ -6936,20 +6908,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","type":"not_found"}' headers: Content-Length: - - "1098" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6957,10 +6929,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3c8beb2-4300-4108-bdd7-205170e6b11c - status: 200 OK - code: 200 - duration: 27.61025ms + - a4fa47f7-dc73-4e66-b2b6-19a6c57bdcf8 + status: 404 Not Found + code: 404 + duration: 29.886926ms - id: 138 request: proto: HTTP/1.1 @@ -6976,8 +6948,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -6985,22 +6957,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2400 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7008,12 +6978,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 102633ff-2c24-4acf-8310-1a2a5d858988 - X-Total-Count: - - "1" + - ed12072e-2630-4e08-a294-1a2d93c732a5 status: 200 OK code: 200 - duration: 72.656666ms + duration: 97.457968ms - id: 139 request: proto: HTTP/1.1 @@ -7029,8 +6997,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=07a80e6e-4ca6-4954-8010-82493fcd50e3&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -7038,20 +7006,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 2400 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:76cf:115d:d0aa:47e0/64","created_at":"2025-08-06T09:42:11.522443Z","id":"f776ec41-135d-4451-a5ec-b70312571b74","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:11.522443Z","zone":null},{"address":"172.16.80.3/22","created_at":"2025-08-06T09:42:11.388054Z","id":"0627ba54-f745-48dc-bbc9-cb164d9b7d96","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","mac_address":"02:00:00:1A:7E:89","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:11.388054Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "2400" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7059,10 +7027,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fc42bf7-142e-4a11-ba81-2a44841e5aa9 + - efffc0bc-0970-4842-81bd-bc05de39fdff status: 200 OK code: 200 - duration: 29.346708ms + duration: 101.411419ms - id: 140 request: proto: HTTP/1.1 @@ -7078,8 +7046,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 method: GET response: proto: HTTP/2.0 @@ -7087,22 +7055,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7110,12 +7076,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba50c725-6186-4e20-a5e0-d44618b15098 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 67.050541ms + - 2713bb86-6acf-40f2-8f6e-921693c67df5 + status: 404 Not Found + code: 404 + duration: 63.859316ms - id: 141 request: proto: HTTP/1.1 @@ -7131,1329 +7095,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be41bde0-7f29-473d-8c41-8d253bc13127 - status: 200 OK - code: 200 - duration: 31.898083ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8039fd9-61ab-416e-bb95-de85476ced74 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 62.8445ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ce478bdf-dc79-410f-8058-8a420cfc3f19&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:662f:6b09:bc7e:d847:b6fb/64","created_at":"2025-08-06T09:42:07.629783Z","id":"c574d872-5481-43c4-afee-b30470ab2dc6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"68fff708-be69-40c4-857e-79dee8a23675"},"tags":[],"updated_at":"2025-08-06T09:42:07.629783Z","zone":null},{"address":"172.16.80.2/22","created_at":"2025-08-06T09:42:07.526981Z","id":"9b956a99-326c-4cb3-bd2c-7b024c135a2f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","mac_address":"02:00:00:10:DF:B9","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d393c5e7-30fe-467f-af2c-19b014871ff3"},"tags":[],"updated_at":"2025-08-06T09:42:07.526981Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 574ba0b9-2bf5-46d6-97ff-7af05b70dfe2 - status: 200 OK - code: 200 - duration: 29.247125ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2259 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2259" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0233cd0d-1eb3-4dd7-846d-1fb0695faa0e - status: 200 OK - code: 200 - duration: 104.938417ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2259 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2259" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 90912b64-dab4-4634-80b8-bda68fc38204 - status: 200 OK - code: 200 - duration: 148.232334ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09503269-6fd6-4dc9-beaf-b44bbfaf2deb - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 53.657625ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3eed9595-4b57-489e-b87e-8e58950cc76d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 57.242625ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:11.127955+00:00","id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","ipam_ip_ids":["0627ba54-f745-48dc-bbc9-cb164d9b7d96","f776ec41-135d-4451-a5ec-b70312571b74"],"mac_address":"02:00:00:1a:7e:89","modification_date":"2025-08-06T09:42:11.305591+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:17 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 729b2840-02e0-491a-b11f-d685ea8ce209 - status: 200 OK - code: 200 - duration: 65.26075ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-08-06T09:42:07.266239+00:00","id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","ipam_ip_ids":["9b956a99-326c-4cb3-bd2c-7b024c135a2f","c574d872-5481-43c4-afee-b30470ab2dc6"],"mac_address":"02:00:00:10:df:b9","modification_date":"2025-08-06T09:42:07.444397+00:00","private_network_id":"a9ac0627-0a4a-4746-a83f-d272164e5d8d","server_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 239ffa90-7579-47d2-b5ea-0c25f11eff47 - status: 200 OK - code: 200 - duration: 68.333917ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3dbeaf9a-2326-4155-bd99-b8c7bbdd50a8 - status: 204 No Content - code: 204 - duration: 232.921625ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60/private_nics/07a80e6e-4ca6-4954-8010-82493fcd50e3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"07a80e6e-4ca6-4954-8010-82493fcd50e3","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae0cce7e-cf40-4db1-b4fd-8fbe40045398 - status: 404 Not Found - code: 404 - duration: 55.145583ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fbc8a168-6c17-4988-997b-fb077171e549 - status: 204 No Content - code: 204 - duration: 270.545792ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6/private_nics/ce478bdf-dc79-410f-8058-8a420cfc3f19 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"ce478bdf-dc79-410f-8058-8a420cfc3f19","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 337bd008-ffdf-4e01-9ba4-d309da43f988 - status: 404 Not Found - code: 404 - duration: 64.537458ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1801 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:10.136785+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:9b","maintenances":[],"modification_date":"2025-08-06T09:42:10.136785+00:00","name":"tf-server-datasource-private-ips-1","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"8689827c-824b-4290-b07d-0f22ae394eb4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1801" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0f4747ff-cdac-4c3b-9938-f1508bed4348 - status: 200 OK - code: 200 - duration: 129.001625ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1801 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-08-06T09:42:06.178673+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:cc:99","maintenances":[],"modification_date":"2025-08-06T09:42:06.178673+00:00","name":"tf-server-datasource-private-ips-0","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"20471727-9291-474c-a0de-5c0e7637406e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1801" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc6f0526-99a2-4275-8746-8097ac9cc65e - status: 200 OK - code: 200 - duration: 122.013459ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99167d22-3175-4c19-988c-88deb5e0d74e - status: 204 No Content - code: 204 - duration: 338.362458ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 611e524a-25c7-479d-a312-6a5fe050e225 - status: 404 Not Found - code: 404 - duration: 75.504958ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8689827c-824b-4290-b07d-0f22ae394eb4","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 82868276-2471-4453-89ff-c99d3ae2202f - status: 404 Not Found - code: 404 - duration: 27.916667ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-08-06T09:42:10.271193Z","id":"8689827c-824b-4290-b07d-0f22ae394eb4","last_detached_at":"2025-08-06T09:42:18.670904Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:18.670904Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c6f9de9f-ba87-41c9-a7ee-ab3bf0c07b56 - status: 200 OK - code: 200 - duration: 47.796125ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9695d1bf-ed08-4526-bf62-7101990a1e25 - status: 204 No Content - code: 204 - duration: 459.032041ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8689827c-824b-4290-b07d-0f22ae394eb4 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:18 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a092129-405e-43e7-8307-63524fb46da5 - status: 204 No Content - code: 204 - duration: 84.549583ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bfb968d0-eb0c-4d8e-b79a-ba52fa4f2a56 - status: 404 Not Found - code: 404 - duration: 103.987833ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"20471727-9291-474c-a0de-5c0e7637406e","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d83d75d5-53e3-4dad-ad7f-c707a8ba592a - status: 404 Not Found - code: 404 - duration: 42.828167ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-08-06T09:42:06.301516Z","id":"20471727-9291-474c-a0de-5c0e7637406e","last_detached_at":"2025-08-06T09:42:18.994737Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-06T09:42:18.994737Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30879953-69bf-4de8-9016-4548dd1fee36 - status: 200 OK - code: 200 - duration: 48.594208ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20471727-9291-474c-a0de-5c0e7637406e - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:19 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 51d729b0-1c22-474d-96f8-1e6b9fb54eeb - status: 204 No Content - code: 204 - duration: 75.388792ms - - id: 166 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9ac0627-0a4a-4746-a83f-d272164e5d8d - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 295836d0-96eb-45aa-9593-d47ae4d53297 - status: 204 No Content - code: 204 - duration: 1.45401275s - - id: 167 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de38618-b64d-459a-8fc2-2ab8b94557b6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de38618-b64d-459a-8fc2-2ab8b94557b6","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 06 Aug 2025 09:42:20 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74cb79b7-588c-4bf2-97dd-af19914d1f90 - status: 404 Not Found - code: 404 - duration: 65.414958ms - - id: 168 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c32feac-fb4d-45e1-ad89-0ce9a9101d60 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics method: GET response: proto: HTTP/2.0 @@ -8463,7 +7106,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c32feac-fb4d-45e1-ad89-0ce9a9101d60","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","type":"not_found"}' headers: Content-Length: - "143" @@ -8472,9 +7115,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 06 Aug 2025 09:42:20 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8482,7 +7125,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bbc828c-d133-48c8-aaf5-fc439deb4f62 + - 19ca650a-df5d-4c83-8f3e-66d939c7fd82 status: 404 Not Found code: 404 - duration: 79.822042ms + duration: 27.923929ms diff --git a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml index f35377ec9..52987f649 100644 --- a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:11:11 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,225 +48,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9d96d64-f879-4c7c-ab47-c4798eb6b71c + - 29933860-b6d1-4cf6-9b07-70359ecd58e8 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 197.735874ms + duration: 43.886871ms - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39208 - uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' - headers: - Content-Length: - - "39208" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a52fbdb3-d545-45a0-9ea4-29f49c314149 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 198.033978ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39208 - uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' - headers: - Content-Length: - - "39208" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74fc469f-c935-4f35-a756-b67c9450949b - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 293.241697ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 19730 - uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' - headers: - Content-Length: - - "19730" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 36a76cf3-f8fe-43d4-9609-0617383900f3 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 105.800402ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 19730 - uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' - headers: - Content-Length: - - "19730" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c3828156-540c-41ff-939b-9ca85fa9fca0 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 101.296722ms - - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -301,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:11:11 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -313,13 +101,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cb07e74-de86-432b-a86e-d809154dae26 + - 46ebc1bd-fe68-4105-b685-4a395c1f94b0 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 105.754975ms - - id: 6 + duration: 173.943449ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -354,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:11:11 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -364,226 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c218b6ba-3ed5-4788-9414-03ef401f199e + - 1139e47e-451e-4adb-8c8f-22032012098c status: 200 OK code: 200 - duration: 59.212446ms - - id: 7 + duration: 67.972643ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 274 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2147573d-e72e-4044-b2c7-4042d85aa3a0 - status: 200 OK - code: 200 - duration: 59.411994ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0216eb97-35b6-4036-a279-6e3c22448a33 - status: 200 OK - code: 200 - duration: 64.462769ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 282 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-interesting-sanderson","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2178" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cad585ae-89e6-4e90-9a5b-b490afa7941c - status: 201 Created - code: 201 - duration: 434.462003ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 277 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-amazing-driscoll","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2163 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2163" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43fe15d4-27c2-4ccb-9e36-b745645b1cff - status: 201 Created - code: 201 - duration: 442.560615ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 274 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-epic-brattain","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-stoic-ganguly","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: @@ -598,3727 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8cf65f30-c70b-4733-9569-192205f4ebb3 - status: 201 Created - code: 201 - duration: 452.104328ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2178" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98197ccb-4953-4f10-ba7a-504edbd3d642 - status: 200 OK - code: 200 - duration: 115.287402ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2163 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2163" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 33da2753-aa2e-4e6a-a647-b41be87b3fce - status: 200 OK - code: 200 - duration: 103.283483ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2154 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7a3e088e-f1ca-4d0a-a9f0-7b93edd52c8d - status: 200 OK - code: 200 - duration: 101.903069ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2163 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.039313+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2163" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5c5ea44-bfff-48a6-b01c-f39913bd5b24 - status: 200 OK - code: 200 - duration: 87.990476ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2154 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.035555+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2154" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 058551ac-b29d-40d7-96a1-fcad4646402b - status: 200 OK - code: 200 - duration: 84.537458ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2178 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.006735+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2178" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a14b1b85-bfd6-4a12-8cbb-f658200b356a - status: 200 OK - code: 200 - duration: 95.335123ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action","href_result":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305","id":"0c64c08d-5c26-425c-867f-4fe326419538","progress":0,"started_at":"2025-10-08T22:11:12.671238+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0c64c08d-5c26-425c-867f-4fe326419538 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7211a99a-05a5-430b-bbd6-21cf08a79b1f - status: 202 Accepted - code: 202 - duration: 218.473569ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action","href_result":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","id":"eb45eb22-58a6-4995-88e4-57990defc5d8","progress":0,"started_at":"2025-10-08T22:11:12.719686+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eb45eb22-58a6-4995-88e4-57990defc5d8 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ac903d6-69b8-4226-b7c5-3f3cbf67c315 - status: 202 Accepted - code: 202 - duration: 266.383004ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2176 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2176" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 35541a5b-a78f-40db-a892-881dfe1ca2d4 - status: 200 OK - code: 200 - duration: 100.929034ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2185 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2185" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f666e1ae-7017-4459-9ab3-e4aa87a91649 - status: 200 OK - code: 200 - duration: 89.500065ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action","href_result":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413","id":"2ffd453e-7322-4e32-a8f0-c46e3db788ee","progress":0,"started_at":"2025-10-08T22:11:12.881913+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2ffd453e-7322-4e32-a8f0-c46e3db788ee - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e2037d1c-ea07-4019-92a3-017a0312bd8e - status: 202 Accepted - code: 202 - duration: 419.036626ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2200 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2200" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b19e75f5-73bb-4c05-bcc9-8910384ce09f - status: 200 OK - code: 200 - duration: 100.251085ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2280 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2280" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 924d0268-c182-45c0-a6f4-f3f1606172ca - status: 200 OK - code: 200 - duration: 89.749265ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be108307-fe05-4073-bb21-1ba78a4071a4 - status: 200 OK - code: 200 - duration: 102.274881ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2303" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff36d202-be7f-4432-a115-d3fd482b4f3a - status: 200 OK - code: 200 - duration: 91.372631ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2280 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2280" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 528702fa-cfd0-4e3f-9663-1abdd9efbd12 - status: 200 OK - code: 200 - duration: 99.946902ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 43bd463e-d4e3-4147-a830-bd1e712aca54 - status: 200 OK - code: 200 - duration: 90.252317ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2303 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:12.518729+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2303" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 341f159f-c213-454b-9b4b-367528bdbf7b - status: 200 OK - code: 200 - duration: 262.44417ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2280 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:12.517436+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2280" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce1a7132-8fae-499b-b2cf-14a5559f872a - status: 200 OK - code: 200 - duration: 89.295854ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:12.518406+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 94deaf08-e833-4571-a568-31b6f08a0f92 - status: 200 OK - code: 200 - duration: 97.933414ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5709ac1-de9c-4abb-9e5a-fcccc0535af1 - status: 200 OK - code: 200 - duration: 87.963642ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2334 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0200ccc1-b59d-4d71-a848-9d2112dba4c5 - status: 200 OK - code: 200 - duration: 100.892826ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 528 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:12.006735+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "528" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8d95d5c6-4398-47aa-85f6-4aab15860f8a - status: 200 OK - code: 200 - duration: 55.453841ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 06c787d3-362f-440d-8f26-e844d0a5f487 - status: 200 OK - code: 200 - duration: 52.243066ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:28 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9870b0d-3040-4c17-a351-e915298e6ea9 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 58.717456ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 137 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-affectionate-jones","volume_id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 850 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed","id":"b69e3005-9fe4-4669-8bad-fa5a4cb3d784","progress":0,"started_at":"2025-10-08T22:11:28.998396+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "850" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 539be7cd-9ed6-451f-9dc9-ff3373244a53 - status: 201 Created - code: 201 - duration: 361.457463ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 463c0fc6-c589-4079-8ebf-16f68ddc1da6 - status: 200 OK - code: 200 - duration: 59.817003ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2311 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2311" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c008e470-fd9e-4803-818c-f9c088f68d27 - status: 200 OK - code: 200 - duration: 84.557805ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2319" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc00eed4-c7c7-4ad6-a96e-e39293091fae - status: 200 OK - code: 200 - duration: 101.264316ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2311 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2311" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dffe61e3-e319-4e57-823d-626713ec5fc3 - status: 200 OK - code: 200 - duration: 83.772206ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 520 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:11:12.035555+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3ecb4d82-616e-4020-a842-89b108e02447 - status: 200 OK - code: 200 - duration: 58.347803ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2319 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2319" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c64c239d-146e-40c1-9615-c42df45a6a82 - status: 200 OK - code: 200 - duration: 99.749563ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2638f751-6a36-48ee-a9f5-d3beaa4db883 - status: 200 OK - code: 200 - duration: 51.443175ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:11:12.039313+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "523" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e42750be-86b7-4d60-b8f0-fd7711afb9fe - status: 200 OK - code: 200 - duration: 57.222733ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fde323bd-343c-4d04-810d-3083e0deb8a0 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 62.913864ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc272274-e5e5-4f15-918e-a54949cc1e41 - status: 200 OK - code: 200 - duration: 56.639104ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24b5a7f6-137c-4786-bc19-9ad3ca5620e8 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 51.282773ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 132 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-musing-joliot","volume_id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 845 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00","id":"a4612954-bdb1-4d94-8baf-acccfc8903b7","progress":0,"started_at":"2025-10-08T22:11:33.716774+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "845" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 58196732-06d4-4f0f-b5e2-926d394e2283 - status: 201 Created - code: 201 - duration: 378.063968ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78686c7c-f560-4911-91cd-06e725780806 - status: 200 OK - code: 200 - duration: 63.059518ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 131 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-snap-eager-beaver","volume_id":"765d8905-fd5d-4f27-812a-083baa39625e","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 844 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc","id":"0dd7e395-6ae4-4255-8bc5-dedd3fb50b6c","progress":0,"started_at":"2025-10-08T22:11:33.849440+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "844" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad626384-5f49-433d-8051-5d3980d3ac7a - status: 201 Created - code: 201 - duration: 649.268697ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54e7e29d-dee8-4748-b37d-e9a0ae9c57e7 - status: 200 OK - code: 200 - duration: 59.307385ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 122cd75c-08cf-4c65-b0c0-25a65bcc6de7 - status: 200 OK - code: 200 - duration: 72.880177ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae31acd0-8a4e-4752-924e-9dc33e442710 - status: 200 OK - code: 200 - duration: 124.159887ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 503e2273-5d4a-4ca9-8fe9-cd4db3885880 - status: 200 OK - code: 200 - duration: 55.19149ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec773dab-33fd-48f2-bc66-20a04dcf621b - status: 200 OK - code: 200 - duration: 82.061539ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5470cb6-a76b-495d-9d8b-d58ab1a40248 - status: 200 OK - code: 200 - duration: 58.511268ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59282526-9bd3-4d3a-99e4-03161c2e54ee - status: 200 OK - code: 200 - duration: 62.16256ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 662c6411-bb39-4e51-88af-cb2f7fc023aa - status: 200 OK - code: 200 - duration: 53.010431ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 22d58757-6464-47c8-a2f3-45d91898ecc5 - status: 200 OK - code: 200 - duration: 56.713572ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d05bcf0-d6ea-4a08-b242-1b2c83a2e435 - status: 200 OK - code: 200 - duration: 72.997102ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - abd30ddb-ffea-403f-ad5a-1056897ef7b9 - status: 200 OK - code: 200 - duration: 69.578613ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 967b5b88-68df-4d60-a8bf-be2ff2027041 - status: 200 OK - code: 200 - duration: 79.677837ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 00fa2ea1-3a25-45e2-9cfd-a76b8ed057ad - status: 200 OK - code: 200 - duration: 60.197141ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e3b710e-60a7-4d4d-ae11-fcdd5a92e549 - status: 200 OK - code: 200 - duration: 49.226465ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09233edc-f40b-48f5-94a5-f02fc5c80fff - status: 200 OK - code: 200 - duration: 52.093831ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d098c1fc-b5d1-4e35-93bb-b907ce0a3571 - status: 200 OK - code: 200 - duration: 53.589543ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 539 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:28.794005+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "539" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:11:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0cb9f65d-f3a4-4ebb-a1fb-69e1b7a7c915 - status: 200 OK - code: 200 - duration: 56.865432ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b39f1be-23d3-4bd8-bbf5-4992718495a8 - status: 200 OK - code: 200 - duration: 55.273385ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32ea1d6a-9a71-4c8a-812e-b3a98c20fa39 - status: 200 OK - code: 200 - duration: 64.67222ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9587b360-1125-4c9d-bf32-d332068f904f - status: 200 OK - code: 200 - duration: 59.761646ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 536 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "536" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f09ee483-fa1b-4370-b373-8e4f36bd443c - status: 200 OK - code: 200 - duration: 58.435555ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3118507-ceca-487c-98e4-3b9d52bd568e - status: 200 OK - code: 200 - duration: 60.835197ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 117c812d-4cd1-4f77-92b2-1b79b5da6253 - status: 200 OK - code: 200 - duration: 64.294488ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1523a53e-310c-4ab7-a5c5-e4d52bf58ece - status: 200 OK - code: 200 - duration: 68.168156ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:14 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 57d1e809-c070-48b9-8cbc-2c6720932c83 - status: 200 OK - code: 200 - duration: 59.519753ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5df8a16a-d98c-427f-b094-6ae9eda8aeca - status: 200 OK - code: 200 - duration: 58.017618ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 956395b5-cd65-4df6-aa9d-888af75df9e5 - status: 200 OK - code: 200 - duration: 66.683981ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 29a2a15c-3134-4445-b4a7-3c3429164435 - status: 200 OK - code: 200 - duration: 63.914145ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:24 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6c444d75-c0af-47b7-a6ca-321844ed1978 - status: 200 OK - code: 200 - duration: 67.145024ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 534 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:11:33.523961+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "534" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e884242-c21b-488d-8495-1283896e3702 - status: 200 OK - code: 200 - duration: 81.291105ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:29 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8f3b1ad1-9226-4075-ba1a-13ac482d200b - status: 200 OK - code: 200 - duration: 60.299657ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea57ce0f-5330-4fee-b9fe-2d6713bdba34 - status: 200 OK - code: 200 - duration: 56.180321ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 531 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "531" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a05f50cd-b39a-4717-a28e-23bbce723afc - status: 200 OK - code: 200 - duration: 57.128448ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "533" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 22:12:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59bd4827-2065-490e-b856-33e1ac3ebbb9 - status: 200 OK - code: 200 - duration: 51.451651ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 533 + content_length: 2154 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:12:40 GMT + - Wed, 08 Oct 2025 23:05:37 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4326,11 +205,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f57df46-66ba-47ae-ba43-3b8b1dd55bfd - status: 200 OK - code: 200 - duration: 53.392247ms - - id: 87 + - eb43723c-8b45-4111-914a-6f18d18f22ef + status: 201 Created + code: 201 + duration: 344.507938ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -4346,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4354,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2154 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:12:45 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4375,11 +254,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e455432-2d94-4c63-8e7c-fbf9d1166eb4 + - 496bb55a-3159-4255-bfcb-5e32a05dbeaa status: 200 OK code: 200 - duration: 56.619593ms - - id: 88 + duration: 103.573144ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -4395,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4403,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2154 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:12:50 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4424,48 +303,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6f7a347-4351-4308-8241-2449bb675625 + - a6a53b81-4626-443b-bd36-019540b213de status: 200 OK code: 200 - duration: 69.083929ms - - id: 89 + duration: 90.605816ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action","href_result":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f","id":"eb161338-a4b8-4018-80b6-10398006995a","progress":0,"started_at":"2025-10-08T23:05:38.020262+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:12:55 GMT + - Wed, 08 Oct 2025 23:05:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eb161338-a4b8-4018-80b6-10398006995a Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4473,11 +356,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bea44187-8f8c-4677-b977-ea6245d71427 - status: 200 OK - code: 200 - duration: 51.292202ms - - id: 90 + - fcc8c5a3-3de1-4976-a88a-61982f9ce4ba + status: 202 Accepted + code: 202 + duration: 218.453162ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -4493,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4501,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2176 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.843651+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:00 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4522,11 +405,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c3e002-0e68-4ab0-8db2-1941ba781ac4 + - ed0d72d6-719a-4c16-9ab2-d5964e999cce status: 200 OK code: 200 - duration: 52.146072ms - - id: 91 + duration: 70.657436ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -4542,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4550,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2280 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.843651+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:05 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4571,11 +454,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59bc61d2-5ad3-4204-ac4a-bfa838f3df02 + - 6ebd9061-c64f-4621-987e-e93730304c4d status: 200 OK code: 200 - duration: 55.522794ms - - id: 92 + duration: 100.41411ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -4591,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4599,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2311 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:10 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4620,11 +503,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15bc497b-c9e5-4102-b441-0a4e7448881a + - 499e574e-9608-4f68-ab21-eab1f37b9666 status: 200 OK code: 200 - duration: 54.196397ms - - id: 93 + duration: 83.446801ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -4640,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -4648,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 2311 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:11:33.577386+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "533" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:15 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4669,11 +552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b702b46-9509-4805-a64a-d5694b00442c + - e8ecc051-560d-4a86-abe7-6a7bbb5acef2 status: 200 OK code: 200 - duration: 69.911439ms - - id: 94 + duration: 99.97713ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -4689,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -4697,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 520 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:20 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4718,11 +601,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9446e8-fdfa-4c57-abfb-5fca3e9508d6 + - 12c56c66-7de1-47ba-baff-7517b580db34 status: 200 OK code: 200 - duration: 55.836022ms - - id: 95 + duration: 57.134294ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -4738,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -4746,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "530" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:20 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4767,11 +650,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dca613a1-709c-4b24-9670-8d6a99be9abd + - b0ea4acf-001c-415b-8e05-c9bbfbf9c2b4 status: 200 OK code: 200 - duration: 58.854185ms - - id: 96 + duration: 50.182458ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -4787,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics method: GET response: proto: HTTP/2.0 @@ -4795,20 +678,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2311" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:20 GMT + - Wed, 08 Oct 2025 23:05:48 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4816,48 +701,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a532512-387c-4f26-86e8-c6852efe281b + - b9f77970-721d-4234-85f1-387bb715b34c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 80.855693ms - - id: 97 + duration: 58.509803ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 140 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-charming-grothendieck","volume_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 853 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb","id":"b0d964c6-284f-475e-a240-e25f1e84f930","progress":0,"started_at":"2025-10-08T23:05:48.850535+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "853" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:20 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4865,11 +754,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4200283-0dd9-45ee-9a4e-06191aa5ff2a - status: 200 OK - code: 200 - duration: 92.672628ms - - id: 98 + - 0dd0ac67-bb0a-4e7c-8128-ef3fb3cdae9f + status: 201 Created + code: 201 + duration: 374.362699ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -4885,7 +774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -4893,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 542 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:20 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4914,11 +803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 954e5c90-fe88-4fa4-91d8-c247f6b0582a + - 3055d0f8-0ed5-4584-94f9-21dc015654ff status: 200 OK code: 200 - duration: 87.21722ms - - id: 99 + duration: 58.907138ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -4934,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -4942,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 542 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "531" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4963,11 +852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa31c2a4-66c0-432f-aabb-3fe96c40cd50 + - 42993889-be2e-4585-bc52-3a5741121688 status: 200 OK code: 200 - duration: 75.003174ms - - id: 100 + duration: 58.571756ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -4983,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -4991,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 542 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:05:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5012,11 +901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cf7f5c3-ccf5-4a07-b773-2de0483acfed + - 7082a0c2-666a-4571-bd57-4d289e397d96 status: 200 OK code: 200 - duration: 57.796995ms - - id: 101 + duration: 57.673962ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -5032,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5040,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 542 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5061,11 +950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f57483c-a6dd-4194-95d9-90bdeb1468d8 + - ddfbc666-5e4c-4ce3-bdb2-1a6184f46f73 status: 200 OK code: 200 - duration: 55.454575ms - - id: 102 + duration: 51.321535ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -5081,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5089,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 542 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5110,11 +999,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4930b310-d674-4bb3-8c6b-580b5d1e9ce8 + - 6d8f17a7-1d9e-4246-897c-8f4d3df68923 status: 200 OK code: 200 - duration: 100.909783ms - - id: 103 + duration: 56.544217ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -5130,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5138,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 542 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5159,11 +1048,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16678f2f-ab22-4894-8fdf-43875c89c82d + - 02061df0-e9b0-443c-934e-d82aabf9ec18 status: 200 OK code: 200 - duration: 102.518855ms - - id: 104 + duration: 55.080294ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5187,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 542 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5208,11 +1097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc57fbf4-8426-40f2-86e0-e87bb90dfca0 + - d7bb047e-a9f1-4402-9b0a-ca4bf942d023 status: 200 OK code: 200 - duration: 104.060992ms - - id: 105 + duration: 56.183236ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -5228,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5236,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 542 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5257,11 +1146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ed9af2f-1443-4829-a5f2-58dc490a814b + - 89a074c6-9a95-44e9-b4e7-68032be5c6aa status: 200 OK code: 200 - duration: 51.540223ms - - id: 106 + duration: 52.408414ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -5277,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5285,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 542 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5306,11 +1195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b0967a-9c3a-4f36-84dc-1410aad5a0eb + - 0608fe4c-ace4-42ee-8345-d03b62e9ee6f status: 200 OK code: 200 - duration: 67.761808ms - - id: 107 + duration: 49.538397ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -5326,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5334,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 542 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "528" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5355,11 +1244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee73fdfa-277f-4f35-8e36-8f5cd3ef2d29 + - ccf987d9-640f-4abf-8d04-636879c4258b status: 200 OK code: 200 - duration: 66.936378ms - - id: 108 + duration: 58.757561ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -5375,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5383,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 542 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5404,11 +1293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d1d7fcd-b20b-4e8f-8533-27d1028ebe74 + - bef75de1-7a0a-46d4-9a4f-d5f1ade8a75b status: 200 OK code: 200 - duration: 59.227536ms - - id: 109 + duration: 50.78832ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -5424,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5432,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 539 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5453,11 +1342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e476c3a3-0abc-4e4d-a43c-e14fa86530ae + - 9452769e-030a-433b-98f3-a3e678f1bd5a status: 200 OK code: 200 - duration: 58.570048ms - - id: 110 + duration: 61.637712ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -5473,7 +1362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5481,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 539 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5502,11 +1391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef91b4c4-138f-415e-bd43-f3ea94467860 + - 6a7a316e-2a9c-4027-922e-4da9221cf237 status: 200 OK code: 200 - duration: 66.188543ms - - id: 111 + duration: 54.554835ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -5522,7 +1411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -5530,22 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2311 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5553,13 +1440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9622aa58-a719-4c01-bb28-10f3ad1647e7 - X-Total-Count: - - "0" + - 09c9e243-7668-49c5-8147-41feff210e3b status: 200 OK code: 200 - duration: 58.524453ms - - id: 112 + duration: 93.94746ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -5575,7 +1460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5583,22 +1468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 539 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5606,13 +1489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef6236ad-78c4-4b8d-ba0a-a203be5cecf6 - X-Total-Count: - - "0" + - 2b1cc327-3cc1-4f1f-941b-70edd401927a status: 200 OK code: 200 - duration: 52.669184ms - - id: 113 + duration: 56.500899ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -5628,7 +1509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -5636,22 +1517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2311 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5659,13 +1538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16cf3721-1971-465e-818c-19396011c8f5 - X-Total-Count: - - "0" + - 8e5aee01-2a18-4c3d-9a67-0169de5c2072 status: 200 OK code: 200 - duration: 54.079106ms - - id: 114 + duration: 84.088842ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -5681,7 +1558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -5689,20 +1566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 520 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5710,11 +1587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 850e1176-9e9b-4093-8f73-038073cc3f86 + - 566e31f3-e542-4e45-8529-b232de55817a status: 200 OK code: 200 - duration: 59.949773ms - - id: 115 + duration: 52.872879ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -5730,7 +1607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -5738,20 +1615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "536" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5759,11 +1636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 571d0851-1ed5-4b28-81fa-00ee7673caa8 + - 1913808a-185a-4492-b8f7-23fa33227334 status: 200 OK code: 200 - duration: 53.657105ms - - id: 116 + duration: 47.627666ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -5779,7 +1656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics method: GET response: proto: HTTP/2.0 @@ -5787,20 +1664,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "531" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:21 GMT + - Wed, 08 Oct 2025 23:06:45 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5808,11 +1687,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29e30e05-e414-4f9a-a74c-beb844270630 + - e90d4b95-d1e6-41fc-82a9-a189188a713e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 70.08959ms - - id: 117 + duration: 52.514657ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -5828,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -5836,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 539 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5857,11 +1738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc7cfc3-3898-4d5a-bb63-f33811a8966c + - dc49ad1a-8eb9-44d4-8583-13e15c84dd08 status: 200 OK code: 200 - duration: 85.237398ms - - id: 118 + duration: 58.572105ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -5877,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -5887,7 +1768,7 @@ interactions: trailer: {} content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2311" @@ -5896,9 +1777,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5906,11 +1787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2087f69d-cd5a-46e4-9341-10bec0e73293 + - e3a4dd6e-1548-4c84-9269-3df00f4a5699 status: 200 OK code: 200 - duration: 86.014588ms - - id: 119 + duration: 80.271722ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -5926,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -5934,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5955,11 +1836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e77bad32-8dd1-47ae-8aa5-6a5e893ab07c + - 5ee0625f-1a44-4fff-a4f5-22ca98f67455 status: 200 OK code: 200 - duration: 98.302773ms - - id: 120 + duration: 55.971669ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -5975,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -5983,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "520" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6004,11 +1885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ac6cab0-db6f-4ad5-aaaf-7186104b940f + - f168419b-ad0a-4ace-8387-3a79a706d930 status: 200 OK code: 200 - duration: 62.665905ms - - id: 121 + duration: 76.85779ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -6024,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics method: GET response: proto: HTTP/2.0 @@ -6032,20 +1913,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "528" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6053,11 +1936,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da7eef15-16e4-4cdc-96a6-2c9e035a9ab8 + - d087b941-fa59-449f-bab8-db3a40a771e9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 56.511042ms - - id: 122 + duration: 58.941619ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -6073,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -6081,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 539 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6102,11 +1987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42b305c6-f0fc-45a0-8c08-71028501a04f + - 5e7e579f-ad29-49c8-9c9f-c6be137030cc status: 200 OK code: 200 - duration: 68.924419ms - - id: 123 + duration: 55.7019ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -6122,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -6130,20 +2015,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 39208 uncompressed: false - body: '{"user_data":[]}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "17" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:46 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6151,11 +2038,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d02dbc14-9e29-4dd1-83a4-95c24c19f651 + - 596e6720-3c14-44b2-9504-4655201ac1cd + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 58.493585ms - - id: 124 + duration: 52.277998ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -6171,7 +2060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -6179,20 +2068,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 19730 uncompressed: false - body: '{"user_data":[]}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "17" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:46 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6200,11 +2091,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 436f8254-c5a6-4a8a-a203-337611904174 + - 73acdd86-daa3-409b-aa63-dffb4e92fb9f + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 52.801149ms - - id: 125 + duration: 44.995812ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -6220,7 +2113,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -6228,20 +2121,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "17" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6249,50 +2142,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d05ece57-5041-4f67-abb5-77553142367d + - 61ae82eb-7a2c-40d1-926b-de88d606c55c status: 200 OK code: 200 - duration: 63.820975ms - - id: 126 + duration: 113.915309ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 273 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-stoic-golick","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2151 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6300,13 +2195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4f8517f-311a-4dda-958c-af461ff28d2a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 58.740021ms - - id: 127 + - 8f5f96df-1e60-4a0b-a983-8a7f7bc35ae6 + status: 201 Created + code: 201 + duration: 423.248659ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -6322,7 +2215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -6330,22 +2223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2151 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6353,13 +2244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9324352b-0f5c-45e8-9cae-f28cc2ba6115 - X-Total-Count: - - "0" + - d4e322d9-9ecb-41e9-96a1-f5b9fbfa7514 status: 200 OK code: 200 - duration: 59.20923ms - - id: 128 + duration: 88.863323ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -6375,7 +2264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -6383,22 +2272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2151 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6406,50 +2293,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89edb5ad-b326-4bf8-853c-7d900f225f58 - X-Total-Count: - - "0" + - 364c3af1-ec55-4d2b-85d2-e63a4673ec07 status: 200 OK code: 200 - duration: 48.910842ms - - id: 129 + duration: 106.292923ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 530 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"tf-snap-eager-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action","href_result":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","id":"8e3232ca-ae07-4850-b28f-0879c624c8ba","progress":0,"started_at":"2025-10-08T23:06:47.083109+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "530" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8e3232ca-ae07-4850-b28f-0879c624c8ba Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6457,11 +2346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 993fa844-1149-4d38-b56b-1843f3a0e72c - status: 200 OK - code: 200 - duration: 51.20403ms - - id: 130 + - 14bfce89-f90d-4b74-aad0-119269b4dfe3 + status: 202 Accepted + code: 202 + duration: 263.833295ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -6477,7 +2366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -6485,20 +2374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 2173 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"tf-snap-musing-joliot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.870852+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "531" + - "2173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6506,11 +2395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa24db7f-70f6-4c01-b150-0b97cfc955a3 + - 6209710f-9ff7-40df-93f1-4109a0834ff3 status: 200 OK code: 200 - duration: 60.686868ms - - id: 131 + duration: 81.585595ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -6526,7 +2415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -6534,20 +2423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 2277 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"tf-snap-affectionate-jones","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.870852+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "536" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6555,50 +2444,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfe7d7cd-2281-46ad-a542-a39df0f39506 + - 25e80a71-d799-48b8-9481-931aa6032833 status: 200 OK code: 200 - duration: 60.554853ms - - id: 132 + duration: 93.403529ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"snap02","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 2308 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6606,50 +2493,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e723d00-a777-4c0e-a024-a9dc9ec32dec + - c2ceb4c4-7612-4fba-963f-4610471306d0 status: 200 OK code: 200 - duration: 74.385116ms - - id: 133 + duration: 87.83755ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"snap03","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 2308 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6657,50 +2542,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f625c04-8dbc-4dd8-a295-591d327daa04 + - 0bfe448a-bf30-494f-a0c8-0ab5481ba8c8 status: 200 OK code: 200 - duration: 75.824973ms - - id: 134 + duration: 93.309874ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 27 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"snap01","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 519 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6708,11 +2591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b4ff11f-d908-438a-afa5-f5b4dd73c229 + - 83e39613-8a90-4144-879b-37609bd0faf1 status: 200 OK code: 200 - duration: 76.966888ms - - id: 135 + duration: 51.429234ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -6728,7 +2611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data method: GET response: proto: HTTP/2.0 @@ -6736,20 +2619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "516" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6757,11 +2640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85b6eeb2-7f0a-4651-a6f3-bac55a113e9b + - 65f5e49b-d1d7-4fef-a319-db1995986156 status: 200 OK code: 200 - duration: 54.660313ms - - id: 136 + duration: 50.667002ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -6777,7 +2660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics method: GET response: proto: HTTP/2.0 @@ -6785,20 +2668,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "516" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:57 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6806,48 +2691,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bf72118-6030-4ea2-b186-bf0de84dd848 + - 08c66c4d-9527-484a-a721-239315cf9047 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 55.375538ms - - id: 137 + duration: 59.014161ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 130 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-cocky-curie","volume_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 843 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","id":"7f632b09-1918-4329-abe0-25535a13447d","progress":0,"started_at":"2025-10-08T23:06:57.929633+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "843" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6855,52 +2744,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9079c75-dfe3-4de4-98ac-159ee289718e - status: 200 OK - code: 200 - duration: 68.742913ms - - id: 138 + - 5b972973-5b46-414b-a666-e14d8a382682 + status: 201 Created + code: 201 + duration: 381.604629ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 286 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-determined-wing","root_volume":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","arch":"x86_64","extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 532 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6908,11 +2793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e0669b5-7a40-4f5a-a0b9-f945fe74e821 - status: 201 Created - code: 201 - duration: 206.291715ms - - id: 139 + - 72474800-5f7f-4d56-a860-6e3baa94c871 + status: 200 OK + code: 200 + duration: 63.237852ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -6928,7 +2813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -6936,20 +2821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 532 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:22 GMT + - Wed, 08 Oct 2025 23:07:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6957,11 +2842,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc8d51aa-ce4c-4f65-a7c9-020e31dc412d + - 03c2587e-ebf8-4c57-96ca-e220228ac39f status: 200 OK code: 200 - duration: 80.802775ms - - id: 140 + duration: 60.840091ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -6977,7 +2862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -6985,20 +2870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 532 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7006,11 +2891,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbe094b0-e65a-4f35-8844-eb1f99dfd5f4 + - 207a43a8-237d-4153-9e50-e1e68f09bda3 status: 200 OK code: 200 - duration: 93.009162ms - - id: 141 + duration: 60.175659ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -7026,7 +2911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7034,20 +2919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 532 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7055,11 +2940,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a734b470-de4d-4da5-bd57-f750cbec7273 + - 7bcb34f6-7045-4843-8a11-2f73c4c34a08 status: 200 OK code: 200 - duration: 50.93328ms - - id: 142 + duration: 52.537433ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -7075,7 +2960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7083,20 +2968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 532 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7104,11 +2989,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 252e3fd8-e1d3-46bc-8f19-7ee5b7899a55 + - 113760c2-ce17-4ef4-8507-55008fc21480 status: 200 OK code: 200 - duration: 55.315758ms - - id: 143 + duration: 73.575562ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -7124,7 +3009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7132,20 +3017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 532 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7153,11 +3038,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ae47a0-4a7c-4ac4-baf7-fb384fbc5243 + - 6f981aaf-639f-4e44-97b9-630a66bbd3a8 status: 200 OK code: 200 - duration: 60.66144ms - - id: 144 + duration: 63.685185ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -7173,7 +3058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7181,20 +3066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 532 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7202,11 +3087,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 663f3e9a-4add-4254-95a4-9a898910a8dc + - 84697c6a-1e76-44d5-994a-f0712758e9bd status: 200 OK code: 200 - duration: 78.731042ms - - id: 145 + duration: 74.060036ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -7222,7 +3107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7230,20 +3115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 529 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7251,11 +3136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0c6445f-e17c-4e96-9453-274c8f746838 + - 411b56f8-b3f1-494d-ae86-3b71a7c95536 status: 200 OK code: 200 - duration: 96.819679ms - - id: 146 + duration: 51.216894ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -7271,7 +3156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7279,20 +3164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 529 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7300,11 +3185,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cdb5c4d-cee5-44cf-8350-bbfaef78f226 + - 04a54504-67dc-4e1b-9147-7ed6131c49dd status: 200 OK code: 200 - duration: 99.795733ms - - id: 147 + duration: 71.269138ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -7320,7 +3205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -7330,7 +3215,7 @@ interactions: trailer: {} content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2311" @@ -7339,9 +3224,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7349,11 +3234,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73129f48-9d46-4888-b56f-886a3ecd2a73 + - e5b276c5-b681-4955-acb6-be02ac55d79e status: 200 OK code: 200 - duration: 99.826039ms - - id: 148 + duration: 98.49212ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -7369,7 +3254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -7377,20 +3262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 528 + content_length: 2308 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "528" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7398,11 +3283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cdbc8c8-e227-468b-8aeb-900e3fe066a7 + - c8c18c03-a71b-4f15-a445-5edd5862202c status: 200 OK code: 200 - duration: 55.14449ms - - id: 149 + duration: 82.868346ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -7418,7 +3303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -7426,20 +3311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 539 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7447,11 +3332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c283bf4-94f0-48b6-8cca-9fe4f00fff0b + - 09818276-c6b9-4f34-ae7c-ac623eadfe55 status: 200 OK code: 200 - duration: 58.095106ms - - id: 150 + duration: 67.095348ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -7467,7 +3352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7475,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 529 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7496,11 +3381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b9064fe-f0af-485a-a13b-52162b5bcd98 + - 3225e347-3386-4769-9a4e-0782e9c3d7fd status: 200 OK code: 200 - duration: 67.47944ms - - id: 151 + duration: 56.082786ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -7516,7 +3401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -7524,20 +3409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2311 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7545,11 +3430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec3455c1-2697-4b47-b3ca-c585917c1794 + - 4c1cb1e9-82c2-46fc-acfa-0f1d7e5437e9 status: 200 OK code: 200 - duration: 60.80689ms - - id: 152 + duration: 94.968894ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -7565,7 +3450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -7573,20 +3458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2308 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7594,11 +3479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdc18a9f-ed40-4226-8068-cb754bbd52f6 + - 7e7a0d77-bda8-459b-a994-a05e27cfd3ef status: 200 OK code: 200 - duration: 47.856079ms - - id: 153 + duration: 114.726492ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -7614,7 +3499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -7622,20 +3507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 520 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7643,11 +3528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa3c1493-10e6-48dc-9810-aa3e86587e50 + - 7b63fa16-3e9a-4535-9d5a-543d378b8582 status: 200 OK code: 200 - duration: 62.106797ms - - id: 154 + duration: 56.598931ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -7663,7 +3548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb method: GET response: proto: HTTP/2.0 @@ -7671,22 +3556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 519 uncompressed: false - body: '{"private_nics":[]}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7694,13 +3577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce1b667d-3f35-432a-8e8e-7ebe69586ab1 - X-Total-Count: - - "0" + - 8fe7af34-7006-4d54-a7c2-5fa041f441c2 status: 200 OK code: 200 - duration: 65.636727ms - - id: 155 + duration: 56.532057ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -7716,7 +3597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -7724,22 +3605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7747,13 +3626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23b0dcd1-4bdd-433a-aa6b-e1b072c94e9f - X-Total-Count: - - "0" + - 30d089ff-9f2d-4fa6-84b7-52d5a9f4b27e status: 200 OK code: 200 - duration: 68.304809ms - - id: 156 + duration: 59.074555ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -7769,7 +3646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data method: GET response: proto: HTTP/2.0 @@ -7777,22 +3654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7800,13 +3675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00cbdab1-8560-4ab4-b8ee-1db76e23cb68 - X-Total-Count: - - "0" + - e1b7db02-b259-4f2f-ad60-b38935dbef17 status: 200 OK code: 200 - duration: 69.531391ms - - id: 157 + duration: 55.465631ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -7822,7 +3695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics method: GET response: proto: HTTP/2.0 @@ -7830,20 +3703,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "516" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7851,11 +3726,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5962a3a5-49fa-407b-9657-2e1680779f02 + - d8d42755-3e07-4b83-a7b0-647d3f567d15 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 59.782811ms - - id: 158 + duration: 60.15747ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -7871,7 +3748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics method: GET response: proto: HTTP/2.0 @@ -7879,20 +3756,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "516" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7900,11 +3779,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef5ed9a9-630d-4ec2-8194-365a0c59d1a0 + - df29f7de-4f88-4c6f-bb3e-d3a689adbca8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 56.899249ms - - id: 159 + duration: 55.635326ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -7920,7 +3801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -7928,20 +3809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 539 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7949,11 +3830,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db162acf-a811-41d1-bb22-16eb148dbef9 + - cbc4e89d-807a-4322-b603-b504c3a33a8f status: 200 OK code: 200 - duration: 72.834476ms - - id: 160 + duration: 62.146173ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -7969,7 +3850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -7977,20 +3858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 529 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7998,11 +3879,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58160b8e-9541-4f83-b720-f88b6793adb1 + - 543632a3-e0dd-46a2-86f2-0ee8132fb958 status: 200 OK code: 200 - duration: 73.466578ms - - id: 161 + duration: 72.540901ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -8018,7 +3899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -8026,20 +3907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 823 + content_length: 2311 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T22:13:22.765417+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d87413e6-145a-4d82-85e0-a447c9faf206","modification_date":"2025-10-08T22:13:22.765417+00:00","name":"tf-image-determined-wing","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "823" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8047,11 +3928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b62584d-66cb-4b6d-810c-00d936cb36ac + - aa152612-904f-43df-b0d9-3288b245cfbe status: 200 OK code: 200 - duration: 76.298963ms - - id: 162 + duration: 94.223895ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -8067,26 +3948,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2308 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8094,11 +3977,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e224983-da02-4451-87f5-c72b951a3ebe - status: 204 No Content - code: 204 - duration: 327.456618ms - - id: 163 + - 32a94144-1153-4667-af41-4fde390a6616 + status: 200 OK + code: 200 + duration: 94.052057ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -8114,7 +3997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -8122,20 +4005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 520 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d87413e6-145a-4d82-85e0-a447c9faf206","type":"not_found"}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "142" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8143,11 +4026,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bc3a246-4963-47f7-9e09-5f20202dce1b - status: 404 Not Found - code: 404 - duration: 36.880911ms - - id: 164 + - b0b8bc7d-7360-4988-b649-228cea4c7cf1 + status: 200 OK + code: 200 + duration: 58.142719ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -8163,7 +4046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb method: GET response: proto: HTTP/2.0 @@ -8171,20 +4054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 519 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:28.794005+00:00","error_details":null,"id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","modification_date":"2025-10-08T22:13:22.531465+00:00","name":"snap03","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8192,11 +4075,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31a48e43-32e7-41a9-94cd-3eb10463ff35 + - e2256c8d-1834-446f-a1f9-68cbcd6b3f10 status: 200 OK code: 200 - duration: 47.860268ms - - id: 165 + duration: 60.043599ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -8212,7 +4095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data method: GET response: proto: HTTP/2.0 @@ -8220,20 +4103,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"765d8905-fd5d-4f27-812a-083baa39625e","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.577386+00:00","error_details":null,"id":"a17c678d-35df-4e96-aad0-a1182565a2cc","modification_date":"2025-10-08T22:13:22.530168+00:00","name":"snap02","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "516" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8241,11 +4124,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7b7ebd-53a6-44b4-8ad2-02a97b2c4a69 + - b1af4244-43d1-4980-8595-ea308648f29b status: 200 OK code: 200 - duration: 60.55942ms - - id: 166 + duration: 51.934673ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -8261,7 +4144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -8269,20 +4152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T22:11:33.523961+00:00","error_details":null,"id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","modification_date":"2025-10-08T22:13:22.529617+00:00","name":"snap01","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "516" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:24 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8290,11 +4173,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a35913c-54fb-4500-92c6-dbc852bf469a + - e85131a2-2202-4dac-8763-9649111e7ef7 status: 200 OK code: 200 - duration: 63.43144ms - - id: 167 + duration: 53.323645ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -8310,26 +4193,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 20 uncompressed: false - body: "" + body: '{"private_nics":[]}' headers: + Content-Length: + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8337,11 +4224,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 204ccbfc-f1d0-4048-8b4e-d4bf96a3686c - status: 204 No Content - code: 204 - duration: 107.658657ms - - id: 168 + - 89985dbd-e273-49ab-84f1-0514ed60bca5 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 50.186456ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -8357,26 +4246,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 20 uncompressed: false - body: "" + body: '{"private_nics":[]}' headers: + Content-Length: + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8384,11 +4277,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25d4cc2e-2a2e-4584-b65b-6462fdf1fc63 - status: 204 No Content - code: 204 - duration: 126.143023ms - - id: 169 + - 1cbefc02-659e-4d1a-8372-44c50539c10d + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 55.472494ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -8404,26 +4299,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 539 uncompressed: false - body: "" + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: + Content-Length: + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8431,11 +4328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8863fbd-e6a7-40e2-b627-ea4a23fbeb78 - status: 204 No Content - code: 204 - duration: 137.081569ms - - id: 170 + - 6c12b447-3ad8-4dc1-ab64-3816548ac300 + status: 200 OK + code: 200 + duration: 59.846865ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -8451,7 +4348,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -8459,20 +4356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 529 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a17c678d-35df-4e96-aad0-a1182565a2cc","type":"not_found"}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "145" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8480,48 +4377,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f882c367-68c8-4c13-93bb-d2f16b25bc69 - status: 404 Not Found - code: 404 - duration: 31.766012ms - - id: 171 + - 323ff01a-3446-425e-8405-d9859616673a + status: 200 OK + code: 200 + duration: 64.336759ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-angry-diffie","root_volume":"a8348f07-2bc7-47d8-819c-c1373574aadb","arch":"x86_64","extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 740 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "145" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8529,11 +4430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c003787-f61f-4d8d-9b28-85748eaf9c4f - status: 404 Not Found - code: 404 - duration: 33.334427ms - - id: 172 + - 9bdeb679-205c-40d4-baa6-57ff93999950 + status: 201 Created + code: 201 + duration: 170.782746ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -8549,7 +4450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -8557,20 +4458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 740 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "145" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8578,11 +4479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5f96b84-aade-47df-b48b-78ee5ebcd7c3 - status: 404 Not Found - code: 404 - duration: 30.013066ms - - id: 173 + - e5fb6b9b-f962-4abb-9613-19831f9f2c2a + status: 200 OK + code: 200 + duration: 66.98348ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -8598,7 +4499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -8606,20 +4507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 740 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:11:28.385800+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8627,11 +4528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afd038f0-a001-441a-b303-c9bd8ea791ae + - b810e253-54b6-43d9-9f14-79be3c542a01 status: 200 OK code: 200 - duration: 89.096462ms - - id: 174 + duration: 56.081962ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -8647,7 +4548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -8655,20 +4556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:11:26.747018+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8676,11 +4577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a586bc82-f036-4ec6-bdb3-26461f086cb3 + - 0e35308b-3c59-42d4-b3c3-5517421c70ac status: 200 OK code: 200 - duration: 90.888991ms - - id: 175 + duration: 92.090173ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -8696,7 +4597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -8704,20 +4605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2308 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:11:30.483070+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8725,52 +4626,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 457068e1-3c5d-4bce-bc38-cc2c3af5e81e + - 64324fb4-924e-4ffa-8633-023569067a42 status: 200 OK code: 200 - duration: 91.062603ms - - id: 176 + duration: 107.458002ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 539 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413/action","href_result":"/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413","id":"1a59f06b-ae1b-4e9e-a7d7-31f61b1d9ea2","progress":0,"started_at":"2025-10-08T22:13:25.331259+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1a59f06b-ae1b-4e9e-a7d7-31f61b1d9ea2 + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8778,52 +4675,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 411cd5ce-5604-4613-9b34-80eb237e4ec2 - status: 202 Accepted - code: 202 - duration: 194.455963ms - - id: 177 + - f967b345-8819-4fbc-82bf-1420460dd1e5 + status: 200 OK + code: 200 + duration: 55.757552ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 529 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0/action","href_result":"/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","id":"07090b6d-b357-4dd0-9d7e-4ac16c3d95ec","progress":0,"started_at":"2025-10-08T22:13:25.343872+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/07090b6d-b357-4dd0-9d7e-4ac16c3d95ec + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8831,52 +4724,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a7f7a28-28ba-4041-901f-35f54c76d202 - status: 202 Accepted - code: 202 - duration: 208.144566ms - - id: 178 + - 0349a8a8-43d5-4070-84a3-477598710ca2 + status: 200 OK + code: 200 + duration: 50.722138ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 740 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305/action","href_result":"/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305","id":"dac5c3f4-bf3f-4bae-8ec7-caebd26810fa","progress":0,"started_at":"2025-10-08T22:13:25.347751+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dac5c3f4-bf3f-4bae-8ec7-caebd26810fa + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8884,11 +4773,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7db102ea-886a-4793-9219-9a94334a9cdc - status: 202 Accepted - code: 202 - duration: 188.803615ms - - id: 179 + - 8607930b-5fc1-485d-a10a-704c721da0c0 + status: 200 OK + code: 200 + duration: 56.60959ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -8904,7 +4793,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -8912,20 +4801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2294" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8933,11 +4822,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4d32fd1-e1ae-4b6a-908b-e3529d134529 + - 4c5db736-421b-4063-9a37-f6694c1d336e status: 200 OK code: 200 - duration: 85.947019ms - - id: 180 + duration: 107.155471ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -8953,7 +4842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -8961,20 +4850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2308 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2271" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -8982,11 +4871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41655d70-a159-4dde-9162-cbc4f79aab2e + - fd4ae352-f036-40b8-8dd7-612a158f41ef status: 200 OK code: 200 - duration: 82.723118ms - - id: 181 + duration: 106.610513ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -9002,7 +4891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -9010,20 +4899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:25 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9031,11 +4920,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e63a0daf-c015-48c9-a749-f6e4f698774e + - 4c3c24c7-c53e-4f3c-8584-2dd42adfbaf9 status: 200 OK code: 200 - duration: 90.568168ms - - id: 182 + duration: 56.564747ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -9051,7 +4940,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb method: GET response: proto: HTTP/2.0 @@ -9059,20 +4948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + content_length: 519 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2294" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:30 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9080,11 +4969,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e2a09d8-7ea6-4628-b469-743543fed006 + - 085cd079-229c-41aa-853c-c879d3150a15 status: 200 OK code: 200 - duration: 89.81254ms - - id: 183 + duration: 59.402952ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -9100,7 +4989,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data method: GET response: proto: HTTP/2.0 @@ -9108,20 +4997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2279" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:30 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9129,11 +5018,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34a0accc-4edd-41e2-a253-a0e7039027df + - e9270e8c-41ad-4354-b054-c00df3389199 status: 200 OK code: 200 - duration: 81.614354ms - - id: 184 + duration: 60.779342ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -9149,7 +5038,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data method: GET response: proto: HTTP/2.0 @@ -9157,20 +5046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2271" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:30 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9178,11 +5067,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cb37255-3ec0-4d3e-bee3-983e086f9d5c + - cad6f346-2d8c-40b6-ad58-09dbf771246f status: 200 OK code: 200 - duration: 104.050026ms - - id: 185 + duration: 74.647382ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -9198,7 +5087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics method: GET response: proto: HTTP/2.0 @@ -9206,20 +5095,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2279" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:35 GMT + - Wed, 08 Oct 2025 23:07:36 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9227,11 +5118,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bb6c3b4-05e3-4db8-be69-4bc13934ad8a + - 4e9f151f-d5c5-4a09-ba73-08e4f9eae57c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 89.516518ms - - id: 186 + duration: 49.65425ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -9247,7 +5140,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics method: GET response: proto: HTTP/2.0 @@ -9255,20 +5148,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2294" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:35 GMT + - Wed, 08 Oct 2025 23:07:36 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9276,11 +5171,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c0e3c85-9e86-4e43-afde-cfef5057cc2a + - 01283421-7940-45b1-9a42-aff3c80b1ab0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 104.764883ms - - id: 187 + duration: 50.695318ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -9296,7 +5193,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -9304,20 +5201,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 539 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2271" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:35 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9325,11 +5222,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7436eb3-2f6a-42f5-92ea-ce178c778785 + - 82ab1ca1-17a7-456a-a47d-51b53cf47ae0 status: 200 OK code: 200 - duration: 89.776208ms - - id: 188 + duration: 64.007369ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -9345,7 +5242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -9353,20 +5250,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 529 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:40 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9374,11 +5271,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15112ecc-beb9-4ad2-95fd-89d20b6d9b21 + - dc11ac18-9b5a-44f5-b825-709c0103020a status: 200 OK code: 200 - duration: 103.794113ms - - id: 189 + duration: 118.2413ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -9394,7 +5291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -9402,20 +5299,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 740 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2271" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:40 GMT + - Wed, 08 Oct 2025 23:07:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9423,11 +5320,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4905151-081c-479e-be26-922f143d1408 + - aa25be8b-8b4a-4544-bc29-82429866d698 status: 200 OK code: 200 - duration: 94.151538ms - - id: 190 + duration: 54.838631ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -9443,7 +5340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -9451,20 +5348,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2294 + content_length: 740 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"202","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:25.182346+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2294" + - "740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:40 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9472,11 +5369,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 997edb36-963f-46dd-9911-5a75e60bb774 + - 24b3d88b-7148-4eec-8333-e18e549c2426 status: 200 OK code: 200 - duration: 101.279112ms - - id: 191 + duration: 92.953151ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -9492,28 +5389,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"501","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:25.181515+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:45 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9521,11 +5416,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7e6917a-06b9-4b85-bd05-bd88681e13a5 - status: 200 OK - code: 200 - duration: 96.627013ms - - id: 192 + - 9652d818-bbf1-4fe7-935b-dc102f1e0b63 + status: 204 No Content + code: 204 + duration: 307.338571ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -9541,7 +5436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -9549,20 +5444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2178 + content_length: 142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:44.836183+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","type":"not_found"}' headers: Content-Length: - - "2178" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:45 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9570,11 +5465,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7891ed3e-02b1-4b0e-81d3-b8fb1d9b0e80 - status: 200 OK - code: 200 - duration: 93.666559ms - - id: 193 + - 241476f6-ca90-4197-b413-d8aedadca18f + status: 404 Not Found + code: 404 + duration: 33.738226ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -9590,7 +5485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -9598,20 +5493,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 529 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"2002","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:25.203730+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2271" + - "529" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:45 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9619,11 +5514,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 196c7969-ad9e-4b4f-8e1e-a0f472c97937 + - 9cfb1076-de28-4cc4-bac7-42b4fd909eb6 status: 200 OK code: 200 - duration: 108.23306ms - - id: 194 + duration: 48.998395ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -9639,7 +5534,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -9647,20 +5542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2178 + content_length: 539 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.006735+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-interesting-sanderson","id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:a9","maintenances":[],"modification_date":"2025-10-08T22:13:44.836183+00:00","name":"tf-srv-interesting-sanderson","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:11:59.752840+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","name":"tf-srv-interesting-sanderson"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2178" + - "539" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:45 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9668,11 +5563,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26d4dda3-0e95-4149-9862-2019adf66cbb + - 3560899a-7db3-45a9-8021-b9280fe5d30a status: 200 OK code: 200 - duration: 95.528052ms - - id: 195 + duration: 62.694037ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -9688,7 +5583,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: DELETE response: proto: HTTP/2.0 @@ -9705,9 +5600,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:46 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9715,11 +5610,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83d283f3-83a8-4d00-b6e7-87cc3f401586 + - 9e3b07fd-e938-4851-be3f-7e195900ffdc status: 204 No Content code: 204 - duration: 169.605249ms - - id: 196 + duration: 104.513138ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -9735,7 +5630,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -9743,20 +5638,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","type":"not_found"}' headers: Content-Length: - - "143" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:46 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9764,11 +5659,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ba8fd81-49b1-4e70-a37f-1583ba6538d1 + - 06f8c39b-c680-4c89-9b2b-11fd36bed3a1 status: 404 Not Found code: 404 - duration: 65.719331ms - - id: 197 + duration: 29.942147ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -9784,28 +5679,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 0 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.006735+00:00","export_uri":null,"id":"af6bd612-76ac-4b19-ad87-e49430deaa5b","modification_date":"2025-10-08T22:13:45.969344+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:46 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9813,11 +5706,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 366e1cfe-09f3-488f-95b4-2236d82127db - status: 200 OK - code: 200 - duration: 59.702788ms - - id: 198 + - ee7bf8be-223f-4313-a13f-6383339e24f9 + status: 204 No Content + code: 204 + duration: 121.689986ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -9833,26 +5726,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af6bd612-76ac-4b19-ad87-e49430deaa5b - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 145 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a8348f07-2bc7-47d8-819c-c1373574aadb","type":"not_found"}' headers: + Content-Length: + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:46 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9860,11 +5755,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17514f9b-e8c8-4901-9379-b5eae96ea23c - status: 204 No Content - code: 204 - duration: 85.214321ms - - id: 199 + - 0d505dba-5e19-4a42-a6cb-fe436ed22d00 + status: 404 Not Found + code: 404 + duration: 37.420816ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -9880,7 +5775,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -9888,20 +5783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 2308 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:45.945023+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:50 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9909,11 +5804,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce020d7-8a21-452f-befc-0faffe4aa586 + - c8d14c2f-3233-4d19-ba1b-cc9f11fb9bf3 status: 200 OK code: 200 - duration: 87.416079ms - - id: 200 + duration: 83.239022ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -9929,7 +5824,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -9937,20 +5832,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2311 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:46.319061+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2154" + - "2311" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:50 GMT + - Wed, 08 Oct 2025 23:07:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -9958,48 +5853,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b06f2af1-8e94-4873-990a-8b9c899fb7ab + - 2f12e27d-8a71-4e8e-b76a-2b7e446ebb5a status: 200 OK code: 200 - duration: 94.349282ms - - id: 201 + duration: 86.00256ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.039313+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-driscoll","id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ad","maintenances":[],"modification_date":"2025-10-08T22:13:45.945023+00:00","name":"tf-srv-amazing-driscoll","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:18.966171+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","name":"tf-srv-amazing-driscoll"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action","href_result":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","id":"4a637a26-dfb0-4ac1-aeec-f716440fb368","progress":0,"started_at":"2025-10-08T23:07:38.097553+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4a637a26-dfb0-4ac1-aeec-f716440fb368 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10007,11 +5906,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29ced926-a1b1-475c-b50f-147429584590 - status: 200 OK - code: 200 - duration: 80.530013ms - - id: 202 + - 2b1c1dd0-3526-45f7-b3eb-7f01c83e7ee1 + status: 202 Accepted + code: 202 + duration: 182.870841ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -10027,7 +5926,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -10035,20 +5934,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2271 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T22:11:12.035555+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-epic-brattain","id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:75:ab","maintenances":[],"modification_date":"2025-10-08T22:13:46.319061+00:00","name":"tf-srv-epic-brattain","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:12:34.490729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","name":"tf-srv-epic-brattain"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:07:37.958841+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2154" + - "2271" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10056,46 +5955,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9f99425-94cc-4fdc-84e9-cd3ae4b23469 + - cba6cf04-040f-43b1-b59d-c806243552c0 status: 200 OK code: 200 - duration: 108.647158ms - - id: 203 + duration: 77.280878ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 353 uncompressed: false - body: "" + body: '{"task":{"description":"server_terminate","href_from":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action","href_result":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f","id":"dca1d17c-3700-4609-88ed-c2a05feaf792","progress":0,"started_at":"2025-10-08T23:07:38.351150+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: + Content-Length: + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dca1d17c-3700-4609-88ed-c2a05feaf792 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10103,11 +6008,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed45976d-6f6a-4a36-9b16-c31e1f875d1d - status: 204 No Content - code: 204 - duration: 106.995757ms - - id: 204 + - 31309a34-82e6-4ddf-9561-13c706d86260 + status: 202 Accepted + code: 202 + duration: 409.004965ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -10123,26 +6028,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2274 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10150,11 +6057,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e61e22e0-a97b-4929-b638-de4f7050999e - status: 204 No Content - code: 204 - duration: 101.124759ms - - id: 205 + - 0e8e72cd-e9d6-4823-9250-6da4087748f9 + status: 200 OK + code: 200 + duration: 88.573039ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -10170,7 +6077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -10180,7 +6087,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","type":"not_found"}' headers: Content-Length: - "143" @@ -10189,9 +6096,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10199,11 +6106,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b770925d-eab4-4bb0-a074-780d10399e7d + - 4a0eea57-3784-45d4-999a-1fcc3c1dbaab status: 404 Not Found code: 404 - duration: 47.643771ms - - id: 206 + duration: 52.368365ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -10219,7 +6126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb method: GET response: proto: HTTP/2.0 @@ -10229,7 +6136,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","type":"not_found"}' headers: Content-Length: - "143" @@ -10238,9 +6145,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10248,11 +6155,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9af700b3-648b-40c1-addb-c43b7555d53f + - 4c8da46e-a529-4b5b-ab82-037fe0c65a3a status: 404 Not Found code: 404 - duration: 54.472069ms - - id: 207 + duration: 37.45095ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -10268,7 +6175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb method: GET response: proto: HTTP/2.0 @@ -10276,20 +6183,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 127 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.039313+00:00","export_uri":null,"id":"765d8905-fd5d-4f27-812a-083baa39625e","modification_date":"2025-10-08T22:13:51.038729+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","type":"not_found"}' headers: Content-Length: - - "446" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10297,11 +6204,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e807f8f-8ac8-4c00-b5cc-4ad1c8b8f962 - status: 200 OK - code: 200 - duration: 52.135852ms - - id: 208 + - 6b21b230-eac4-4acd-8b0a-51246dfffdba + status: 404 Not Found + code: 404 + duration: 19.414431ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -10317,7 +6224,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -10325,20 +6232,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 2274 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T22:11:12.035555+00:00","export_uri":null,"id":"19a8fdf6-142b-4c76-bdfb-5b7a024411b5","modification_date":"2025-10-08T22:13:51.086365+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":null,"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10346,11 +6253,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6852efba-bc0e-4db4-85ba-b60e9f291131 + - 78876345-30d1-4cf8-8fd1-b0ff1d078b93 status: 200 OK code: 200 - duration: 50.329524ms - - id: 209 + duration: 84.508761ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -10366,26 +6273,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/765d8905-fd5d-4f27-812a-083baa39625e - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2274 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10393,11 +6302,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc012212-0b08-4f26-ae4a-31079468b79a - status: 204 No Content - code: 204 - duration: 132.064873ms - - id: 210 + - c07dd5b7-cbab-4461-8cc4-9693db710f0b + status: 200 OK + code: 200 + duration: 93.923725ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -10413,26 +6322,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/19a8fdf6-142b-4c76-bdfb-5b7a024411b5 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b6db9b7d-25c6-466d-80d6-414635ab678f","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10440,11 +6351,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07af587b-27d9-45b0-bcd3-5a2e767edcf2 - status: 204 No Content - code: 204 - duration: 93.717561ms - - id: 211 + - a7603fc0-9702-4949-ba24-c24b3da6978a + status: 404 Not Found + code: 404 + duration: 48.488008ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -10460,7 +6371,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d87413e6-145a-4d82-85e0-a447c9faf206 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -10468,20 +6379,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d87413e6-145a-4d82-85e0-a447c9faf206","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","type":"not_found"}' headers: Content-Length: - - "142" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10489,11 +6400,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 549c5d45-b796-47fc-bd5f-06778ac13ff9 + - be03ac68-e45f-457b-b435-3b7bb72efdad status: 404 Not Found code: 404 - duration: 32.768212ms - - id: 212 + duration: 27.786383ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -10509,7 +6420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/df86c0e2-a0be-46c5-9ed1-26969edc7c00 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 method: GET response: proto: HTTP/2.0 @@ -10517,20 +6428,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"df86c0e2-a0be-46c5-9ed1-26969edc7c00","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","type":"not_found"}' headers: Content-Length: - - "145" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10538,11 +6449,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c883831-7531-43df-b5e6-ea0a6c21e3f3 + - c6ba2572-2758-4587-a5da-2554a236d6da status: 404 Not Found code: 404 - duration: 30.606839ms - - id: 213 + duration: 20.34863ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -10558,7 +6469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a17c678d-35df-4e96-aad0-a1182565a2cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 method: GET response: proto: HTTP/2.0 @@ -10566,20 +6477,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a17c678d-35df-4e96-aad0-a1182565a2cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","type":"not_found"}' headers: Content-Length: - - "145" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10587,11 +6498,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac197c7d-163c-48d5-abb2-b8aaa3ea0172 + - f95444b5-4f2f-4ca6-a5c6-7ca8c4b1735b status: 404 Not Found code: 404 - duration: 35.448425ms - - id: 214 + duration: 31.774719ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -10607,7 +6518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fff175c8-97ff-4e7b-bfba-7feb57efc6ed + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb method: GET response: proto: HTTP/2.0 @@ -10617,7 +6528,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fff175c8-97ff-4e7b-bfba-7feb57efc6ed","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a8348f07-2bc7-47d8-819c-c1373574aadb","type":"not_found"}' headers: Content-Length: - "145" @@ -10626,9 +6537,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10636,11 +6547,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c02e61f7-17fa-43a0-8029-ed892a2f6a37 + - e1c2fa9c-3042-49ca-a21c-2d6f2989665d status: 404 Not Found code: 404 - duration: 27.941503ms - - id: 215 + duration: 29.019056ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -10656,7 +6567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13a44ee0-1fb8-41b5-832b-a2f007ce1305 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 method: GET response: proto: HTTP/2.0 @@ -10664,20 +6575,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13a44ee0-1fb8-41b5-832b-a2f007ce1305","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","type":"not_found"}' headers: Content-Length: - - "143" + - "145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10685,11 +6596,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecf7ddf5-437a-4cc7-b4b1-07bb58cf8cab + - 6ab4aaf3-958a-4f80-99e2-1c5aa8dcace9 status: 404 Not Found code: 404 - duration: 57.019657ms - - id: 216 + duration: 30.232803ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -10705,7 +6616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e7c8dec-6408-4925-8e3a-2bbce2e27ef0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f method: GET response: proto: HTTP/2.0 @@ -10715,7 +6626,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e7c8dec-6408-4925-8e3a-2bbce2e27ef0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b6db9b7d-25c6-466d-80d6-414635ab678f","type":"not_found"}' headers: Content-Length: - "143" @@ -10724,9 +6635,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10734,11 +6645,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b17d74c4-552b-4430-b37d-9533c675cd7b + - 375e8ca0-d6c9-465f-a6ab-0d031def5bda status: 404 Not Found code: 404 - duration: 74.301943ms - - id: 217 + duration: 47.007446ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -10754,7 +6665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/be7514bd-0faa-41f7-b443-95cd8c8a3413 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a method: GET response: proto: HTTP/2.0 @@ -10764,7 +6675,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"be7514bd-0faa-41f7-b443-95cd8c8a3413","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","type":"not_found"}' headers: Content-Length: - "143" @@ -10773,9 +6684,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 22:13:51 GMT + - Wed, 08 Oct 2025 23:07:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -10783,7 +6694,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9fa157d-603e-42df-9a29-04efd0bac592 + - 0dca67a0-c559-47cc-a27e-14f6201fea1a status: 404 Not Found code: 404 - duration: 48.498491ms + duration: 54.836464ms diff --git a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml index d13ace7c3..46784fcd1 100644 --- a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,13 +48,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af196cea-4b2e-440c-9d62-31fc236d6bca + - b55c09fc-5603-425a-9886-84822f82af77 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 51.750915ms + duration: 80.22119ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 147 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-volume-musing-curran","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":21000000000},"tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d4786d51-5a7a-42c9-ab27-671450193d8c + status: 200 OK + code: 200 + duration: 113.548621ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -69,7 +120,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +140,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,32 +152,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fd5107e-65a7-4364-a99b-2cd0bdc4de13 + - 5bf89eb1-c737-4e30-ba6e-84d998998bed X-Total-Count: - "75" status: 200 OK code: 200 - duration: 105.608039ms - - id: 2 + duration: 68.242632ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-sleepy-hoover","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":21000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -135,7 +184,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -144,9 +193,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -154,11 +203,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3a0bc5f-38a6-42ce-9266-24888c803cae + - 3847db7c-530c-4878-9470-291ecebd17f0 status: 200 OK code: 200 - duration: 212.861374ms - - id: 3 + duration: 73.012157ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -173,7 +222,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -182,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,48 +252,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ce7b9c5-8204-4e1b-9eef-948ed9d831a5 + - 92a930a7-23bb-4a3f-8e31-3af8e8ff0924 status: 200 OK code: 200 - duration: 118.377817ms - - id: 4 + duration: 46.59702ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 239 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-cool-sutherland","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1744 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "421" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,11 +305,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fcdcbf8-8c48-4264-b21a-4bd111d28e86 - status: 200 OK - code: 200 - duration: 140.69986ms - - id: 5 + - fd775a41-29d0-424d-bf8f-b59213d68e15 + status: 201 Created + code: 201 + duration: 533.490074ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -280,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1744 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "421" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,50 +354,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf5a14f-1040-4bd4-8b99-5a1576c8e57d + - b91795f8-a182-4da7-a5ea-78b969f3a87c status: 200 OK code: 200 - duration: 127.141123ms - - id: 6 + duration: 108.052319ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 151 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-snapshot-magical-almeida","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 1744 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "463" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,11 +403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c8224d0-e9be-4c57-8353-1cbe9d3b4c1c + - f711c13d-0d48-4eda-bc90-5d113d51bc18 status: 200 OK code: 200 - duration: 433.771712ms - - id: 7 + duration: 112.380887ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -371,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -380,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - - "463" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,29 +452,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3d89944-39c1-470d-9ccd-ad711fe6e67e + - c5f0d0e3-04f9-42ab-a6ef-53f80a1bbb7e status: 200 OK code: 200 - duration: 438.03055ms - - id: 8 + duration: 40.207503ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 241 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-infallible-wilson","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"action":"poweron"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action method: POST response: proto: HTTP/2.0 @@ -431,22 +482,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:34.970592+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action","href_result":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3","id":"a1d152f2-ee55-4953-b7a0-7e09b955ccce","progress":0,"started_at":"2025-10-08T23:05:41.492113+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1d152f2-ee55-4953-b7a0-7e09b955ccce Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,11 +505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ea22c35-81a2-4d9f-af68-26b9fbd04eca - status: 201 Created - code: 201 - duration: 1.134257305s - - id: 9 + - 774f57e5-a62a-40b3-adeb-564f6e77d2d3 + status: 202 Accepted + code: 202 + duration: 185.382724ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -473,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -482,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1766 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:34.970592+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:41.352159+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1766" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,11 +554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77177053-bc9f-47d2-adac-8ee8310b9a9d + - 0af05a88-34a8-4491-9b21-6902ba94cc26 status: 200 OK code: 200 - duration: 159.162716ms - - id: 10 + duration: 87.888421ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -522,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -531,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 421 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:34.970592+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "1726" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,11 +603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dd240b6-06d4-47de-861f-855c6b9665c9 + - 20b79b8f-1a44-4521-9f3d-8ad207f80d84 status: 200 OK code: 200 - duration: 287.082549ms - - id: 11 + duration: 52.323896ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -571,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -580,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,29 +652,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4dc829b-b60a-4c1f-aa7b-3a9de4ea0c5d + - 0eae0b4e-181c-4735-a4c8-c127578a355f status: 200 OK code: 200 - duration: 89.707929ms - - id: 12 + duration: 39.454518ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"volume_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-snapshot-happy-gates","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: proto: HTTP/2.0 @@ -631,22 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 459 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/action","href_result":"/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","id":"ce868ffe-2f5c-45d7-b7ff-6b4bbd83aa76","progress":0,"started_at":"2025-06-10T15:30:36.597692+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ce868ffe-2f5c-45d7-b7ff-6b4bbd83aa76 + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,11 +703,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2e130d9-9052-4901-9b41-8523faa3ce9d - status: 202 Accepted - code: 202 - duration: 325.792306ms - - id: 13 + - 527a7cc9-0a0d-4c74-98c3-f826bc5ad660 + status: 200 OK + code: 200 + duration: 267.779958ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -673,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -682,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 459 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:36.328186+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "1748" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,11 +752,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d28de326-9624-4aee-a284-8a2faa99d976 + - eee5d433-877b-436a-88f7-4c33d256d126 status: 200 OK code: 200 - duration: 199.26236ms - - id: 14 + duration: 219.529388ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -722,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -731,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 1901 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "464" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,11 +801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4690a679-e186-42dc-a4d6-0e0faf499273 + - ebd74c61-7920-4efe-b8d5-39208847ba00 status: 200 OK code: 200 - duration: 177.310681ms - - id: 15 + duration: 114.680003ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -771,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -780,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 1901 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "464" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,11 +850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56f29005-93d6-4e6f-9db1-8570332308a4 + - 5beeabda-4cc0-49b7-abc2-ed3fe188792d status: 200 OK code: 200 - duration: 191.779155ms - - id: 16 + duration: 98.094052ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -820,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -829,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - - "1882" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,11 +899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2bbf016-545e-4f47-9c54-cd0f23b064d5 - status: 200 OK - code: 200 - duration: 175.718355ms - - id: 17 + - 0ea52f30-c2ee-458f-9bdf-b8e4c772d765 + status: 404 Not Found + code: 404 + duration: 32.282795ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -869,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -878,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - - "1882" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,11 +948,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70ab378-5a5f-41c3-8c88-cedddf1770de + - db18abfa-2d2a-4eaa-a7b8-5c053974c6d9 status: 200 OK code: 200 - duration: 205.358812ms - - id: 18 + duration: 41.319342ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -918,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -927,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "143" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,11 +997,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5356a76-83be-4fd2-8e06-0ea77dfc5e05 - status: 404 Not Found - code: 404 - duration: 81.202107ms - - id: 19 + - 475fb560-291a-45c0-b619-0a34393bf5f1 + status: 200 OK + code: 200 + duration: 49.891691ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -967,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics method: GET response: proto: HTTP/2.0 @@ -976,20 +1025,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:05:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,11 +1048,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aa78a6e-cbf1-40ca-979f-3da76d0bd230 + - 873ddce5-84f4-4ccd-84a7-876cc5c2fa03 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 151.727051ms - - id: 20 + duration: 52.827869ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1016,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -1025,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 460 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,11 +1099,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b68afe-4fe0-4477-9c4a-951894e8fd93 + - 5f841771-7d22-4ae1-b716-68cb25c9979f status: 200 OK code: 200 - duration: 141.086184ms - - id: 21 + duration: 107.456391ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1065,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -1074,22 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 460 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,13 +1148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d419b648-8eb1-4b98-bac1-4bcd99cb2053 - X-Total-Count: - - "0" + - 3cec8eb1-1c29-4814-93e1-18be8c5a96c7 status: 200 OK code: 200 - duration: 97.201333ms - - id: 22 + duration: 114.970528ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1118,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -1129,7 +1178,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - "421" @@ -1138,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,11 +1197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb6ab0c6-d694-4697-8c79-31e748ed053f + - 9f2d4267-952d-451f-aab3-99e8f2c0d101 status: 200 OK code: 200 - duration: 79.404647ms - - id: 23 + duration: 50.327547ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1167,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -1176,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,11 +1246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 027b8ae6-2c42-414c-8f7a-2f0d45ed0ed0 + - 7f86928e-8f4e-41de-992a-df8b4d1c5539 status: 200 OK code: 200 - duration: 193.227822ms - - id: 24 + duration: 149.013072ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -1225,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 460 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,11 +1295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dc1c9b3-1be1-43ff-9bce-744e51c85836 + - acd31d9e-5bfe-4e87-894e-c26c8b50c18d status: 200 OK code: 200 - duration: 163.602943ms - - id: 25 + duration: 121.079744ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1265,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -1276,7 +1325,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - "421" @@ -1285,9 +1334,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,11 +1344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f949f614-6c84-40da-91b3-977189c804d8 + - fe445a1c-290a-48e0-869b-73cf94cd1f5c status: 200 OK code: 200 - duration: 127.254455ms - - id: 26 + duration: 52.848656ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1314,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -1323,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,11 +1393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f98936da-9cb1-46c8-b21c-c2718e8e35b6 + - 5cdca832-3922-4b71-81eb-36a94ff733b9 status: 200 OK code: 200 - duration: 267.047544ms - - id: 27 + duration: 101.148146ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1363,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -1374,7 +1423,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - "143" @@ -1383,9 +1432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,11 +1442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e6f7b85-a0dc-4fe3-8287-74a38f8150bf + - c62019c6-de26-4b7d-931e-38241653716a status: 404 Not Found code: 404 - duration: 64.979784ms - - id: 28 + duration: 37.075831ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -1421,20 +1470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 460 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,11 +1491,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 468d57df-9a84-4303-b5eb-750359907d59 + - 99f83a75-7ffa-4010-af61-858a7fe5d751 status: 200 OK code: 200 - duration: 237.013898ms - - id: 29 + duration: 111.074491ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1461,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -1472,7 +1521,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1481,9 +1530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,11 +1540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3297340c-2d18-4278-a839-eb996d135d3f + - f5048855-53da-42ec-adc3-db6629a74640 status: 200 OK code: 200 - duration: 95.447303ms - - id: 30 + duration: 44.464097ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1510,8 +1559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -1530,9 +1579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,11 +1589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 510f5c70-ee35-4051-8b24-9fdbe43279ac + - 3e2133de-a98f-4cf4-9546-3ad0a9f0b0c1 status: 200 OK code: 200 - duration: 103.875169ms - - id: 31 + duration: 48.502448ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1559,8 +1608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics method: GET response: proto: HTTP/2.0 @@ -1579,11 +1628,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,13 +1640,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df437401-b553-4cdd-829a-f227e457dc18 + - 37c51574-3c36-480a-88fe-f5001559bf25 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.100655ms - - id: 32 + duration: 63.70868ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1612,8 +1661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -1623,7 +1672,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - "421" @@ -1632,9 +1681,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9ad7cb2-f397-4c44-876a-711a42eb6ec5 + - 48e3efdc-97e8-4cda-afd6-7d068bfabf88 status: 200 OK code: 200 - duration: 80.864424ms - - id: 33 + duration: 54.344757ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1661,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -1670,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82372d07-96a9-482e-b926-b64c2b0e1b58 + - 78d0f1ac-a514-4067-adca-f5e97adcb996 status: 200 OK code: 200 - duration: 185.492745ms - - id: 34 + duration: 123.5992ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1710,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -1721,7 +1770,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - "143" @@ -1730,9 +1779,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,11 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4163845e-13ad-4119-8908-7c16cc26ce51 + - 3bb42235-6f37-4585-9c4d-5e89cc1e4e9a status: 404 Not Found code: 404 - duration: 43.03064ms - - id: 35 + duration: 27.235966ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1759,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -1768,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 460 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:34.998284Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82d5cfaa-4282-426d-83ff-4c6b2043b1ac + - be0683a0-1db6-40e4-a5fa-86c56b08cd03 status: 200 OK code: 200 - duration: 213.08377ms - - id: 36 + duration: 105.834346ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1808,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -1819,7 +1868,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1828,9 +1877,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aa5b1d3-0f35-40b3-8fe3-476515a10bea + - af134445-d73a-408a-a1ef-c3151e03e1b7 status: 200 OK code: 200 - duration: 108.112265ms - - id: 37 + duration: 44.372176ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1857,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -1877,9 +1926,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d88aea8-d1a9-4377-b8ca-0389548c84f5 + - b510d6ad-8537-42c6-8d11-53933eee0ab2 status: 200 OK code: 200 - duration: 127.013212ms - - id: 38 + duration: 51.924564ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1906,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics method: GET response: proto: HTTP/2.0 @@ -1926,11 +1975,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,30 +1987,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bc6fa1e-f563-477d-80dd-4140fdf4f1d8 + - eadd0332-ed1a-40ff-bbf5-d92533909607 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.396216ms - - id: 39 + duration: 51.498164ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"1001f41f-ec2f-4c24-a148-895406416614","name":"tf-snapshot-jovial-benz","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"tf-snapshot-cranky-swirles","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -1970,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 473 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:47.839564Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "470" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,11 +2040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d416dc83-b926-4d63-950a-20d389d3401c + - 098d914e-2ae8-4aae-b0dd-893b2608e1c1 status: 200 OK code: 200 - duration: 332.431887ms - - id: 40 + duration: 237.046286ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2010,8 +2059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2019,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 704 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:47.964313Z","id":"0b52b743-8703-45ce-bc22-0fe1df0655ee","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:30:47.839564Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,11 +2089,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f0a5d15-9c0e-4ca1-94d7-d32d16ea33f3 + - 1704b5ff-2496-4834-a18c-b891212d1cff status: 200 OK code: 200 - duration: 210.347207ms - - id: 41 + duration: 130.069043ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2059,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2068,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 704 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:47.839564Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "471" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,11 +2138,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9207d640-6159-48b4-8715-3177f1eb3081 + - 88ea7c2f-11fb-4892-8d9c-db2990e334ec status: 200 OK code: 200 - duration: 193.363792ms - - id: 42 + duration: 129.014667ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2108,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2117,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 704 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:30:47.839564Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "471" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,52 +2187,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b36cdf35-d338-47ed-b67d-f7a5d0420953 + - dbf3b9e2-0ce0-4994-b2de-bca4894a714e status: 200 OK code: 200 - duration: 158.722126ms - - id: 43 + duration: 238.620241ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 239 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-distracted-meitner","root_volume":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","arch":"x86_64","extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 704 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2191,11 +2236,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60526a28-c666-48d8-8a8b-fc90e8fada90 - status: 201 Created - code: 201 - duration: 678.25882ms - - id: 44 + - e1341cbe-4261-46cb-b41b-dc281b45c252 + status: 200 OK + code: 200 + duration: 352.572259ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2210,8 +2255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2219,20 +2264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 704 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2240,11 +2285,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a0277a3-18ca-493c-b7c2-56d110bc4fcf + - 765c5c9f-1bc5-42bf-9942-53dc0b7be703 status: 200 OK code: 200 - duration: 139.394058ms - - id: 45 + duration: 611.515672ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2259,8 +2304,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2268,20 +2313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 704 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,11 +2334,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feb35a6b-c181-4ad9-ba54-a201bf86cbcd + - aa7bfd19-eacb-472c-8f81-2e3e10d0efcb status: 200 OK code: 200 - duration: 130.241614ms - - id: 46 + duration: 263.271692ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2308,8 +2353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2317,20 +2362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 704 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2338,11 +2383,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4376bd-fc78-4324-a1ea-80e77d86edb2 + - 51a0a310-ec1c-433b-96b8-b644337dd2d9 status: 200 OK code: 200 - duration: 75.658459ms - - id: 47 + duration: 317.154351ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2357,8 +2402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2366,20 +2411,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 704 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "1882" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2387,11 +2432,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d87252-9045-41a1-beea-f92d01e32cb5 + - 3cd7314e-491d-4a15-aa6d-3a358f55f759 status: 200 OK code: 200 - duration: 245.066345ms - - id: 48 + duration: 368.551553ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2406,8 +2451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2415,20 +2460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 704 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:41.062400Z","id":"ea4e493f-dfc8-431a-bdb4-e1fd0a5fb0cc","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:41.062400Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "704" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2436,11 +2481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd1deb39-1ba1-4199-aaff-096566869b0c + - d68bee9e-fdc2-4335-8bd1-e2df15551974 status: 200 OK code: 200 - duration: 193.84257ms - - id: 49 + duration: 205.964902ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2455,8 +2500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2464,20 +2509,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 474 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:40.868875Z","id":"cacd8dd1-357e-4a82-821b-9a8a6f7bd1c2","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:40.868875Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "697" + - "474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:06:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2485,11 +2530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edc143be-54af-4b2f-9b27-b6fff7879144 + - 2c158193-71f1-4b44-b300-46d6928dda22 status: 200 OK code: 200 - duration: 132.519787ms - - id: 50 + duration: 157.906093ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2504,8 +2549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2513,20 +2558,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 474 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2534,97 +2579,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b0e58f-7c5c-41ea-aaf9-fef986b1deac + - a9a1cf93-0c7e-4031-9a35-d2030d745a44 status: 200 OK code: 200 - duration: 271.773311ms - - id: 51 + duration: 149.2701ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-tender-mayer","root_volume":"92ac67b7-1927-431c-a56e-e4651d925394","arch":"x86_64","extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 421 - uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "421" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 10 Jun 2025 15:31:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 164e9dcc-ed83-423f-9af6-50c90874b0da - status: 200 OK - code: 200 - duration: 111.55025ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 686 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2632,10 +2632,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fb9d43e-6bd0-42e4-985a-6895e48ca829 - status: 200 OK - code: 200 - duration: 208.195959ms + - 4ef19f07-28f6-4739-83ab-d9f10737da5e + status: 201 Created + code: 201 + duration: 447.592111ms - id: 53 request: proto: HTTP/1.1 @@ -2651,8 +2651,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -2660,20 +2660,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 686 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2681,10 +2681,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40d8f9b9-ffc3-4c63-890f-698a15cb286f - status: 404 Not Found - code: 404 - duration: 41.850305ms + - 44a03cd9-ebaa-45ea-9288-249d214fe064 + status: 200 OK + code: 200 + duration: 66.750202ms - id: 54 request: proto: HTTP/1.1 @@ -2700,8 +2700,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -2709,20 +2709,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2730,10 +2730,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f557cd1a-3cf6-406a-8bef-092070e7ea9c + - 9db2e5ac-d12f-4f2e-84d6-231d499c0b2b status: 200 OK code: 200 - duration: 125.002168ms + duration: 88.323465ms - id: 55 request: proto: HTTP/1.1 @@ -2749,8 +2749,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -2758,20 +2758,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 421 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:41.062400Z","id":"ea4e493f-dfc8-431a-bdb4-e1fd0a5fb0cc","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:41.062400Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2779,10 +2779,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbd53bbc-6c4d-4fc2-bb2f-9661e191acc5 + - 5103f2e8-fe9a-4b7a-b63f-852cb6dbd1d8 status: 200 OK code: 200 - duration: 308.222137ms + duration: 45.114533ms - id: 56 request: proto: HTTP/1.1 @@ -2798,8 +2798,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -2807,20 +2807,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1901 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,10 +2828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cafe50d0-19ed-4351-b148-9366d45c2e90 + - b3fb3f40-fcdb-45dc-a7f8-b89e7d4c0d87 status: 200 OK code: 200 - duration: 93.923994ms + duration: 88.210306ms - id: 57 request: proto: HTTP/1.1 @@ -2847,8 +2847,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -2856,22 +2856,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 686 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,12 +2877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e4e8c9-4f67-4789-bf7c-048070be0435 - X-Total-Count: - - "0" + - 6086b301-5cff-4462-9469-ec3f46542670 status: 200 OK code: 200 - duration: 149.475485ms + duration: 109.181444ms - id: 58 request: proto: HTTP/1.1 @@ -2900,8 +2896,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -2909,20 +2905,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 700 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:40.868875Z","id":"cacd8dd1-357e-4a82-821b-9a8a6f7bd1c2","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:40.868875Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "697" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2930,10 +2926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d11c9fd0-02c2-4e94-8a45-cea9bdcaf000 + - fe5200c6-28c2-4dd3-9edb-0c925180b6dd status: 200 OK code: 200 - duration: 336.669557ms + duration: 198.027717ms - id: 59 request: proto: HTTP/1.1 @@ -2949,8 +2945,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -2958,20 +2954,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 686 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2979,10 +2975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 519bd88b-f46d-4f87-bb18-484e2a8e0162 + - 5c574d7a-885d-46ec-895a-3644e6162b65 status: 200 OK code: 200 - duration: 151.864905ms + duration: 71.097563ms - id: 60 request: proto: HTTP/1.1 @@ -2998,8 +2994,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -3009,7 +3005,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - "421" @@ -3018,9 +3014,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3028,10 +3024,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a5dfbe-3990-49fd-bda9-4107c21f8a92 + - f5176ed9-9f07-482a-a4cd-22b2503dbfd5 status: 200 OK code: 200 - duration: 96.663862ms + duration: 53.561376ms - id: 61 request: proto: HTTP/1.1 @@ -3047,8 +3043,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -3056,20 +3052,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3077,10 +3073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e03445e-25fc-428b-b31b-fe1edc08d6ee + - bb40f8d8-8fc8-4599-b3f4-57a67d1f6842 status: 200 OK code: 200 - duration: 209.687796ms + duration: 95.233012ms - id: 62 request: proto: HTTP/1.1 @@ -3096,8 +3092,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -3107,7 +3103,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - "143" @@ -3116,9 +3112,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3126,10 +3122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9c4e4ca-e99b-4fce-b17e-29c0f0f2bebe + - 62675b88-3ff7-47aa-86cd-8e8d15d6b19c status: 404 Not Found code: 404 - duration: 51.703173ms + duration: 29.07652ms - id: 63 request: proto: HTTP/1.1 @@ -3145,8 +3141,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -3154,20 +3150,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:41.062400Z","id":"ea4e493f-dfc8-431a-bdb4-e1fd0a5fb0cc","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:41.062400Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3175,10 +3171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 871c2a1f-3f5d-4dee-8f5f-35b88cbd21fe + - 9dd4fd99-a162-403a-a4b5-69bfaf8b9293 status: 200 OK code: 200 - duration: 187.5076ms + duration: 45.89642ms - id: 64 request: proto: HTTP/1.1 @@ -3194,8 +3190,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -3203,20 +3199,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "701" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3224,10 +3220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8bd4c19-0e5c-4ec4-ae2c-3afcd2b123ab + - f9344cc8-afca-4b3c-afc8-53c1407a9e15 status: 200 OK code: 200 - duration: 89.168666ms + duration: 63.000748ms - id: 65 request: proto: HTTP/1.1 @@ -3243,8 +3239,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -3252,20 +3248,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 686 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3273,10 +3269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae027ef2-ce52-47c1-8e98-a2a5dae812fa + - 9bf8e30f-db22-4ee7-8bd5-2c8cb862c7e9 status: 200 OK code: 200 - duration: 149.722999ms + duration: 218.644649ms - id: 66 request: proto: HTTP/1.1 @@ -3292,8 +3288,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics method: GET response: proto: HTTP/2.0 @@ -3312,11 +3308,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:06:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3324,12 +3320,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1dffca-1ece-4192-8876-206d19719f37 + - 8321f050-c42d-4560-996f-9ce758dcaf75 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 91.94329ms + duration: 55.315013ms - id: 67 request: proto: HTTP/1.1 @@ -3345,8 +3341,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -3354,20 +3350,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 700 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:40.868875Z","id":"cacd8dd1-357e-4a82-821b-9a8a6f7bd1c2","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:40.868875Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "697" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3375,10 +3371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f482446f-d97f-454d-9075-02cbb3990ca5 + - 66ef3254-6b94-438c-9652-58a41a2c98eb status: 200 OK code: 200 - duration: 137.561862ms + duration: 410.364002ms - id: 68 request: proto: HTTP/1.1 @@ -3394,8 +3390,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -3403,20 +3399,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 686 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3424,50 +3420,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75364efc-7b7b-4d10-a8e6-641d0c56f85f + - 35b4ac89-d281-4319-b0b2-ae160ec36063 status: 200 OK code: 200 - duration: 155.936952ms + duration: 62.473661ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 145 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-sad-sammet","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":22000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:48 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3475,10 +3469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81722f41-c0db-4608-83a4-f3721033fcf5 + - 6263fea4-abde-40af-932a-75d0a7b072d1 status: 200 OK code: 200 - duration: 261.952542ms + duration: 49.421028ms - id: 70 request: proto: HTTP/1.1 @@ -3494,8 +3488,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -3503,20 +3497,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 1901 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:48 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3524,10 +3518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed5d76b2-64f6-420c-986f-f92689b27a97 + - 6b7b53f7-7ad9-45d1-9a9f-b9844c6c22d2 status: 200 OK code: 200 - duration: 88.3712ms + duration: 98.490414ms - id: 71 request: proto: HTTP/1.1 @@ -3543,8 +3537,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -3552,20 +3546,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - - "420" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:48 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3573,50 +3567,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17948647-f083-4e9c-a16a-f1181a025c3f - status: 200 OK - code: 200 - duration: 69.321004ms + - dd1d21d7-2fdf-46f0-bd45-52f61b32fd8e + status: 404 Not Found + code: 404 + duration: 24.554224ms - id: 72 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 152 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-snapshot-determined-gould","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:48.389443Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - - "462" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:48 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3624,10 +3616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 427ca45c-2d54-4858-9cb5-d6eed7544592 + - 33bb7f7a-2239-4338-8e05-4d3cc0a8c698 status: 200 OK code: 200 - duration: 313.722772ms + duration: 41.304115ms - id: 73 request: proto: HTTP/1.1 @@ -3643,8 +3635,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -3652,20 +3644,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 462 + content_length: 17 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:48.389443Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "462" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:48 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3673,10 +3665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26bcc52f-40d9-4c92-89f4-fdfd1b5b7191 + - abc484b5-715c-49e7-ae43-3c791c3a90b9 status: 200 OK code: 200 - duration: 179.955697ms + duration: 56.961853ms - id: 74 request: proto: HTTP/1.1 @@ -3692,8 +3684,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics method: GET response: proto: HTTP/2.0 @@ -3701,20 +3693,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 20 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:48.389443Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "463" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:53 GMT + - Wed, 08 Oct 2025 23:06:43 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3722,10 +3716,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca6d31cb-c9b0-40d0-8f69-ec104ff3e809 + - 79e55ff9-f7c1-4f3f-b5b2-b088cce2556e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 257.409001ms + duration: 46.714956ms - id: 75 request: proto: HTTP/1.1 @@ -3741,8 +3737,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -3750,20 +3746,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 700 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:48.389443Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "463" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3771,10 +3767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30607ee1-771d-4b32-a5dd-6105eee4904c + - 9c78a72a-517d-4b4b-b7ae-316383903231 status: 200 OK code: 200 - duration: 271.475621ms + duration: 258.582674ms - id: 76 request: proto: HTTP/1.1 @@ -3790,8 +3786,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -3799,20 +3795,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 686 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3820,10 +3816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73a78392-b307-4bd5-aff2-7364c08d64f5 + - b0d079be-7d8e-4a8a-b945-1184e3508eee status: 200 OK code: 200 - duration: 144.195572ms + duration: 514.504129ms - id: 77 request: proto: HTTP/1.1 @@ -3839,8 +3835,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -3848,20 +3844,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 686 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:54 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3869,50 +3865,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33ab9979-196a-4b16-a9be-e1fe11143eb8 + - ef9461c0-9d2c-4413-af06-149d7ade0275 status: 200 OK code: 200 - duration: 115.766978ms + duration: 74.850553ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-distracted-meitner","arch":"x86_64","extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c"}},"tags":[]}' + body: '{"name":"tf-volume-kind-wiles","perf_iops":15000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":22000000000},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 419 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3920,10 +3916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 853f6579-e486-4f94-b495-b47d628c0755 + - 3260ee0d-4dda-44c1-b6bc-0bfbec320d05 status: 200 OK code: 200 - duration: 675.668979ms + duration: 165.65391ms - id: 79 request: proto: HTTP/1.1 @@ -3939,8 +3935,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -3948,20 +3944,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 419 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3969,10 +3965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78c7255d-3f5e-4cdd-84bf-4f65d724ec8f + - 9935f49e-3dcc-470c-9a89-478a962b803e status: 200 OK code: 200 - duration: 498.908216ms + duration: 38.177474ms - id: 80 request: proto: HTTP/1.1 @@ -3988,8 +3984,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -3997,20 +3993,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 420 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Wed, 08 Oct 2025 23:06:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4018,10 +4014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1771a87-1ed9-4e34-bd21-1fa74f3cc8be + - 425f67f2-5ace-4f00-89ea-1a6f4a1c267b status: 200 OK code: 200 - duration: 145.376968ms + duration: 43.095501ms - id: 81 request: proto: HTTP/1.1 @@ -4037,8 +4033,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -4046,20 +4042,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4067,48 +4063,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c60e36-9f06-4140-b3e6-71f0dbb8bba3 + - f0b62636-e20d-41a8-b640-7e3505249512 status: 200 OK code: 200 - duration: 106.182833ms + duration: 43.34328ms - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-snapshot-lucid-perlman","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4116,10 +4114,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 041a275f-e222-4da5-998c-73b66ddee4cd + - 9069b4a7-97b0-4aa2-97d9-c9a1e87ba040 status: 200 OK code: 200 - duration: 98.131013ms + duration: 206.584127ms - id: 83 request: proto: HTTP/1.1 @@ -4135,8 +4133,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -4144,20 +4142,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 459 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' headers: Content-Length: - - "1882" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4165,10 +4163,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af019c37-5382-4d0e-b2d4-199726a425ee + - d67a331a-138b-4bed-94a8-32946a597a15 status: 200 OK code: 200 - duration: 231.940948ms + duration: 117.949429ms - id: 84 request: proto: HTTP/1.1 @@ -4184,8 +4182,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -4193,20 +4191,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 460 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:55.224873Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4214,10 +4212,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1aee2af-1858-45d9-903b-b7b6803a40f6 + - f25e9516-0fcd-4264-927b-6282e1deb1d8 status: 200 OK code: 200 - duration: 188.465436ms + duration: 113.971209ms - id: 85 request: proto: HTTP/1.1 @@ -4233,8 +4231,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -4242,20 +4240,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 689 + content_length: 460 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:54.757885Z","id":"d701bab3-07e2-44a5-a2c7-16de1278a039","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:54.757885Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' headers: Content-Length: - - "689" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4263,10 +4261,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c84ee72d-0df3-4758-9b4f-2ccc960d5eea + - db49fac1-ecdf-4753-a996-558f97b5d6fd status: 200 OK code: 200 - duration: 374.357284ms + duration: 142.563472ms - id: 86 request: proto: HTTP/1.1 @@ -4282,8 +4280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -4291,20 +4289,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 686 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:40.868875Z","id":"cacd8dd1-357e-4a82-821b-9a8a6f7bd1c2","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:40.868875Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "697" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4312,10 +4310,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b16d4960-efaa-419e-a33d-edf910c394f3 + - e0859499-6621-41a3-97d3-dad9e0f8a8db status: 200 OK code: 200 - duration: 177.654611ms + duration: 63.338489ms - id: 87 request: proto: HTTP/1.1 @@ -4331,8 +4329,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -4340,20 +4338,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 686 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4361,48 +4359,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9c3466e-f6b0-46b8-b3cd-f2bf3b34ef30 + - 9dc0da93-c4d0-417f-9c0d-a7b89a4225ca status: 200 OK code: 200 - duration: 119.189005ms + duration: 61.750128ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 126 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-tender-mayer","arch":"x86_64","extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7"}},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "421" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4410,10 +4410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e654d05a-f21d-4241-817d-a4c0953224aa + - c7b2db38-003a-408d-9fc0-42b1ccbb7ea6 status: 200 OK code: 200 - duration: 82.162847ms + duration: 376.264012ms - id: 89 request: proto: HTTP/1.1 @@ -4429,8 +4429,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -4438,20 +4438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4459,10 +4459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bdad4ad-10ce-415f-9c4f-61f826c8229d + - f879f5d7-bbdd-4e59-a1e9-aa949f68fc86 status: 200 OK code: 200 - duration: 82.203232ms + duration: 79.999274ms - id: 90 request: proto: HTTP/1.1 @@ -4478,8 +4478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -4487,20 +4487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 686 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4508,10 +4508,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb82f2ed-a8c6-4267-8ddb-faf7dd74cf17 + - 37e71193-2880-4da7-9d3f-432a09730791 status: 200 OK code: 200 - duration: 198.880447ms + duration: 95.484373ms - id: 91 request: proto: HTTP/1.1 @@ -4527,8 +4527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -4536,20 +4536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 421 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4557,10 +4557,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3222c5-be3c-4132-ac13-b1b55a88be8b - status: 404 Not Found - code: 404 - duration: 98.333823ms + - fbdd5950-cb0a-4abb-b68e-850ed4c2e96b + status: 200 OK + code: 200 + duration: 47.422634ms - id: 92 request: proto: HTTP/1.1 @@ -4576,8 +4576,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -4585,20 +4585,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 420 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:55.224873Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4606,10 +4606,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c615822a-90db-4560-a41a-011c5a3f32dd + - 4e46d89c-44b8-4b73-8734-90c9b634e095 status: 200 OK code: 200 - duration: 232.139932ms + duration: 37.996328ms - id: 93 request: proto: HTTP/1.1 @@ -4625,8 +4625,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -4634,20 +4634,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 689 + content_length: 1901 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:54.757885Z","id":"d701bab3-07e2-44a5-a2c7-16de1278a039","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:54.757885Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "689" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4655,10 +4655,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d4b2cf1-a2d2-4069-be1b-454217ea7eca + - 965e7675-f082-4f1e-9706-6600eb993eae status: 200 OK code: 200 - duration: 273.121327ms + duration: 110.263272ms - id: 94 request: proto: HTTP/1.1 @@ -4674,8 +4674,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -4683,20 +4683,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 460 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4704,10 +4704,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b268ec01-c839-45d6-b913-31da6d088101 + - 61c09441-5055-4a01-86b4-6f6ca0fd2715 status: 200 OK code: 200 - duration: 93.23955ms + duration: 119.477266ms - id: 95 request: proto: HTTP/1.1 @@ -4723,8 +4723,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -4732,20 +4732,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 686 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:55.306042Z","id":"f4cef03a-a25c-4fbf-9bc0-c0b3e5f512c3","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:55.306042Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4753,10 +4753,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c043ee4f-8793-4ac8-b03a-bc1f645ca426 + - b2c9023c-a30a-4d5b-8666-32359182e23e status: 200 OK code: 200 - duration: 151.797098ms + duration: 95.074011ms - id: 96 request: proto: HTTP/1.1 @@ -4772,8 +4772,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -4781,22 +4781,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 700 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4804,12 +4802,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 874df26b-905d-4f42-93e2-c60a1a28a57c - X-Total-Count: - - "0" + - e718e969-16db-4fae-a9ff-487e796ab74e status: 200 OK code: 200 - duration: 144.041653ms + duration: 131.522152ms - id: 97 request: proto: HTTP/1.1 @@ -4825,8 +4821,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -4834,20 +4830,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 686 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:40.868875Z","id":"cacd8dd1-357e-4a82-821b-9a8a6f7bd1c2","product_resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:31:40.868875Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "697" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:59 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4855,10 +4851,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71b8dfad-1935-4384-9db2-d7cdcc23f100 + - f252f1e6-3686-48d7-85c4-192ea44ec094 status: 200 OK code: 200 - duration: 152.211045ms + duration: 66.209716ms - id: 98 request: proto: HTTP/1.1 @@ -4874,8 +4870,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -4883,20 +4879,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 420 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:59 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4904,10 +4900,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29cb0dda-179a-4aa3-b524-1d6f4d3b0afe + - a0adbcae-3691-4c0c-884d-927e56dfddcd status: 200 OK code: 200 - duration: 129.835241ms + duration: 42.848094ms - id: 99 request: proto: HTTP/1.1 @@ -4923,8 +4919,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -4932,20 +4928,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 421 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:31:40.828037+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","modification_date":"2025-06-10T15:31:40.828037+00:00","name":"tf-image-distracted-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4953,10 +4949,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a6889bf-1264-4dc0-8e1e-ec9571fe2184 + - 77f9ef80-96a4-4c24-a108-905b70eb12bf status: 200 OK code: 200 - duration: 130.722174ms + duration: 45.803697ms - id: 100 request: proto: HTTP/1.1 @@ -4972,8 +4968,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -4981,20 +4977,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 1901 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:34.998284Z","id":"b59c2f62-ef7b-4db9-8855-8970f618933c","name":"tf-snapshot-magical-almeida","parent_volume":{"id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","name":"tf-volume-sleepy-hoover","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:55.224873Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "464" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5002,10 +4998,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeaf403b-5add-4199-ad18-b192545611b3 + - f11005cd-e399-44a0-bdfd-754aeaef05d4 status: 200 OK code: 200 - duration: 194.27494ms + duration: 104.483749ms - id: 101 request: proto: HTTP/1.1 @@ -5021,27 +5017,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5049,10 +5047,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eb22527-903e-48c2-b78c-6b7d50d08096 - status: 204 No Content - code: 204 - duration: 264.455626ms + - 623205de-9c18-4379-b0dd-ba6b02f26afc + status: 404 Not Found + code: 404 + duration: 36.31355ms - id: 102 request: proto: HTTP/1.1 @@ -5068,8 +5066,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -5077,20 +5075,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b59c2f62-ef7b-4db9-8855-8970f618933c","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' headers: Content-Length: - - "129" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5098,10 +5096,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7df129a-07b4-48ec-adcb-0fb064a269d2 - status: 404 Not Found - code: 404 - duration: 90.788363ms + - dea8bac3-a5ff-4363-b0f8-7ea0dd1b7f8c + status: 200 OK + code: 200 + duration: 57.398408ms - id: 103 request: proto: HTTP/1.1 @@ -5117,8 +5115,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -5126,20 +5124,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 460 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:34.447894Z","id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","last_detached_at":null,"name":"tf-volume-sleepy-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:34.447894Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5147,10 +5145,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be76ced1-ae02-4428-a480-70662df643e0 + - c2417d11-f6ce-4578-b284-45611d74ec75 status: 200 OK code: 200 - duration: 92.168642ms + duration: 152.313304ms - id: 104 request: proto: HTTP/1.1 @@ -5166,27 +5164,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 686 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:55.306042Z","id":"f4cef03a-a25c-4fbf-9bc0-c0b3e5f512c3","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:55.306042Z","zone":"fr-par-1"}' headers: + Content-Length: + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:01 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5194,10 +5194,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81e4896-d4a0-489e-9bf8-b8378261b8d5 - status: 204 No Content - code: 204 - duration: 205.624575ms + - 5883a85d-b9d3-4f39-a9e0-4f2c0e5a3608 + status: 200 OK + code: 200 + duration: 155.918151ms - id: 105 request: proto: HTTP/1.1 @@ -5213,8 +5213,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data method: GET response: proto: HTTP/2.0 @@ -5222,20 +5222,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "127" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:01 GMT + - Wed, 08 Oct 2025 23:06:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5243,10 +5243,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d72ff51-99b6-4d5b-9eaf-65824bb7efa5 - status: 404 Not Found - code: 404 - duration: 78.515416ms + - dd89d006-acb4-4e36-acaa-80727b1c38ed + status: 200 OK + code: 200 + duration: 67.799451ms - id: 106 request: proto: HTTP/1.1 @@ -5262,27 +5262,31 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 20 uncompressed: false - body: "" + body: '{"private_nics":[]}' headers: + Content-Length: + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:56 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5290,10 +5294,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16bfcc8a-3a6b-453d-bffb-2dde1dd86149 - status: 204 No Content - code: 204 - duration: 1.927352184s + - 404055db-1ba2-417a-bc70-04bbf2c77a43 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 63.050618ms - id: 107 request: proto: HTTP/1.1 @@ -5309,8 +5315,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -5318,20 +5324,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 700 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "142" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5339,10 +5345,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a4b0518-bd75-430c-a3ac-9527c136ba62 - status: 404 Not Found - code: 404 - duration: 39.981831ms + - 365ec096-a95c-4d9a-841b-d51b7d7729ba + status: 200 OK + code: 200 + duration: 110.152165ms - id: 108 request: proto: HTTP/1.1 @@ -5358,8 +5364,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -5367,20 +5373,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 686 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:48.389443Z","id":"623f6b19-4834-49f3-8386-71b5849e8f1c","name":"tf-snapshot-determined-gould","parent_volume":{"id":"f006a22e-62ab-4452-9e8d-0c35ab179314","name":"tf-volume-sad-sammet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:32:02.244255Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "463" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5388,10 +5394,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb0af347-71d2-4fdb-ba9b-d77aba40beb2 + - d295af3a-0afd-4c93-9b18-a9493ed04976 status: 200 OK code: 200 - duration: 131.382974ms + duration: 88.042238ms - id: 109 request: proto: HTTP/1.1 @@ -5407,8 +5413,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -5416,20 +5422,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 686 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:30:47.839564Z","id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","name":"tf-snapshot-jovial-benz","parent_volume":{"id":"1001f41f-ec2f-4c24-a148-895406416614","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:32:02.286636Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "471" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5437,10 +5443,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d927c97-386f-474c-8175-044e3724ab4c + - 25b049a2-1d6f-4965-8983-ab93ada80ce1 status: 200 OK code: 200 - duration: 221.502111ms + duration: 80.98ms - id: 110 request: proto: HTTP/1.1 @@ -5456,8 +5462,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 460 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "460" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:06:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d889064b-f6a3-419a-ae3f-70ae9bc72410 + status: 200 OK + code: 200 + duration: 127.012339ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: DELETE response: proto: HTTP/2.0 @@ -5474,9 +5529,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5484,11 +5539,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e0a1822-1a4d-442c-a567-c62469ce4615 + - cfae92a3-8fa4-420b-8682-50c5b3d963d1 status: 204 No Content code: 204 - duration: 239.085307ms - - id: 111 + duration: 138.229102ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5503,8 +5558,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: GET response: proto: HTTP/2.0 @@ -5514,7 +5569,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"623f6b19-4834-49f3-8386-71b5849e8f1c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","type":"not_found"}' headers: Content-Length: - "129" @@ -5523,9 +5578,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5533,11 +5588,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c063c2cb-173b-4c48-a26f-5a86e8c4b680 + - b8c91155-26c6-47f5-b337-1a6ec30e6cc0 status: 404 Not Found code: 404 - duration: 76.938289ms - - id: 112 + duration: 49.141548ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5552,27 +5607,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 421 uncompressed: false - body: "" + body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' headers: + Content-Length: + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5580,11 +5637,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b65e4e-4a21-4419-bf27-9b7e782de69e - status: 204 No Content - code: 204 - duration: 249.219042ms - - id: 113 + - b9eb626a-c96d-4455-9565-24bbac76996f + status: 200 OK + code: 200 + duration: 44.486567ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5599,29 +5656,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:47.895939Z","id":"f006a22e-62ab-4452-9e8d-0c35ab179314","last_detached_at":null,"name":"tf-volume-sad-sammet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:47.895939Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5629,11 +5684,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb5e16e7-0f82-46e5-8e01-fc4243c09838 - status: 200 OK - code: 200 - duration: 77.289287ms - - id: 114 + - 4195c291-3e18-4b03-966e-67428dba22f4 + status: 204 No Content + code: 204 + duration: 81.54681ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5648,8 +5703,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: GET response: proto: HTTP/2.0 @@ -5657,20 +5712,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","type":"not_found"}' headers: Content-Length: - - "129" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5678,11 +5733,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89cdae32-af71-477d-a9ce-a419bbf02057 + - 19bb91ff-6946-481a-b414-d1400ab6c481 status: 404 Not Found code: 404 - duration: 86.986042ms - - id: 115 + duration: 75.782184ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5697,8 +5752,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: DELETE response: proto: HTTP/2.0 @@ -5715,9 +5770,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5725,11 +5780,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cb6e27-915f-463b-ba07-c1bff2d34257 + - 8ebe89e2-1dd5-4b68-bf3f-af993c78ba28 status: 204 No Content code: 204 - duration: 161.306832ms - - id: 116 + duration: 460.116078ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5744,8 +5799,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -5753,20 +5808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"f006a22e-62ab-4452-9e8d-0c35ab179314","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","type":"not_found"}' headers: Content-Length: - - "127" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:03 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5774,11 +5829,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fd2616a-c307-435d-a74a-64dace790782 + - a1a2c618-4038-44dd-a303-3ce4b22e7cf4 status: 404 Not Found code: 404 - duration: 76.899285ms - - id: 117 + duration: 36.249222ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5793,8 +5848,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -5802,20 +5857,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 460 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:30:39.749501+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:57.997385Z","zone":"fr-par-1"}' headers: Content-Length: - - "1882" + - "460" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:03 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5823,11 +5878,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e44b3db3-2c4f-4a65-beef-a90d2ae2235b + - ec6c1875-f347-4ff8-abb7-451a120422ee status: 200 OK code: 200 - duration: 223.263144ms - - id: 118 + duration: 142.663083ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5842,8 +5897,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -5851,20 +5906,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 700 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:35.223036Z","id":"70163e98-08c7-46b5-9537-cd013cd0d1dd","product_resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:35.223036Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:03 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5872,52 +5927,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 926ee312-ac27-4bec-85d2-0378033b3663 + - 66ce75fa-1156-41ab-a440-f7a0a36c4f22 status: 200 OK code: 200 - duration: 81.127735ms - - id: 119 + duration: 142.76951ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 0 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba/action","href_result":"/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","id":"c9ffeac2-aa74-408b-9f1e-fbd00701fde6","progress":0,"started_at":"2025-06-10T15:32:03.439720+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c9ffeac2-aa74-408b-9f1e-fbd00701fde6 + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5925,11 +5974,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7de459e9-2e18-42df-bec8-9173ab63f45d - status: 202 Accepted - code: 202 - duration: 299.801482ms - - id: 120 + - 1758da79-e557-4d9b-a256-79c97a82e4c9 + status: 204 No Content + code: 204 + duration: 148.268795ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -5944,8 +5993,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: GET response: proto: HTTP/2.0 @@ -5953,20 +6002,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 129 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","type":"not_found"}' headers: Content-Length: - - "1842" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:03 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5974,11 +6023,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a08d051-c9b0-43e7-8606-dc7818f8df89 - status: 200 OK - code: 200 - duration: 222.592837ms - - id: 121 + - 626a7ccd-686b-4c83-b436-2adb3ccfd49d + status: 404 Not Found + code: 404 + duration: 41.20548ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -5993,8 +6042,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -6002,20 +6051,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 420 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' headers: Content-Length: - - "1842" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:08 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6023,11 +6072,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174a1e51-dd7e-4628-aaef-cfd47bca4d96 + - 65640220-3929-4312-80fc-27bd7b90281d status: 200 OK code: 200 - duration: 208.616616ms - - id: 122 + duration: 35.263636ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6042,29 +6091,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1842" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:14 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6072,11 +6119,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b6fe903-a63a-4877-af57-61f10b196e04 - status: 200 OK - code: 200 - duration: 203.196942ms - - id: 123 + - 8c157253-9f61-48b5-84d5-f0761abaeeca + status: 204 No Content + code: 204 + duration: 71.464057ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6091,8 +6138,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: GET response: proto: HTTP/2.0 @@ -6100,20 +6147,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","type":"not_found"}' headers: Content-Length: - - "1842" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6121,11 +6168,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dbda533-b245-42d6-8df0-896f11ab45db - status: 200 OK - code: 200 - duration: 176.706621ms - - id: 124 + - 895b6e59-4c7e-4384-8345-fe4e1c9712dc + status: 404 Not Found + code: 404 + duration: 31.583942ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6140,8 +6187,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -6149,20 +6196,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 474 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:58.070784Z","zone":"fr-par-1"}' headers: Content-Length: - - "1842" + - "474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:24 GMT + - Wed, 08 Oct 2025 23:07:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6170,11 +6217,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeab719a-6a24-4e42-993f-6d5c03af6612 + - 8c87a896-50ef-490f-94dd-4869af63face status: 200 OK code: 200 - duration: 176.542333ms - - id: 125 + duration: 432.5829ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6189,29 +6236,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1842" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:29 GMT + - Wed, 08 Oct 2025 23:07:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6219,11 +6264,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc5c4a01-2351-436d-92f9-18e77724f06b - status: 200 OK - code: 200 - duration: 210.56055ms - - id: 126 + - 781dd86c-0c8c-43f1-8e22-ab305bae83f5 + status: 204 No Content + code: 204 + duration: 295.243488ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6238,8 +6283,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: GET response: proto: HTTP/2.0 @@ -6247,20 +6292,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 129 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"120","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:03.218822+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"92ac67b7-1927-431c-a56e-e4651d925394","type":"not_found"}' headers: Content-Length: - - "1842" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:07:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6268,11 +6313,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 391a9b63-efcf-4df8-a397-833a06acb3b1 - status: 200 OK - code: 200 - duration: 268.193162ms - - id: 127 + - 8c1bc0bb-7a60-4c49-a14b-9a8c8874f56d + status: 404 Not Found + code: 404 + duration: 36.960097ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6287,8 +6332,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -6296,20 +6341,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:37.575419+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6317,48 +6362,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c16cbdac-9f00-4612-a957-21bb91ee944d + - d84f7a14-1a6f-4912-9d6b-e91812934fe8 status: 200 OK code: 200 - duration: 191.505144ms - - id: 128 + duration: 111.242061ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:34.970592+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-wilson","id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5f","maintenances":[],"modification_date":"2025-06-10T15:32:37.575419+00:00","name":"tf-srv-infallible-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1001f41f-ec2f-4c24-a148-895406416614","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action","href_result":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3","id":"3ce08eeb-2231-4d9f-956e-10403a5e8513","progress":0,"started_at":"2025-10-08T23:07:04.518311+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3ce08eeb-2231-4d9f-956e-10403a5e8513 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6366,11 +6415,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58637cad-dbf7-43e6-8077-ec08133c0816 - status: 200 OK - code: 200 - duration: 165.588109ms - - id: 129 + - 12e1b8fe-28d2-497f-93b0-803d9fbe6bdf + status: 202 Accepted + code: 202 + duration: 428.192938ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6385,27 +6434,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1864 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:07:04.148380+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1864" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6413,11 +6464,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73aacf94-13a0-445d-9405-3c98f77ed57f - status: 204 No Content - code: 204 - duration: 368.984943ms - - id: 130 + - 0c93c40a-6058-4306-9a0d-de078a4fba06 + status: 200 OK + code: 200 + duration: 98.220747ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6432,8 +6483,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -6443,7 +6494,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","type":"not_found"}' headers: Content-Length: - "143" @@ -6452,9 +6503,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6462,11 +6513,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44b84f6f-570a-44e3-9d7b-51d8608543e8 + - f392b314-be36-4bfd-9cba-d788c6002331 status: 404 Not Found code: 404 - duration: 94.808421ms - - id: 131 + duration: 44.839969ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6481,8 +6532,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -6492,7 +6543,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1001f41f-ec2f-4c24-a148-895406416614","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' headers: Content-Length: - "143" @@ -6501,9 +6552,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6511,11 +6562,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 039f65fb-5269-4e3c-a86e-705c624171ac + - 68f25565-776d-452a-b800-0f7a755ad63d status: 404 Not Found code: 404 - duration: 78.012001ms - - id: 132 + duration: 29.093398ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6530,8 +6581,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: GET response: proto: HTTP/2.0 @@ -6541,7 +6592,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:35.223036Z","id":"1001f41f-ec2f-4c24-a148-895406416614","last_detached_at":"2025-06-10T15:32:40.744872Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:40.744872Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":"2025-10-08T23:07:06.013843Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:06.013843Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -6550,9 +6601,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6560,11 +6611,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 833731a6-0ab5-4dc2-9882-bd14ec3333e9 + - 50222838-0b55-4caa-8a4a-fb3c8d6adb1f status: 200 OK code: 200 - duration: 87.477883ms - - id: 133 + duration: 42.263848ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6579,8 +6630,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1001f41f-ec2f-4c24-a148-895406416614 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 method: DELETE response: proto: HTTP/2.0 @@ -6597,9 +6648,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6607,11 +6658,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ae707b3-2d86-41d0-9c35-969144fc3060 + - 05370d79-66d6-49b2-b71e-b4275ff10a17 status: 204 No Content code: 204 - duration: 143.266357ms - - id: 134 + duration: 69.989433ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6626,8 +6677,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/b8f7cdd0-5cd4-4935-8fab-01db7ee145c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 method: GET response: proto: HTTP/2.0 @@ -6637,7 +6688,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"b8f7cdd0-5cd4-4935-8fab-01db7ee145c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","type":"not_found"}' headers: Content-Length: - "142" @@ -6646,9 +6697,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6656,11 +6707,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304129d9-79de-42cc-90f3-e9942e698734 + - 75322656-26e2-408e-bbe5-4a32db07748c status: 404 Not Found code: 404 - duration: 35.148417ms - - id: 135 + duration: 27.559718ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6675,8 +6726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/711c3b50-7c32-4c90-8529-7f93d1fc9ef3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d method: DELETE response: proto: HTTP/2.0 @@ -6686,7 +6737,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"711c3b50-7c32-4c90-8529-7f93d1fc9ef3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","type":"not_found"}' headers: Content-Length: - "129" @@ -6695,9 +6746,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6705,11 +6756,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f095977f-d91f-4b8b-bc49-0b55ab4ed1f0 + - cbfdb410-dddd-44ae-9851-9309cd241926 status: 404 Not Found code: 404 - duration: 140.661753ms - - id: 136 + duration: 63.124109ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6724,8 +6775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b59c2f62-ef7b-4db9-8855-8970f618933c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 method: DELETE response: proto: HTTP/2.0 @@ -6735,7 +6786,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b59c2f62-ef7b-4db9-8855-8970f618933c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","type":"not_found"}' headers: Content-Length: - "129" @@ -6744,9 +6795,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6754,11 +6805,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb49c245-623b-439b-af57-2c4edb5c84ee + - 15f3ffd7-adf8-4348-a0ce-96bc0c4e4f89 status: 404 Not Found code: 404 - duration: 133.001727ms - - id: 137 + duration: 62.734077ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6773,8 +6824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/623f6b19-4834-49f3-8386-71b5849e8f1c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 method: DELETE response: proto: HTTP/2.0 @@ -6784,7 +6835,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"623f6b19-4834-49f3-8386-71b5849e8f1c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"92ac67b7-1927-431c-a56e-e4651d925394","type":"not_found"}' headers: Content-Length: - "129" @@ -6793,9 +6844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6803,11 +6854,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83231bd1-761f-48cc-82ab-2106c57563c2 + - d83f1bca-1fb9-4b14-a679-07fa2dd55824 status: 404 Not Found code: 404 - duration: 138.833524ms - - id: 138 + duration: 59.392688ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -6822,8 +6873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/515668c1-9135-47d2-b8d6-d63ea4d929d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb method: DELETE response: proto: HTTP/2.0 @@ -6833,7 +6884,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"515668c1-9135-47d2-b8d6-d63ea4d929d4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","type":"not_found"}' headers: Content-Length: - "127" @@ -6842,9 +6893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6852,11 +6903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6369a266-0c5c-42a5-b466-a892a288e055 + - 5eef5623-2f9a-4b2a-81ac-45ec3c0dd6c3 status: 404 Not Found code: 404 - duration: 136.002074ms - - id: 139 + duration: 56.345307ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6871,8 +6922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f006a22e-62ab-4452-9e8d-0c35ab179314 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 method: DELETE response: proto: HTTP/2.0 @@ -6882,7 +6933,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"f006a22e-62ab-4452-9e8d-0c35ab179314","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","type":"not_found"}' headers: Content-Length: - "127" @@ -6891,9 +6942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6901,11 +6952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5276402d-258c-4bba-aa4a-46382d76664c + - 3a9ee1fd-e1f7-41c9-b0c7-0698ab56ae43 status: 404 Not Found code: 404 - duration: 123.12764ms - - id: 140 + duration: 60.933613ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -6920,8 +6971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f073d76a-74b3-48ca-a9ef-f441ee6cf5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 method: GET response: proto: HTTP/2.0 @@ -6931,7 +6982,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f073d76a-74b3-48ca-a9ef-f441ee6cf5ba","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","type":"not_found"}' headers: Content-Length: - "143" @@ -6940,9 +6991,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:41 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6950,7 +7001,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1414fdd8-309a-42af-b6cd-c84b5ef3d46a + - f3b0cd21-548a-47e3-a370-98964084a83f status: 404 Not Found code: 404 - duration: 83.259192ms + duration: 52.633652ms diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml index 1eb4cc7e5..3dfadfdf4 100644 --- a/internal/services/instance/testdata/image-server.cassette.yaml +++ b/internal/services/instance/testdata/image-server.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58d9c7bc-2ed8-4f65-8ba6-644d6ab5f056 + - d00250e1-07b8-4b82-a7b3-e5d80f2ec560 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 67.170261ms + duration: 88.630402ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80492cd2-1178-40e8-afc1-f7d232915aae + - 5b9a54ae-c7de-4818-b5ae-464ae7eb5e9c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 88.066951ms + duration: 48.377184ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ec980aa-c1e9-4515-8310-5adb52185739 + - de2f1997-fb4d-4213-82ce-389cb343e2ec status: 200 OK code: 200 - duration: 123.519108ms + duration: 39.416738ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 232 + content_length: 236 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-eager-cannon","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-dazzling-khorana","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1712 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:11.904176+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1712" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d019ea0-4acc-49e9-b5d6-2bd13cbdcafb + - aeda2ae1-8f63-470e-838b-fc4c6605aef7 status: 201 Created code: 201 - duration: 818.728715ms + duration: 548.038908ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1712 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:11.904176+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1712" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 388faf94-2754-4a68-a9c8-56146cdc40a4 + - 74e7188d-2546-4946-96e5-3441788c6a6c status: 200 OK code: 200 - duration: 201.863815ms + duration: 89.288169ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1712 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:11.904176+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1712" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30b6d821-a0d0-4d7d-81c6-91b70700b478 + - 0c2ab768-0346-469e-855c-8987f980b2af status: 200 OK code: 200 - duration: 182.149083ms + duration: 105.97112ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848cc0de-9be0-41ce-ad2c-e4255e7ecf19 + - f8dbddb8-6dcd-4c88-9a24-6fcabe55bd1d status: 200 OK code: 200 - duration: 80.173527ms + duration: 55.687324ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/action","href_result":"/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0","id":"8abeb906-655d-4ef5-95db-23a90c51a89b","progress":0,"started_at":"2025-06-10T15:31:13.201798+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action","href_result":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","id":"5d9574a9-2d80-4b43-af48-577515d1b526","progress":0,"started_at":"2025-10-08T23:05:52.415270+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8abeb906-655d-4ef5-95db-23a90c51a89b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d9574a9-2d80-4b43-af48-577515d1b526 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c89c7e7-3268-4782-9bfa-cd7d6cbdb27a + - 8decc10c-f8d0-4f42-8d71-c219262eea4a status: 202 Accepted code: 202 - duration: 342.542395ms + duration: 388.398329ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1764 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:12.948952+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:52.081220+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1734" + - "1764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Wed, 08 Oct 2025 23:05:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82a06e37-2d3a-4200-a1dc-e847fa44951f + - 581f2a9b-fbe6-4df9-8189-9025ebf63ab8 status: 200 OK code: 200 - duration: 239.086252ms + duration: 83.502874ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e4c5de6-97a0-45cf-b0e2-0055eb0e456e + - ff13754c-40d2-42ec-b472-5f7a07e45798 status: 200 OK code: 200 - duration: 400.062066ms + duration: 106.740902ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a818b1f5-5e15-4c8f-a15f-8075ae5e8712 + - 67649618-bb02-4300-a1cb-c20077887ab4 status: 200 OK code: 200 - duration: 206.678755ms + duration: 102.332497ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 085bd021-c40b-48c7-a5bc-421543dff7c7 + - 8e9b347d-b21e-42c5-8147-63f875948b26 status: 404 Not Found code: 404 - duration: 34.870246ms + duration: 33.413357ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5644557c-c7c3-4cea-9a2c-db50dba5de2c + - c8d59492-d90e-42c3-bdd2-48d0f1b93707 status: 200 OK code: 200 - duration: 100.911399ms + duration: 52.626864ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a328a3d4-aa7f-4edd-87d0-c4ca9cd18ace + - e2f5db0d-7e0e-4fcc-8766-3df2f4981b0b status: 200 OK code: 200 - duration: 103.185725ms + duration: 51.011863ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,30 +750,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d865196-7cc1-4af6-9a5d-988b1612336f + - 0f0ea02a-5db5-4be6-afbd-af20df8682e1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 109.58245ms + duration: 72.749455ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 155 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"tf-snapshot-cool-roentgen","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: '{"volume_id":"d6387d09-1017-4c84-a841-599e71585f54","name":"tf-snapshot-compassionate-rubin","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -782,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 472 + content_length: 478 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:19.618064Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "472" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05d1ed87-df1f-477b-b2d1-18af6833cd1d + - 7508a6a3-6200-44b6-b0d6-85d94b75241c status: 200 OK code: 200 - duration: 291.649008ms + duration: 235.327898ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -831,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:19.677702Z","id":"9e6a856d-d213-443f-8f5d-b36336e5ba90","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-10T15:31:19.618064Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "703" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2def45ad-1cb7-4e1d-89b6-1d31e63427f4 + - f70e4e02-f49e-4883-a132-0089b883e66c status: 200 OK code: 200 - duration: 327.602465ms + duration: 148.577281ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:19.618064Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:27 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c582d48-ebfa-473d-93df-456bdf170121 + - d82bc40f-f5c3-4f06-ad34-ff78294c6019 status: 200 OK code: 200 - duration: 211.905111ms + duration: 242.892965ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -929,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 709 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:31:19.618064Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:28 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,52 +950,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 536837ec-410b-4487-a536-ec48d1a4384b + - 94e65a5d-b201-4e7d-a9fc-611d84bacc27 status: 200 OK code: 200 - duration: 169.263132ms + duration: 439.335066ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 197 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-agitated-villani","root_volume":"1b990384-3b15-46d5-ad68-e1441151a4c5","arch":"x86_64","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test_remove_tags"],"public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 709 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "603" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04099310-a422-4045-bfe1-ee8051c75f13 - status: 201 Created - code: 201 - duration: 409.780572ms + - 2dd1f7ff-c467-430e-bebc-995794e09892 + status: 200 OK + code: 200 + duration: 610.200686ms - id: 20 request: proto: HTTP/1.1 @@ -1022,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1031,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 709 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "603" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:28 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f72f1cf-6b2a-470b-9c07-efe6fc16e96f + - c6109204-60d3-4a2b-9237-7b8a7240837a status: 200 OK code: 200 - duration: 106.929313ms + duration: 266.11615ms - id: 21 request: proto: HTTP/1.1 @@ -1071,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1080,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 709 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "603" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:28 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015828ff-7957-4932-bf0b-6bbe22212c29 + - 4f29018e-3447-4b05-97ee-5977196e8f4d status: 200 OK code: 200 - duration: 107.949265ms + duration: 316.59231ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1129,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "1868" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:29 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b609df-d8b4-42f2-b13e-ff8e3f504926 + - fccbc8ea-0cd5-4dd2-a2c7-e72c958faad4 status: 200 OK code: 200 - duration: 199.941114ms + duration: 368.755681ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1178,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 479 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' headers: Content-Length: - - "699" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:29 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,48 +1195,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52731b93-bd6f-42df-8ac5-b2b2ee8e59e5 + - 923ac514-2ab2-4c6a-b59f-b2e7c1920f69 status: 200 OK code: 200 - duration: 165.437658ms + duration: 128.837292ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 198 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-unruffled-keldysh","root_volume":"7c04256d-ce96-4195-ae92-01c45f334af7","arch":"x86_64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["test_remove_tags"],"public":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 604 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:29 GMT + - Wed, 08 Oct 2025 23:06:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7971db7-d10e-4479-8e47-91e7dfe5669d - status: 200 OK - code: 200 - duration: 95.957576ms + - 0e65fd24-03d0-451e-ac2d-db35440ba354 + status: 201 Created + code: 201 + duration: 554.908594ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 604 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629e0b80-8874-4882-9c05-4898b68676be + - 0272b294-9d90-4762-a913-ab77edb50ce7 status: 200 OK code: 200 - duration: 216.588754ms + duration: 66.09474ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -1325,20 +1325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 604 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 255335a7-ec4f-4eb4-ade4-4181abac1a0e - status: 404 Not Found - code: 404 - duration: 57.553093ms + - c6d709e7-3c34-4b48-aa8c-ebda67be262b + status: 200 OK + code: 200 + duration: 75.123823ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -1374,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1899 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bb92974-b43e-419c-94dc-178256da946c + - 6d8ccd92-4ac7-43fc-b4b5-b062b2678bca status: 200 OK code: 200 - duration: 78.023343ms + duration: 103.625368ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1423,20 +1423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a36e6646-1b26-45ca-963a-7e1d1545b43c + - 4c7d1e55-6d0e-4b23-9e3c-039c5cb23cb0 status: 200 OK code: 200 - duration: 139.815907ms + duration: 128.575397ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -1472,22 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 604 uncompressed: false - body: '{"private_nics":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:30 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e3440d7-67d1-42e6-bb2c-1949af5cbd27 - X-Total-Count: - - "0" + - 0b061aa1-b97a-451c-89fd-a00c153f976f status: 200 OK code: 200 - duration: 99.774144ms + duration: 63.21125ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "699" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2603066-f011-4a59-9258-736da1822e03 + - 24ddb214-c96c-4b3f-a9c8-5db46cc82912 status: 200 OK code: 200 - duration: 109.084094ms + duration: 101.064966ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 143 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' headers: Content-Length: - - "603" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:31 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4634f66-b5e8-43c8-aea5-13ce24cc93ad - status: 200 OK - code: 200 - duration: 122.164183ms + - fc66afd4-6861-4194-8198-59d7fafa5206 + status: 404 Not Found + code: 404 + duration: 38.867263ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -1623,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' headers: Content-Length: - - "1868" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1030df04-5390-44b5-884d-a53616846e20 + - a57fa7a6-975b-48e9-81f5-da2557c91764 status: 200 OK code: 200 - duration: 214.673202ms + duration: 45.458742ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data method: GET response: proto: HTTP/2.0 @@ -1672,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "143" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5bfc118-b540-4ca4-943f-cc8b01ab6b66 - status: 404 Not Found - code: 404 - duration: 40.517656ms + - 042bb2ce-e2b6-4f28-a9cd-246a98eb9362 + status: 200 OK + code: 200 + duration: 66.790758ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics method: GET response: proto: HTTP/2.0 @@ -1721,20 +1717,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1740,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11781d78-a955-4a3e-8976-a90e5a2cdad6 + - bc134ba0-cf7c-41b5-b35c-63d1f51bee8c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 73.568739ms + duration: 48.55748ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -1770,20 +1770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b4d6a14-1c87-40df-afa7-8c3462814a22 + - 68257f3d-16b4-4be6-9e61-bdb069d540b6 status: 200 OK code: 200 - duration: 132.591529ms + duration: 103.051555ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -1819,22 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 604 uncompressed: false - body: '{"private_nics":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,12 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89dba0a9-a103-46ec-a059-6d932fac7dbb - X-Total-Count: - - "0" + - d2f594aa-2594-4f07-8736-adad85ace807 status: 200 OK code: 200 - duration: 136.842741ms + duration: 67.974651ms - id: 37 request: proto: HTTP/1.1 @@ -1863,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -1872,20 +1868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "699" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6687210-3bc7-47df-a71a-7402d503eb93 + - 74b7e168-c92d-4243-bb52-5f2db0d4ce8f status: 200 OK code: 200 - duration: 117.188502ms + duration: 98.807705ms - id: 38 request: proto: HTTP/1.1 @@ -1912,8 +1908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -1921,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 143 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' headers: Content-Length: - - "603" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6132f54d-f0e9-471e-8b4d-6f964177ba7c - status: 200 OK - code: 200 - duration: 166.988156ms + - 29e28232-e271-4675-8ff8-c94864da9b40 + status: 404 Not Found + code: 404 + duration: 30.879801ms - id: 39 request: proto: HTTP/1.1 @@ -1961,8 +1957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -1970,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 701 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' headers: Content-Length: - - "603" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:33 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae5023c2-4c30-4fa5-ad64-84bd51beb2d9 + - 11b64bba-ee6f-4424-8bc5-befcdf17eab9 status: 200 OK code: 200 - duration: 114.542751ms + duration: 46.349511ms - id: 40 request: proto: HTTP/1.1 @@ -2010,8 +2006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data method: GET response: proto: HTTP/2.0 @@ -2019,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 17 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:28.251185+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "603" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,50 +2036,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c6f5aa-49dd-4827-8992-5796b384a526 + - 1d54c53a-76d8-4417-b709-aa86fdb8bb2b status: 200 OK code: 200 - duration: 118.427516ms + duration: 51.847073ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 62 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-agitated-villani","arch":"x86_64","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 20 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "585" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:06:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,10 +2087,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb797474-4747-4687-811c-7eef79233959 + - 473b88ce-8f61-4088-81dc-170a8acc1c8e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 167.655587ms + duration: 54.962923ms - id: 42 request: proto: HTTP/1.1 @@ -2110,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -2119,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 705 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "585" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0058ad84-9c69-4be9-a648-b257a4df3b0d + - b9113173-ca14-468d-bf52-514effff5157 status: 200 OK code: 200 - duration: 111.190664ms + duration: 130.472389ms - id: 43 request: proto: HTTP/1.1 @@ -2159,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2168,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 604 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "585" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 072ff7f3-dbe3-437a-a317-731d03f09ada + - 6f1b3b99-f4ee-4d6d-9da6-0c12a69d243c status: 200 OK code: 200 - duration: 156.48641ms + duration: 65.321368ms - id: 44 request: proto: HTTP/1.1 @@ -2208,8 +2206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2217,20 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 604 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:34 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,10 +2236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97031f04-9128-46ec-a0b3-d0259e222806 + - 3db02eef-10bd-403f-ade6-a03be62044b1 status: 200 OK code: 200 - duration: 214.162866ms + duration: 73.775605ms - id: 45 request: proto: HTTP/1.1 @@ -2257,8 +2255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2266,20 +2264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 604 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "699" + - "604" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:35 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,48 +2285,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15e9466-2c3e-4113-b40e-d10dcbdf6e94 + - 2094fa0f-dfa6-46b5-a9bb-c78d9c1eca25 status: 200 OK code: 200 - duration: 151.817625ms + duration: 71.297045ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-unruffled-keldysh","arch":"x86_64","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 586 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "585" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:35 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc7fdb4-7d84-4950-943c-67e9fd2d8482 + - 134a3f23-e435-471a-ae86-356718a3916e status: 200 OK code: 200 - duration: 125.448733ms + duration: 81.945546ms - id: 47 request: proto: HTTP/1.1 @@ -2355,8 +2355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2364,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 586 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d76a40d8-5b07-420e-8420-368217f4f10d + - 9e63686b-62d8-4fcb-aa1e-36d4c9c5b5e9 status: 200 OK code: 200 - duration: 178.478954ms + duration: 61.375039ms - id: 48 request: proto: HTTP/1.1 @@ -2404,8 +2404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2413,20 +2413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 586 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","type":"not_found"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b77d5217-c507-475a-924a-1c6008f4601a - status: 404 Not Found - code: 404 - duration: 38.649462ms + - 7b356231-0f4c-406b-88fc-ad478f8b274f + status: 200 OK + code: 200 + duration: 56.73771ms - id: 49 request: proto: HTTP/1.1 @@ -2453,8 +2453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -2462,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1899 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f911b670-127a-4c74-a00c-515ab8d74a9a + - 970e1464-a0d4-4308-8ef5-052e618eb34c status: 200 OK code: 200 - duration: 71.471896ms + duration: 93.928939ms - id: 50 request: proto: HTTP/1.1 @@ -2502,8 +2502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -2511,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6251aedf-5db9-4e34-94cf-558b9e0467f3 + - dc4d6ca0-b0aa-4ace-904e-da214bb1811c status: 200 OK code: 200 - duration: 87.196797ms + duration: 110.313574ms - id: 51 request: proto: HTTP/1.1 @@ -2551,8 +2551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2560,22 +2560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 586 uncompressed: false - body: '{"private_nics":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2583,12 +2581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4531eb61-861b-494d-a6ce-7ee2547c3348 - X-Total-Count: - - "0" + - 8cad1673-ef5f-44b5-9efb-2e5a45708b24 status: 200 OK code: 200 - duration: 99.868411ms + duration: 80.653282ms - id: 52 request: proto: HTTP/1.1 @@ -2604,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -2613,20 +2609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "699" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,10 +2630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe9df548-353c-4d8c-9ec3-22e07257ff7f + - 9cb81885-d5c0-4e69-a6c4-d786ff05b620 status: 200 OK code: 200 - duration: 267.53642ms + duration: 116.222718ms - id: 53 request: proto: HTTP/1.1 @@ -2653,8 +2649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -2662,20 +2658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 143 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' headers: Content-Length: - - "585" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:36 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75d3ec3f-5e75-400b-b3c8-cf71e3254e88 - status: 200 OK - code: 200 - duration: 110.66647ms + - 4d0efc31-d6e7-466e-93ae-c2e566675327 + status: 404 Not Found + code: 404 + duration: 33.145306ms - id: 54 request: proto: HTTP/1.1 @@ -2702,8 +2698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -2711,20 +2707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 585 + content_length: 701 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-06-10T15:32:28.251185+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","modification_date":"2025-06-10T15:32:34.110215+00:00","name":"tf-image-agitated-villani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' headers: Content-Length: - - "585" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:37 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,10 +2728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9d372b-c496-4fb0-9728-4224d628123d + - f3b8c04a-e294-48b9-8c8d-943fca24907d status: 200 OK code: 200 - duration: 105.316147ms + duration: 40.874912ms - id: 55 request: proto: HTTP/1.1 @@ -2751,27 +2747,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 17 uncompressed: false - body: "" + body: '{"user_data":[]}' headers: + Content-Length: + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2779,10 +2777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8570f6a7-ac47-4db0-b173-96bc4d1b9042 - status: 204 No Content - code: 204 - duration: 1.537894843s + - 0f9fc5e2-b4a7-440b-bdd1-c6c54a6a28f3 + status: 200 OK + code: 200 + duration: 56.195626ms - id: 56 request: proto: HTTP/1.1 @@ -2798,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics method: GET response: proto: HTTP/2.0 @@ -2807,20 +2805,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "142" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Wed, 08 Oct 2025 23:06:34 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,10 +2828,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 596b6f91-d0ec-4088-860b-532bac778904 - status: 404 Not Found - code: 404 - duration: 37.390541ms + - 22cd33bd-5928-4f26-b23a-0f8ef57a5063 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 55.067617ms - id: 57 request: proto: HTTP/1.1 @@ -2847,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -2856,20 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 699 + content_length: 705 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:32:28.285107Z","id":"012f4962-5237-49b8-9f09-4ff13f408827","product_resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-06-10T15:32:28.285107Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "699" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2877,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40592aa9-8dde-443d-8306-e7df30f9bcbe + - ba528164-3b28-4349-97f8-8b59a6165a77 status: 200 OK code: 200 - duration: 219.890406ms + duration: 110.45691ms - id: 58 request: proto: HTTP/1.1 @@ -2896,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -2905,20 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 586 uncompressed: false - body: '{"class":"sbs","created_at":"2025-06-10T15:31:19.618064Z","id":"1b990384-3b15-46d5-ad68-e1441151a4c5","name":"tf-snapshot-cool-roentgen","parent_volume":{"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-10T15:32:39.268808Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:44 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2926,10 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d770d7e4-e528-496e-95f7-f294ed6e442b + - a2cfd999-b660-4057-ab16-905d9de27672 status: 200 OK code: 200 - duration: 258.357666ms + duration: 65.090289ms - id: 59 request: proto: HTTP/1.1 @@ -2945,27 +2947,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 586 uncompressed: false - body: "" + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: + Content-Length: + - "586" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 23:06:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2973,10 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44e4de58-fc7f-46fb-b029-4cea85933168 - status: 204 No Content - code: 204 - duration: 264.532787ms + - 665dd390-b2e2-40dd-98b3-c6e6bd9d6207 + status: 200 OK + code: 200 + duration: 74.656486ms - id: 60 request: proto: HTTP/1.1 @@ -2992,29 +2996,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1b990384-3b15-46d5-ad68-e1441151a4c5","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,10 +3024,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc6defe3-b87c-4c85-9587-8cf6ed8aea2f - status: 404 Not Found - code: 404 - duration: 108.329588ms + - e972ecd0-9e38-4984-bb74-0a671df04e00 + status: 204 No Content + code: 204 + duration: 637.299955ms - id: 61 request: proto: HTTP/1.1 @@ -3041,8 +3043,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -3050,20 +3052,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 142 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:31:16.905728+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","type":"not_found"}' headers: Content-Length: - - "1868" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3071,10 +3073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49bb4825-ba1c-4819-9ddc-c545b6e35213 - status: 200 OK - code: 200 - duration: 173.447087ms + - 8be2ad91-63c6-4f84-b544-7a1106fd6214 + status: 404 Not Found + code: 404 + duration: 29.17398ms - id: 62 request: proto: HTTP/1.1 @@ -3090,8 +3092,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -3099,20 +3101,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:12.097878Z","id":"085e1484-0c11-44ba-b645-42a3d2ebc8e7","product_resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:12.097878Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3120,52 +3122,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0b265e-dee2-4f43-86e7-889e4b673512 + - 2c97f323-c5b2-4ed8-94c1-db7d26d7690c status: 200 OK code: 200 - duration: 83.242401ms + duration: 205.347789ms - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 479 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0/action","href_result":"/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0","id":"aaf28291-98ef-4cf7-bdb5-3a03f7eee9c1","progress":0,"started_at":"2025-06-10T15:32:45.768060+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:35.615913Z","zone":"fr-par-1"}' headers: Content-Length: - - "352" + - "479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aaf28291-98ef-4cf7-bdb5-3a03f7eee9c1 + - Wed, 08 Oct 2025 23:06:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3173,10 +3171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cfe9501-1c29-4431-8cf8-dd3bda84b205 - status: 202 Accepted - code: 202 - duration: 401.06736ms + - 684b4a0c-21ed-4d2d-a7e1-2bca4d6bb92f + status: 200 OK + code: 200 + duration: 156.304106ms - id: 64 request: proto: HTTP/1.1 @@ -3192,29 +3190,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:32:45.416633+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1828" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:45 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3222,10 +3218,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4667b8c-2e98-4906-8349-add5119bedc2 - status: 200 OK - code: 200 - duration: 193.006598ms + - cc314342-505c-4976-a305-9e38846a35c5 + status: 204 No Content + code: 204 + duration: 159.401282ms - id: 65 request: proto: HTTP/1.1 @@ -3241,8 +3237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: GET response: proto: HTTP/2.0 @@ -3250,20 +3246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 129 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:32:45.416633+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7c04256d-ce96-4195-ae92-01c45f334af7","type":"not_found"}' headers: Content-Length: - - "1828" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:51 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3271,10 +3267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a67c4d23-405c-4445-8ed5-996349f2f0e0 - status: 200 OK - code: 200 - duration: 176.902427ms + - ab913db8-95b0-4bfb-a79c-fa86fd996115 + status: 404 Not Found + code: 404 + duration: 40.571618ms - id: 66 request: proto: HTTP/1.1 @@ -3290,8 +3286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -3299,20 +3295,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"603","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:32:45.416633+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:56 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3320,48 +3316,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf0954b8-91d4-48c6-9155-eaa2ea262575 + - c865ee47-c48c-46bd-a3da-2ce3f610838b status: 200 OK code: 200 - duration: 260.795577ms + duration: 110.527747ms - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1712 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:33:01.027535+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action","href_result":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","id":"30ace198-c2f9-4580-8a42-dabb7c256ff1","progress":0,"started_at":"2025-10-08T23:06:41.485832+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1712" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:01 GMT + - Wed, 08 Oct 2025 23:06:41 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30ace198-c2f9-4580-8a42-dabb7c256ff1 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3369,10 +3369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c619aa3-e3cc-48ca-aada-fce5181590a2 - status: 200 OK - code: 200 - duration: 202.505562ms + - 9e8feef1-b684-4eb4-afdd-7ceca77dd23e + status: 202 Accepted + code: 202 + duration: 227.595046ms - id: 68 request: proto: HTTP/1.1 @@ -3388,8 +3388,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -3397,20 +3397,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1712 + content_length: 1862 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:11.904176+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cannon","id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:79","maintenances":[],"modification_date":"2025-06-10T15:33:01.027535+00:00","name":"tf-srv-eager-cannon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:06:41.314463+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1712" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:01 GMT + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3418,10 +3418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31c2adfe-712e-4960-956b-be3eb93c9405 + - 30ece163-6021-402c-906d-fc916ff3b812 status: 200 OK code: 200 - duration: 183.074442ms + duration: 92.72158ms - id: 69 request: proto: HTTP/1.1 @@ -3437,55 +3437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:33:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 448bb856-cee5-44c9-9dea-bcfe4c0b91dc - status: 204 No Content - code: 204 - duration: 295.320952ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -3495,7 +3448,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","type":"not_found"}' headers: Content-Length: - "143" @@ -3504,9 +3457,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3514,11 +3467,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 615d9c64-2459-4d47-812c-79ce87a90c5c + - 039127af-8b81-4a31-9dba-abd567fc2b72 status: 404 Not Found code: 404 - duration: 120.113105ms - - id: 71 + duration: 50.969745ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3533,8 +3486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -3544,7 +3497,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' headers: Content-Length: - "143" @@ -3553,9 +3506,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3563,11 +3516,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717dcfea-088a-4fbf-8133-36ad1eafecd1 + - 6107fc29-302a-4d8b-817a-fa213d3ee6f4 status: 404 Not Found code: 404 - duration: 36.046009ms - - id: 72 + duration: 36.181117ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3582,8 +3535,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: GET response: proto: HTTP/2.0 @@ -3593,7 +3546,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:12.097878Z","id":"2db5cc20-76c4-45ea-91f4-3e37b67ae32d","last_detached_at":"2025-06-10T15:33:02.162630Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:33:02.162630Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":"2025-10-08T23:06:42.846130Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:42.846130Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3602,9 +3555,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3612,11 +3565,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a313896c-b234-4b07-9752-b78ac29b082b + - 2a9ac9a0-668e-4f56-bc61-acb241a49445 status: 200 OK code: 200 - duration: 83.530881ms - - id: 73 + duration: 42.614702ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3631,8 +3584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2db5cc20-76c4-45ea-91f4-3e37b67ae32d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 method: DELETE response: proto: HTTP/2.0 @@ -3649,9 +3602,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3659,11 +3612,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb73b89-d1dc-4f67-8f57-5d8011b79979 + - a29e0c0c-4e1c-4833-9adf-450d0950038f status: 204 No Content code: 204 - duration: 144.795343ms - - id: 74 + duration: 66.75555ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3678,8 +3631,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a6f73551-1b21-40dd-b4ba-d372b99ac946 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 method: GET response: proto: HTTP/2.0 @@ -3689,7 +3642,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a6f73551-1b21-40dd-b4ba-d372b99ac946","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","type":"not_found"}' headers: Content-Length: - "142" @@ -3698,9 +3651,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3708,11 +3661,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5fcec92-eb2b-4b0e-997f-c1d5a1f2a169 + - b54a6c1c-5e53-4000-a0f8-8805d52563d7 status: 404 Not Found code: 404 - duration: 37.215452ms - - id: 75 + duration: 30.191304ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3727,8 +3680,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1b990384-3b15-46d5-ad68-e1441151a4c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 method: DELETE response: proto: HTTP/2.0 @@ -3738,7 +3691,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1b990384-3b15-46d5-ad68-e1441151a4c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7c04256d-ce96-4195-ae92-01c45f334af7","type":"not_found"}' headers: Content-Length: - "129" @@ -3747,9 +3700,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3757,11 +3710,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bbd9b52-5743-4ae3-8e94-8c651e5cb1ab + - 4a5c3726-6b43-40b3-9893-3f5bd618dcbc status: 404 Not Found code: 404 - duration: 120.698824ms - - id: 76 + duration: 57.058401ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3776,8 +3729,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcea7c6b-332c-4e21-9254-4a6e214775d0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 method: GET response: proto: HTTP/2.0 @@ -3787,7 +3740,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dcea7c6b-332c-4e21-9254-4a6e214775d0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","type":"not_found"}' headers: Content-Length: - "143" @@ -3796,9 +3749,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3806,7 +3759,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba7edbd6-4e5d-4943-a9d1-21f47a357d47 + - 98da47fc-9dea-47b7-9650-09979af74b60 status: 404 Not Found code: 404 - duration: 88.561045ms + duration: 48.800227ms diff --git a/internal/services/instance/testdata/placement-group-rename.cassette.yaml b/internal/services/instance/testdata/placement-group-rename.cassette.yaml index 89d0141f0..d7df702b1 100644 --- a/internal/services/instance/testdata/placement-group-rename.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-rename.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"foo","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"low_latency"}' + body: '{"name":"foo","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","policy_mode":"enforced","policy_type":"low_latency"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c955e8b-47d9-48ae-970d-29b1000badba + - a468ba02-479e-47aa-a7bf-0f20b962077c status: 201 Created code: 201 - duration: 623.133053ms + duration: 154.825756ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a422f8-74d4-4370-8bb5-301fda60031f + - 4b3ac3f0-ca4b-4355-8545-3642f984cfe6 status: 200 OK code: 200 - duration: 203.452999ms + duration: 74.480201ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 081738d5-8395-4ec3-993b-dd86655d9559 + - fc63009f-a032-4969-b980-2e85694c9023 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 91.24184ms + duration: 71.450158ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 967522cb-1547-4f4c-958a-bf221b823602 + - 36ca6079-b832-4c5b-9c5f-765cb011da21 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 101.591881ms + duration: 54.071297ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,28 +254,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31760aff-f504-4baf-ba20-ef33acb124bd + - e666c52a-fdc7-48fd-acbf-24b73515e2a1 status: 200 OK code: 200 - duration: 126.410388ms + duration: 53.838255ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 291 + content_length: 289 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-boring-solomon","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":"5eb97ee0-9135-44e8-97c7-95668a23227e"}' + body: '{"name":"tf-srv-busy-meitner","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","placement_group":"c50eb217-377a-40e3-84cb-4c101bc6a228"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2014 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:51.867266+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1996" + - "2014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9df44bbb-d9cd-46d2-b8f7-3f601204f83f + - 9fbf8c38-b4f8-45ab-aa58-f432d738ecce status: 201 Created code: 201 - duration: 1.113646012s + duration: 458.332353ms - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2014 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:51.867266+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1996" + - "2014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 966e4204-0d89-4def-9f72-6511e6eefa72 + - 842621d9-3f17-46de-886a-cf98a281743e status: 200 OK code: 200 - duration: 184.458696ms + duration: 119.298937ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 2014 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:51.867266+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1996" + - "2014" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8014d29f-5ace-48e6-b449-58dafe6c4a43 + - 6e3be35b-f755-47b7-b8fb-49fc396c72b1 status: 200 OK code: 200 - duration: 238.148869ms + duration: 111.883432ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:52.094696Z","id":"75450dd2-98eb-4d41-8a7b-a5d9e73ec31f","product_resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:52.094696Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23161ff9-444e-474d-9df4-93720b53095b + - d156a0fc-ac8a-4c40-90fb-f094866531c3 status: 200 OK code: 200 - duration: 116.392029ms + duration: 37.00749ms - id: 9 request: proto: HTTP/1.1 @@ -475,8 +475,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/action","href_result":"/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c","id":"68184371-e5a7-48a2-be05-e4fccecc2739","progress":0,"started_at":"2025-06-10T15:28:53.345367+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action","href_result":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1","id":"66b18433-aaef-47b7-95a6-891d2c2e22ea","progress":0,"started_at":"2025-10-08T23:05:26.720061+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/68184371-e5a7-48a2-be05-e4fccecc2739 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/66b18433-aaef-47b7-95a6-891d2c2e22ea Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b60da61-06fe-480f-a1b2-ebcbe358551a + - 19c3f6dd-44a6-4957-b884-c7b3715281cf status: 202 Accepted code: 202 - duration: 292.448105ms + duration: 186.985625ms - id: 10 request: proto: HTTP/1.1 @@ -526,8 +526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -535,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2018 + content_length: 2036 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:53.157513+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:26.576681+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2018" + - "2036" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c09f4eeb-8565-427d-be4d-a4341bf7ac3d + - 70a7b50c-1b5c-4bc2-a4b4-45097ce26754 status: 200 OK code: 200 - duration: 156.050687ms + duration: 105.129211ms - id: 11 request: proto: HTTP/1.1 @@ -575,8 +575,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -584,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2153 + content_length: 2171 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:57.947522+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2153" + - "2171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06d7dc7a-b6c6-49fe-8870-58125d38545a + - 9f523924-b99a-4828-a23b-38f3d2e1d4ae status: 200 OK code: 200 - duration: 197.852515ms + duration: 96.551471ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2153 + content_length: 2171 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:57.947522+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2153" + - "2171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8261a9fa-5cb9-4357-ab38-b6eb6a543523 + - caed9a07-c215-4259-b4aa-dc0c68c205a2 status: 200 OK code: 200 - duration: 216.221395ms + duration: 121.40724ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 089b6a56-7001-4934-84bf-0c7e978f5fae + - 377a9540-8036-44e3-99db-1703f7cdcdb2 status: 404 Not Found code: 404 - duration: 61.102185ms + duration: 29.296425ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:52.094696Z","id":"75450dd2-98eb-4d41-8a7b-a5d9e73ec31f","product_resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:52.094696Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afc045f1-3a5e-4e48-9cd9-0eb6035e0900 + - 5a714c42-5e80-4166-8ec1-3f163dac3cfb status: 200 OK code: 200 - duration: 81.69719ms + duration: 45.749561ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d132878-b48f-4e0a-ae72-92ec9a7bc5a1 + - e455280f-713f-4473-a552-048519b0b3f4 status: 200 OK code: 200 - duration: 129.404923ms + duration: 63.765852ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c576a2a-d666-4ff0-941f-b3815025a888 + - e1c60bcc-8f6a-4dc1-8526-284d19a46bd3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.616125ms + duration: 49.133539ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbc95439-5d36-481b-87ee-112c72dc863e + - c20a975e-2267-459a-8ae3-1b237586912d status: 200 OK code: 200 - duration: 157.222524ms + duration: 63.787803ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7206bf7e-d4b4-4a0a-89b3-ff93d02b6ba7 + - ce5c36f7-a821-4df0-90be-3159d41e3935 status: 200 OK code: 200 - duration: 111.269241ms + duration: 62.957956ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2153 + content_length: 2171 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:57.947522+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2153" + - "2171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bba73887-86f0-421a-ad84-27bc0fa5e274 + - ca6c4819-6cbb-4608-be79-cfc327376cc2 status: 200 OK code: 200 - duration: 195.682093ms + duration: 123.157933ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e781950f-b768-4f0e-9f9a-d1e0c0e26dcc + - a529f0e6-0cb0-4e4f-a448-223377a83e74 status: 404 Not Found code: 404 - duration: 56.070959ms + duration: 34.275748ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:52.094696Z","id":"75450dd2-98eb-4d41-8a7b-a5d9e73ec31f","product_resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:52.094696Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3ac4fd5-49db-4d55-9a0f-552087aa9028 + - 33eb1fdc-2111-4ce3-805a-63fa0a11fa55 status: 200 OK code: 200 - duration: 79.131598ms + duration: 62.15527ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ae2797-f242-468a-a8b5-11a8befe2952 + - ce88d676-c771-42cc-9e2f-01685ddc55a9 status: 200 OK code: 200 - duration: 112.941247ms + duration: 60.820607ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b12798f-d558-4f9f-8af5-f2d917cda6a3 + - d89a70fc-20c2-42ad-bb22-49ca1a78ac79 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.079439ms + duration: 54.384525ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67ba0bba-9113-4780-850a-8b85dc1d7e97 + - 4b2248da-0910-4569-a244-edf4d348474e status: 200 OK code: 200 - duration: 142.18936ms + duration: 52.771919ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2153 + content_length: 2171 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:28:57.947522+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2153" + - "2171" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81f206f8-8fea-4f5f-b0da-bb1d375d4e4e + - aaf1b593-3f48-47c2-ade8-885a814cfb8b status: 200 OK code: 200 - duration: 234.999943ms + duration: 91.891679ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47a73d24-9616-48ca-9684-d4608861c3d3 + - e028c6b2-f79a-4c4f-b4e2-883bf9f051a2 status: 404 Not Found code: 404 - duration: 78.485206ms + duration: 28.421564ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:52.094696Z","id":"75450dd2-98eb-4d41-8a7b-a5d9e73ec31f","product_resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:52.094696Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0b18774-6882-4ecb-a480-c3901ead964d + - 3b78db54-8529-4f70-8299-f8d5fc2c246c status: 200 OK code: 200 - duration: 113.636701ms + duration: 46.374008ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eddc413-4a22-4c56-a2f1-3828b10b41ba + - cf244255-acb6-445a-9c7e-ac44e3f8ab30 status: 200 OK code: 200 - duration: 131.344722ms + duration: 67.325065ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a27bc64-c704-412b-8f6e-8f55009fca89 + - 99a118e9-2929-44d3-bb8f-a26451ff19d4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.929713ms + duration: 58.257529ms - id: 30 request: proto: HTTP/1.1 @@ -1520,8 +1520,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: PATCH response: proto: HTTP/2.0 @@ -1529,20 +1529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1873 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.225973+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:33.784203+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1873" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e6b910f-9b10-4cc9-9ebc-e306c1bfa01e + - b7052e4e-ed1c-4e3a-b110-52bad58d2f64 status: 200 OK code: 200 - duration: 323.336062ms + duration: 200.957829ms - id: 31 request: proto: HTTP/1.1 @@ -1569,8 +1569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -1578,20 +1578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1873 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.225973+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:33.784203+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1873" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,78 +1599,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cd67df8-f888-4519-8441-657f20487726 + - f0ad2e54-52c0-48b4-929f-7166586bbaa8 status: 200 OK code: 200 - duration: 182.598575ms + duration: 104.376764ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:52.094696Z","id":"75450dd2-98eb-4d41-8a7b-a5d9e73ec31f","product_resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:52.094696Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d328f697-50e5-4945-8d88-5958f4e843a7 - status: 200 OK - code: 200 - duration: 151.185612ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action method: POST response: proto: HTTP/2.0 @@ -1678,22 +1629,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c/action","href_result":"/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c","id":"53092fe6-cfe2-408d-99d3-927131c37e6d","progress":0,"started_at":"2025-06-10T15:29:05.988440+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action","href_result":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1","id":"3d052ea3-5d20-4ef7-a7f8-a87e21f8c632","progress":0,"started_at":"2025-10-08T23:05:34.196597+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/53092fe6-cfe2-408d-99d3-927131c37e6d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3d052ea3-5d20-4ef7-a7f8-a87e21f8c632 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,305 +1652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb663161-7495-421f-9450-8da504694247 + - a1786d38-3501-4c60-a453-ed68735c98c5 status: 202 Accepted code: 202 - duration: 228.201201ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08764543-14d2-420b-ad84-c3c3fd279d48 - status: 200 OK - code: 200 - duration: 208.741956ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 42222cbf-f018-499a-bb1b-fb9e0b4eec93 - status: 200 OK - code: 200 - duration: 241.307601ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 46f0d1f3-a54b-476b-a1d1-c9ff4f1a694e - status: 200 OK - code: 200 - duration: 220.512951ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7cfab109-cf00-4977-90d7-cc1bd3b33717 - status: 200 OK - code: 200 - duration: 193.396675ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3262c896-b8c7-43c8-b758-8dacee5708e6 - status: 200 OK - code: 200 - duration: 205.196996ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1833 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1833" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44616494-96ca-4eb8-9722-beba1b045a30 - status: 200 OK - code: 200 - duration: 228.529855ms - - id: 40 + duration: 190.470203ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2014,8 +1671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -2023,20 +1680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1833 + content_length: 1854 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:05.812061+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1833" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:37 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,11 +1701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d39fad87-cf9d-43ab-a17b-c055d1720e59 + - 44a33189-40d2-4f10-88c2-d0dc15e7dfd6 status: 200 OK code: 200 - duration: 201.01402ms - - id: 41 + duration: 96.815037ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2063,8 +1720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -2072,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1716 + content_length: 1854 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:39.056700+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1716" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:42 GMT + - Wed, 08 Oct 2025 23:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2093,11 +1750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e87e623-2ce9-40f0-9e7a-3f111baeedc6 + - f21dd09a-a672-46bf-9368-c445529bc40c status: 200 OK code: 200 - duration: 211.376584ms - - id: 42 + duration: 97.277122ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2112,8 +1769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -2121,20 +1778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1716 + content_length: 1854 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.867266+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-solomon","id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:eb","maintenances":[],"modification_date":"2025-06-10T15:29:39.056700+00:00","name":"tf-srv-boring-solomon","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1716" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2142,58 +1799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1112d447-179b-4e70-924f-e4e6f608678f + - 4470a336-9565-4e56-ae3d-ee985f024d61 status: 200 OK code: 200 - duration: 225.7391ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 34d5a135-f61c-42de-b09b-d59e3fe2dc0d - status: 204 No Content - code: 204 - duration: 404.497149ms - - id: 44 + duration: 95.228616ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2208,8 +1818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/20f5ecac-320f-4979-a5db-7fb87d24a50c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 method: GET response: proto: HTTP/2.0 @@ -2219,7 +1829,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"20f5ecac-320f-4979-a5db-7fb87d24a50c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","type":"not_found"}' headers: Content-Length: - "143" @@ -2228,9 +1838,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,11 +1848,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec81d121-adf6-494a-97ba-ec2dd327c413 + - 07e8606a-b20d-480a-a70f-d78ba5b3f1ad status: 404 Not Found code: 404 - duration: 121.705001ms - - id: 45 + duration: 54.260692ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2257,8 +1867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -2268,7 +1878,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' headers: Content-Length: - "143" @@ -2277,9 +1887,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,11 +1897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ebff4c0-1592-4778-a47a-5bbc2be526e7 + - b50cf5da-0353-4c05-bd9c-167096d7fba6 status: 404 Not Found code: 404 - duration: 84.099684ms - - id: 46 + duration: 30.225033ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2306,8 +1916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: GET response: proto: HTTP/2.0 @@ -2317,7 +1927,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:52.094696Z","id":"5a10b3d0-0382-4f90-baae-ead96f260bf0","last_detached_at":"2025-06-10T15:29:43.474715Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:43.474715Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":"2025-10-08T23:05:45.405466Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:45.405466Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2326,9 +1936,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,11 +1946,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55f04d95-d240-4015-8e4f-b01ff1578c2e + - 69d5f856-59d6-4fde-ade1-8e231096fc36 status: 200 OK code: 200 - duration: 109.651495ms - - id: 47 + duration: 49.522666ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2355,8 +1965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5a10b3d0-0382-4f90-baae-ead96f260bf0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 method: DELETE response: proto: HTTP/2.0 @@ -2373,9 +1983,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,11 +1993,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d373f66-4595-4c67-9308-77f8d18ea28d + - e8e2a27d-57a5-4ded-83c7-673dbe9004f3 status: 204 No Content code: 204 - duration: 170.54175ms - - id: 48 + duration: 75.707236ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2404,8 +2014,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: PATCH response: proto: HTTP/2.0 @@ -2415,7 +2025,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2424,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,11 +2044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 900b838b-e2ff-4e75-b3aa-e6292ec258f8 + - 43a56a42-b75f-4019-a8ba-3fd11eaf3fca status: 200 OK code: 200 - duration: 591.352645ms - - id: 49 + duration: 86.733921ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2453,8 +2063,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -2464,7 +2074,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2473,9 +2083,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,11 +2093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28f0aa0f-c8e6-458a-b05e-c5ed8c65a054 + - 8d43fc2a-8dd8-4bf2-b779-299029ed24c4 status: 200 OK code: 200 - duration: 138.660359ms - - id: 50 + duration: 53.28839ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2502,8 +2112,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -2513,7 +2123,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2522,9 +2132,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,11 +2142,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b80240e6-8c60-4115-9242-9cf58c050299 + - 72e3ee4a-d989-4107-96d3-99a926ef82c0 status: 200 OK code: 200 - duration: 209.379669ms - - id: 51 + duration: 66.068062ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2551,8 +2161,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -2562,7 +2172,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"5eb97ee0-9135-44e8-97c7-95668a23227e","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2571,9 +2181,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,11 +2191,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 194e3de6-7466-4f70-ab7b-f63aad5d7663 + - 1c9b6cd1-8c61-4865-98f7-178aeb057d09 status: 200 OK code: 200 - duration: 124.982547ms - - id: 52 + duration: 63.114872ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2600,8 +2210,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: DELETE response: proto: HTTP/2.0 @@ -2618,9 +2228,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,11 +2238,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a21b2528-85a1-4bdc-a535-feb485b5e041 + - a1d8e59c-66ab-4b43-ad85-afe1786dcbfb status: 204 No Content code: 204 - duration: 181.876277ms - - id: 53 + duration: 89.637517ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2647,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/5eb97ee0-9135-44e8-97c7-95668a23227e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 method: GET response: proto: HTTP/2.0 @@ -2658,7 +2268,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"5eb97ee0-9135-44e8-97c7-95668a23227e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"c50eb217-377a-40e3-84cb-4c101bc6a228","type":"not_found"}' headers: Content-Length: - "152" @@ -2667,9 +2277,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,7 +2287,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b35ae5da-10c7-43d3-be97-87916216ea6d + - d5bee2b7-d786-4877-9121-92b5c92de10d status: 404 Not Found code: 404 - duration: 57.787406ms + duration: 30.291406ms diff --git a/internal/services/instance/testdata/private-nic-basic.cassette.yaml b/internal/services/instance/testdata/private-nic-basic.cassette.yaml index 7bb4e0a9a..e032d43a3 100644 --- a/internal/services/instance/testdata/private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:17 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,52 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7bce28-e447-4c61-9efd-e1f78ab74182 + - ddc89154-c22a-4d7c-8a45-311cab0b5a85 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 1.228820292s + duration: 47.625688ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 119 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccPrivateNIC_Basic","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 421 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' headers: Content-Length: - - "19730" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:17 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,32 +101,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f5539f-e310-409c-8130-30587fad2cf2 - X-Total-Count: - - "75" + - 2dc56d7e-211a-41ee-920c-d4a486f25033 status: 200 OK code: 200 - duration: 46.916667ms + duration: 72.10889ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 119 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccPrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -135,7 +131,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.408511Z","custom_routes_propagation_enabled":true,"id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T12:39:17.408511Z"}' + body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' headers: Content-Length: - "421" @@ -144,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:17 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -154,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32fbef59-c786-4f61-a871-994727405458 + - 7c9e74d9-d073-4a42-8cf7-f33da9dafba5 status: 200 OK code: 200 - duration: 1.312851083s + duration: 30.921136ms - id: 3 request: proto: HTTP/1.1 @@ -173,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -182,20 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 19730 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1260" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:17 GMT + - Wed, 08 Oct 2025 23:05:21 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,10 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7ff02f0-40c9-444d-b2c7-9bf83cc953d0 + - 55f6acbe-3ffd-4e34-aaee-669840fda422 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 122.658458ms + duration: 54.382104ms - id: 4 request: proto: HTTP/1.1 @@ -222,8 +222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/30505c94-adbf-42d4-8a67-2f7c5b4a9220 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -231,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1260 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.408511Z","custom_routes_propagation_enabled":true,"id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T12:39:17.408511Z"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "421" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:17 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,29 +252,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4386370-cd3d-457e-a8ed-81a17d350f3f + - d74337aa-6628-4c3e-8e60-b7c4ff02366e status: 200 OK code: 200 - duration: 100.781292ms + duration: 108.889699ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 232 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220","default_route_propagation_enabled":false}' + body: '{"name":"tf-srv-brave-bouman","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -282,20 +282,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1110 + content_length: 1734 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.643564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b5852df-692c-4a41-99db-c442f0c7d45f","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T12:39:17.643564Z","id":"a49d925f-378c-4a82-9b95-721486e7ea51","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.164.0/22","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"},{"created_at":"2025-09-30T12:39:17.643564Z","id":"242810b6-d848-4b2a-a2f8-f58fe14564d4","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d74d::/64","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}],"tags":[],"updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1110" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:18 GMT + - Wed, 08 Oct 2025 23:05:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b916457-ceac-43f0-9254-da9d9f33b008 - status: 200 OK - code: 200 - duration: 680.932541ms + - 8eaf0b8e-f53f-493a-b057-fb046770580f + status: 201 Created + code: 201 + duration: 472.008855ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b5852df-692c-4a41-99db-c442f0c7d45f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -331,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1110 + content_length: 1734 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.643564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b5852df-692c-4a41-99db-c442f0c7d45f","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T12:39:17.643564Z","id":"a49d925f-378c-4a82-9b95-721486e7ea51","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.164.0/22","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"},{"created_at":"2025-09-30T12:39:17.643564Z","id":"242810b6-d848-4b2a-a2f8-f58fe14564d4","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d74d::/64","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}],"tags":[],"updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1110" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:18 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,29 +354,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f394a4-6b27-41d0-bb40-b0359ca47f9b + - 8803fc06-dd4c-478b-a8bc-546f86167067 status: 200 OK code: 200 - duration: 99.881542ms + duration: 94.82672ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 236 + content_length: 217 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-pensive-herschel","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -382,22 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1109 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:18.197795+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' headers: Content-Length: - - "1828" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11e5d389-c304-4f00-9cd4-01ad84e8058c - status: 201 Created - code: 201 - duration: 1.427620333s + - aaee099c-c760-46d7-9ec8-3ad03bf788ee + status: 200 OK + code: 200 + duration: 737.408533ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1109 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:18.197795+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' headers: Content-Length: - - "1828" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:19 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7e899e3-c6a2-40f2-98c6-f7ddd74fe94a + - 3230ef9d-317d-40e9-945e-641f0e5066d8 status: 200 OK code: 200 - duration: 159.646083ms + duration: 24.433078ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1734 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:18.197795+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:19 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68ff4f5f-acd8-4763-8c5f-4657131f6824 + - 611a0ebc-f7a5-4e57-9763-da0f5eab0a37 status: 200 OK code: 200 - duration: 135.552875ms + duration: 95.442171ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:18.346313Z","id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T12:39:18.346313Z","id":"6df925b8-7f7a-4d27-a85b-c38298deac4f","product_resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T12:39:18.346313Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:19 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 983ca017-3b80-490e-a9ce-5ea231944766 + - d0b811c4-3bac-4b86-83a4-4fc12af1dd0e status: 200 OK code: 200 - duration: 82.216958ms + duration: 53.77049ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/action","href_result":"/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea","id":"e7fa262d-174d-4052-a85b-216b37a2208d","progress":0,"started_at":"2025-09-30T12:39:19.558729+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action","href_result":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36","id":"a030acb0-6feb-4639-a468-a058ef4b1cac","progress":0,"started_at":"2025-10-08T23:05:22.168273+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:19 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e7fa262d-174d-4052-a85b-216b37a2208d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a030acb0-6feb-4639-a468-a058ef4b1cac Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d039c2-0111-42e7-b3af-4b50af5f639c + - 6ccb5cd1-216a-478b-aec4-145e2ac38553 status: 202 Accepted code: 202 - duration: 251.329ms + duration: 186.874121ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1850 + content_length: 1756 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:19.363952+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:22.033570+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1850" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:19 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5a4a5e5-44a5-4e1e-ace3-f8430f096126 + - a23c66f4-61c5-4227-9af1-1b4b612037d5 status: 200 OK code: 200 - duration: 149.940416ms + duration: 98.673064ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1984 + content_length: 1891 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1984" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:24 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ad6b2b-a77b-4423-b37e-c83cb19982d0 + - 5d19fc53-df87-4bc3-a684-7350a27262aa status: 200 OK code: 200 - duration: 142.745583ms + duration: 117.353875ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1984 + content_length: 1891 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1984" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 788f07ee-924a-40c3-a848-141dcbc11502 + - 1832ae08-c9e2-4774-9360-bc6b094d7749 status: 200 OK code: 200 - duration: 180.915875ms + duration: 104.54581ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' headers: Content-Length: - "143" @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3525092a-373a-4276-9f15-a786aba7971d + - 12a84ec9-70ed-4207-9b6a-c22aeb28e9ca status: 404 Not Found code: 404 - duration: 29.370875ms + duration: 33.341729ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:18.346313Z","id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T12:39:18.346313Z","id":"6df925b8-7f7a-4d27-a85b-c38298deac4f","product_resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T12:39:18.346313Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e81f4a7d-c922-4bda-a5c0-c1c7c85eaf0a + - 8b33968d-7d34-468a-8cce-bd3ffa1e95d1 status: 200 OK code: 200 - duration: 84.713167ms + duration: 52.790555ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/user_data method: GET response: proto: HTTP/2.0 @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b35a886b-179c-48d2-98a7-322191f842c6 + - 6108d5f9-4054-4ab2-a491-19e44ea3efc1 status: 200 OK code: 200 - duration: 102.898542ms + duration: 54.365151ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics method: GET response: proto: HTTP/2.0 @@ -938,11 +938,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,12 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9729def-66d5-49f9-a5d0-73ca18183cb6 + - 9ab195de-8d51-4294-a1fe-7dc6f44fd929 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 125.6965ms + duration: 58.292775ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1984 + content_length: 1891 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1984" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:25 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83ffa98d-7e76-4c0c-b5f8-cbfaee0ec61e + - c36c8544-82ad-43d7-a4bd-1bd054df17e7 status: 200 OK code: 200 - duration: 184.954542ms + duration: 111.673473ms - id: 20 request: proto: HTTP/1.1 @@ -1016,14 +1016,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f"}' + body: '{"private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics method: POST response: proto: HTTP/2.0 @@ -1033,7 +1033,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1042,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:26 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe0b5d70-db0f-460c-a478-7a9ea6d1680e + - 315ebadb-0fe6-4cc2-b100-f536dec8c1b1 status: 201 Created code: 201 - duration: 742.684708ms + duration: 800.733369ms - id: 21 request: proto: HTTP/1.1 @@ -1071,8 +1071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1091,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:26 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67ff5641-3dd2-4d54-993b-40871e7d1650 + - c2cb03bf-5df3-48cd-92ce-20c117958110 status: 200 OK code: 200 - duration: 100.892292ms + duration: 59.978498ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1131,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:31 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c442fd5d-f46b-474f-aa62-adb4ad62f522 + - a7b66c27-ec2b-4fcd-8860-1da5280c70ba status: 200 OK code: 200 - duration: 112.297416ms + duration: 58.014609ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:36 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8afe13d-78b6-4d1c-8796-24f9064efe2f + - 8f4c67be-f63c-4cb4-9700-f8aa7c735e10 status: 200 OK code: 200 - duration: 107.579917ms + duration: 54.224308ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:41 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90787f6e-e4b5-4f9e-9881-ae06366f53b8 + - 8b7d9029-eead-4d46-b3e7-443dd4b46e7b status: 200 OK code: 200 - duration: 116.269292ms + duration: 59.697193ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1278,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:46 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b531b2d-9670-4483-89d8-f36ffe3f0f5f + - e34bf71a-1a20-4e9c-9122-5e7c18af74f2 status: 200 OK code: 200 - duration: 98.29125ms + duration: 59.858511ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:51 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef4f01f6-624d-4080-8fd8-e8c515fe3f54 + - c54e2e59-0d17-4b69-9bf3-437c7739cc84 status: 200 OK code: 200 - duration: 103.153875ms + duration: 60.397257ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:39:57 GMT + - Wed, 08 Oct 2025 23:05:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aad515c8-c975-4afb-9b05-03dad7e1e73a + - aef77e0e-a5b3-4494-aa3e-dbb9cf34b8fb status: 200 OK code: 200 - duration: 124.23275ms + duration: 72.577296ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1425,7 +1425,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:02 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18ee2c16-51d2-4f68-a0b2-718d54f49cfc + - 7d4c4ef9-172a-4db8-ac7f-6cdd22dde05f status: 200 OK code: 200 - duration: 147.739125ms + duration: 59.084283ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1474,7 +1474,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1483,9 +1483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:07 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 860e14ff-decc-4c04-ba4b-806a75687553 + - 6f5aad2a-5f79-4da5-b853-456f76f0c190 status: 200 OK code: 200 - duration: 129.626167ms + duration: 50.057032ms - id: 30 request: proto: HTTP/1.1 @@ -1512,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1523,7 +1523,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1532,9 +1532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:12 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20133d63-d9bc-4432-be3f-cfff440c6c5d + - 2f64e29e-2b7c-447b-947a-916aab56ace0 status: 200 OK code: 200 - duration: 135.512416ms + duration: 63.876716ms - id: 31 request: proto: HTTP/1.1 @@ -1561,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1570,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:17 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c4f9db6-e38c-44de-bffc-4a313d5cea92 + - 6b3f7cee-c36e-4d08-9d94-009c80051afd status: 200 OK code: 200 - duration: 124.556792ms + duration: 50.920189ms - id: 32 request: proto: HTTP/1.1 @@ -1610,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:22 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17c9ba08-2db9-40aa-b356-cbd2b5890618 + - f75ace7a-cab0-425d-ad14-d346980f0863 status: 200 OK code: 200 - duration: 115.859625ms + duration: 60.068762ms - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -1668,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 2349 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:39:25.888410+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "2349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:27 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d87f09b-b648-40fe-8d61-856b9622cc4c + - 56e085fd-a524-4551-bbcd-9329b7630597 status: 200 OK code: 200 - duration: 138.855875ms + duration: 102.13326ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b32949d8-3db8-4189-a3d1-d8120647099a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1066 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:33 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a6b10eb-3f35-4db6-9a04-19a42596acaa + - c9fc844f-ccbf-47e0-bdb9-3cf1ab996741 status: 200 OK code: 200 - duration: 115.358833ms + duration: 47.763853ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -1768,7 +1768,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1777,9 +1777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:33 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12915497-518e-4c1d-bf0f-1579f158c9d1 + - df6aaf9c-4945-4ea8-ad44-cb3f5f7d8f0e status: 200 OK code: 200 - duration: 119.988292ms + duration: 53.952866ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f method: GET response: proto: HTTP/2.0 @@ -1815,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2442 + content_length: 421 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' headers: Content-Length: - - "2442" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:33 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88f649a1-f1db-40c3-9d1f-f691085c9497 + - 6811c78d-2a07-486d-93d0-6a51c4bff25e status: 200 OK code: 200 - duration: 158.125709ms + duration: 28.23307ms - id: 37 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b5852df-692c-4a41-99db-c442f0c7d45f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=72b65dd1-eb93-4904-9b2e-78b2e8ab7161&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a method: GET response: proto: HTTP/2.0 @@ -1864,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1109 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d74d:bb68:cace:45c:41a5/64","created_at":"2025-09-30T12:39:26.217874Z","id":"f7aee6fc-4b66-412e-9d6e-e6b5f55c937e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"242810b6-d848-4b2a-a2f8-f58fe14564d4"},"tags":[],"updated_at":"2025-09-30T12:39:26.217874Z","zone":null},{"address":"172.17.164.2/22","created_at":"2025-09-30T12:39:26.032968Z","id":"e0c68963-d359-4ecd-8e75-d4ea1a8c7500","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a49d925f-378c-4a82-9b95-721486e7ea51"},"tags":[],"updated_at":"2025-09-30T12:39:26.032968Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' headers: Content-Length: - - "1076" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:33 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2d1f5d1-fb9e-4ee0-b7b8-2c1315d22202 + - 659d1a6e-9613-4a1c-8a97-c763e04c7f0d status: 200 OK code: 200 - duration: 115.130666ms + duration: 20.60901ms - id: 38 request: proto: HTTP/1.1 @@ -1904,8 +1904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -1913,20 +1913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2349 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:33 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e293616-7b0a-4be3-8344-dc4895ece42d + - 59f822f0-cc6c-45a6-b296-3b6aad76f11a status: 200 OK code: 200 - duration: 125.841666ms + duration: 105.230496ms - id: 39 request: proto: HTTP/1.1 @@ -1953,8 +1953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/30505c94-adbf-42d4-8a67-2f7c5b4a9220 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -1962,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.408511Z","custom_routes_propagation_enabled":true,"id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T12:39:17.408511Z"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' headers: Content-Length: - - "421" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 263c7d7c-06a1-4aaa-89bd-4b888ce332c0 - status: 200 OK - code: 200 - duration: 86.245916ms + - c30b8c9a-4baf-4cb5-8f02-57e9c290197f + status: 404 Not Found + code: 404 + duration: 30.217856ms - id: 40 request: proto: HTTP/1.1 @@ -2002,8 +2002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b5852df-692c-4a41-99db-c442f0c7d45f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -2011,20 +2011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1110 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:17.643564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b5852df-692c-4a41-99db-c442f0c7d45f","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T12:39:17.643564Z","id":"a49d925f-378c-4a82-9b95-721486e7ea51","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.164.0/22","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"},{"created_at":"2025-09-30T12:39:17.643564Z","id":"242810b6-d848-4b2a-a2f8-f58fe14564d4","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d74d::/64","updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}],"tags":[],"updated_at":"2025-09-30T12:39:17.643564Z","vpc_id":"30505c94-adbf-42d4-8a67-2f7c5b4a9220"}' + body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' headers: Content-Length: - - "1110" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38a8bd74-bb38-41d8-88f8-215ca3aae052 + - 330249ca-def6-4d89-b602-4f4d28ac61df status: 200 OK code: 200 - duration: 26.247541ms + duration: 49.038484ms - id: 41 request: proto: HTTP/1.1 @@ -2051,8 +2051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/user_data method: GET response: proto: HTTP/2.0 @@ -2060,20 +2060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2356 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2356" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff1debc-8c66-448e-9b34-6f4f1cd36206 + - 7f2d1b2f-bb27-41bd-9d00-50319c67ec78 status: 200 OK code: 200 - duration: 159.650708ms + duration: 41.848998ms - id: 42 request: proto: HTTP/1.1 @@ -2100,8 +2100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics method: GET response: proto: HTTP/2.0 @@ -2109,20 +2109,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2130,10 +2132,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8233b68d-a24c-44ca-90d3-a9198acc5fb7 - status: 404 Not Found - code: 404 - duration: 29.083375ms + - 4c61b219-6308-415d-bfd9-fa72f7c63e29 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 46.723866ms - id: 43 request: proto: HTTP/1.1 @@ -2149,8 +2153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2158,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:18.346313Z","id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T12:39:18.346313Z","id":"6df925b8-7f7a-4d27-a85b-c38298deac4f","product_resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T12:39:18.346313Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2179,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9adc1cc6-c292-4996-b7e3-b640c73c7e4a + - 5d44e348-c1b2-4648-860e-431e353b1d58 status: 200 OK code: 200 - duration: 94.240791ms + duration: 25.336615ms - id: 44 request: proto: HTTP/1.1 @@ -2198,8 +2202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -2207,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 475 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2228,10 +2232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c52c4ac4-54cd-4738-bd49-f90439d6c4ec + - 6f6577cd-d329-4d62-8a59-8fe07cbea869 status: 200 OK code: 200 - duration: 129.097959ms + duration: 64.510699ms - id: 45 request: proto: HTTP/1.1 @@ -2247,8 +2251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -2256,22 +2260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2349 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2279,12 +2281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d3c9344-6ae9-4985-8d9b-5b1380b65b31 - X-Total-Count: - - "1" + - 546abac2-962e-4dcb-85ea-eb66447b5630 status: 200 OK code: 200 - duration: 108.270833ms + duration: 118.359492ms - id: 46 request: proto: HTTP/1.1 @@ -2300,8 +2300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=72b65dd1-eb93-4904-9b2e-78b2e8ab7161&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b32949d8-3db8-4189-a3d1-d8120647099a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2309,20 +2309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1066 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d74d:bb68:cace:45c:41a5/64","created_at":"2025-09-30T12:39:26.217874Z","id":"f7aee6fc-4b66-412e-9d6e-e6b5f55c937e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"242810b6-d848-4b2a-a2f8-f58fe14564d4"},"tags":[],"updated_at":"2025-09-30T12:39:26.217874Z","zone":null},{"address":"172.17.164.2/22","created_at":"2025-09-30T12:39:26.032968Z","id":"e0c68963-d359-4ecd-8e75-d4ea1a8c7500","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a49d925f-378c-4a82-9b95-721486e7ea51"},"tags":[],"updated_at":"2025-09-30T12:39:26.032968Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1076" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,10 +2330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ae6d01d-0389-46a6-835e-7964fd8103a2 + - b8829340-11b8-48de-8808-88a895f8434c status: 200 OK code: 200 - duration: 98.830458ms + duration: 50.244075ms - id: 47 request: proto: HTTP/1.1 @@ -2349,8 +2349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -2360,7 +2360,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2369,9 +2369,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2379,10 +2379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82081d38-57fa-4c29-b7eb-bc660aad0f48 + - 926ae6de-5fe7-4107-8659-a45baa9911be status: 200 OK code: 200 - duration: 104.046375ms + duration: 52.194428ms - id: 48 request: proto: HTTP/1.1 @@ -2398,29 +2398,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2442 + content_length: 0 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2428,10 +2426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60c7821f-487a-4f74-8201-35ed91379c30 - status: 200 OK - code: 200 - duration: 158.887875ms + - 25c736a4-3786-47a9-815f-084a567264ac + status: 204 No Content + code: 204 + duration: 311.559323ms - id: 49 request: proto: HTTP/1.1 @@ -2447,8 +2445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b5852df-692c-4a41-99db-c442f0c7d45f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=72b65dd1-eb93-4904-9b2e-78b2e8ab7161&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -2456,20 +2454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 148 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d74d:bb68:cace:45c:41a5/64","created_at":"2025-09-30T12:39:26.217874Z","id":"f7aee6fc-4b66-412e-9d6e-e6b5f55c937e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"242810b6-d848-4b2a-a2f8-f58fe14564d4"},"tags":[],"updated_at":"2025-09-30T12:39:26.217874Z","zone":null},{"address":"172.17.164.2/22","created_at":"2025-09-30T12:39:26.032968Z","id":"e0c68963-d359-4ecd-8e75-d4ea1a8c7500","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","mac_address":"02:00:00:14:52:C0","name":"tf-srv-pensive-herschel","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a49d925f-378c-4a82-9b95-721486e7ea51"},"tags":[],"updated_at":"2025-09-30T12:39:26.032968Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","type":"not_found"}' headers: Content-Length: - - "1076" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:34 GMT + - Wed, 08 Oct 2025 23:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2477,10 +2475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f78869-b65a-4f34-9247-823e30cf4f41 - status: 200 OK - code: 200 - duration: 120.956125ms + - 7792e57c-0960-4caf-a2ba-576a823a1dc9 + status: 404 Not Found + code: 404 + duration: 59.2468ms - id: 50 request: proto: HTTP/1.1 @@ -2496,8 +2494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -2505,20 +2503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1891 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T12:39:25.638439+00:00","id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","ipam_ip_ids":["e0c68963-d359-4ecd-8e75-d4ea1a8c7500","f7aee6fc-4b66-412e-9d6e-e6b5f55c937e"],"mac_address":"02:00:00:14:52:c0","modification_date":"2025-09-30T12:40:28.182126+00:00","private_network_id":"7b5852df-692c-4a41-99db-c442f0c7d45f","server_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:35 GMT + - Wed, 08 Oct 2025 23:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2526,46 +2524,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3727d34-9380-4cfb-92cc-5eaceef2d3a4 + - 55746d16-a5f8-48f1-b8d1-2b5e99ede3d4 status: 200 OK code: 200 - duration: 121.167167ms + duration: 97.766681ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 353 uncompressed: false - body: "" + body: '{"task":{"description":"server_terminate","href_from":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action","href_result":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36","id":"7a308b48-8056-4d81-a7b3-511682b53305","progress":0,"started_at":"2025-10-08T23:06:21.281892+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: + Content-Length: + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:36 GMT + - Wed, 08 Oct 2025 23:06:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7a308b48-8056-4d81-a7b3-511682b53305 Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2573,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10630e64-72bc-42b0-8df0-0ad00c28e0f3 - status: 204 No Content - code: 204 - duration: 596.989542ms + - c0d28699-f742-466d-aaac-51a1e9ba4660 + status: 202 Accepted + code: 202 + duration: 186.827249ms - id: 52 request: proto: HTTP/1.1 @@ -2592,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -2601,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 1854 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"72b65dd1-eb93-4904-9b2e-78b2e8ab7161","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:36 GMT + - Wed, 08 Oct 2025 23:06:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2622,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c1b5b3b-f530-4516-a4b7-d578a8d12169 - status: 404 Not Found - code: 404 - duration: 127.007125ms + - 2419c742-7d8e-4d5d-89b4-ff8e2f761e5f + status: 200 OK + code: 200 + duration: 97.613548ms - id: 53 request: proto: HTTP/1.1 @@ -2641,29 +2645,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:39:22.030184+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:36 GMT + - Wed, 08 Oct 2025 23:06:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2671,10 +2673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 910c0ff6-9b4f-49a1-a7c6-2e2af23f6e94 - status: 200 OK - code: 200 - duration: 145.30475ms + - fd19a5b3-01cc-4034-a266-4965c09687aa + status: 204 No Content + code: 204 + duration: 1.199415973s - id: 54 request: proto: HTTP/1.1 @@ -2690,29 +2692,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-09-30T12:39:18.346313Z","id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T12:39:18.346313Z","id":"6df925b8-7f7a-4d27-a85b-c38298deac4f","product_resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T12:39:18.346313Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:36 GMT + - Wed, 08 Oct 2025 23:06:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2720,52 +2720,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce417fb3-a881-4d52-a312-92be650ec39e - status: 200 OK - code: 200 - duration: 85.483416ms + - 21b8f0a0-ddf8-47af-8320-30759900c33b + status: 204 No Content + code: 204 + duration: 135.525634ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1854 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/action","href_result":"/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea","id":"26f66671-b96d-403c-816c-a98af29c4af1","progress":0,"started_at":"2025-09-30T12:40:36.803011+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/26f66671-b96d-403c-816c-a98af29c4af1 + - Wed, 08 Oct 2025 23:06:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,10 +2769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b16b610-25b1-4d32-b79e-d1ce9f2f53be - status: 202 Accepted - code: 202 - duration: 460.12925ms + - a58843c6-d9a0-42a0-97cc-6633ce3060bc + status: 200 OK + code: 200 + duration: 100.987676ms - id: 56 request: proto: HTTP/1.1 @@ -2792,8 +2788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 method: GET response: proto: HTTP/2.0 @@ -2801,20 +2797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1944 + content_length: 1854 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1944" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:37 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2822,10 +2818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e64546-d680-4903-b2eb-0474f75ab85a + - e1f9591e-1aa4-40c3-81b3-f7edbca13acb status: 200 OK code: 200 - duration: 190.634083ms + duration: 124.224579ms - id: 57 request: proto: HTTP/1.1 @@ -2841,27 +2837,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b5852df-692c-4a41-99db-c442f0c7d45f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:37 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2869,10 +2867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 831d9e57-76e7-4b9d-8fcb-23ed1d05b97d - status: 204 No Content - code: 204 - duration: 1.22055475s + - 496cc2c2-e874-4ce5-9ddc-7673b0bd885c + status: 404 Not Found + code: 404 + duration: 48.643559ms - id: 58 request: proto: HTTP/1.1 @@ -2888,27 +2886,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/30505c94-adbf-42d4-8a67-2f7c5b4a9220 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:37 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2916,10 +2916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ecde2cf-5081-4855-9c97-f4e1bd698e6f - status: 204 No Content - code: 204 - duration: 186.511542ms + - 88adb5cf-9e6b-4a9f-ade9-4d38c02a7877 + status: 404 Not Found + code: 404 + duration: 38.732764ms - id: 59 request: proto: HTTP/1.1 @@ -2935,8 +2935,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 method: GET response: proto: HTTP/2.0 @@ -2944,20 +2944,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1944 + content_length: 494 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":"2025-10-08T23:06:33.009239Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:33.009239Z","zone":"fr-par-1"}' headers: Content-Length: - - "1944" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:42 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2965,10 +2965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1fc1bd-22a4-4bdd-98d6-7de884b69a6b + - 2d08bfcd-ecc6-4c41-80b9-ea727888dfae status: 200 OK code: 200 - duration: 156.793125ms + duration: 43.425254ms - id: 60 request: proto: HTTP/1.1 @@ -2984,78 +2984,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1944 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1944" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:40:47 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: - - 8e064b22-07e6-467f-8b9c-fa97586b9db8 - status: 200 OK - code: 200 - duration: 149.887667ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1858 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:40:52 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3063,497 +3012,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e444e33-ceea-4950-96ae-6f4baa8f17a3 - status: 200 OK - code: 200 - duration: 178.858ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1858 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1858" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:40: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: - - bf62d007-a06c-4f91-82e8-f46d12faa816 - status: 200 OK - code: 200 - duration: 144.268959ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1944 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1944" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41: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: - - a1880b89-43a5-4d05-b7f8-318832119163 - status: 200 OK - code: 200 - duration: 147.751292ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1858 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:40:36.398906+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1858" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41: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: - - 5a5ce86c-f935-422a-9d5c-f9192bf54b93 - status: 200 OK - code: 200 - duration: 156.475791ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1828 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:41:09.675306+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1828" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - cb014a3a-503c-4f71-8e9a-52c623c82b56 - status: 200 OK - code: 200 - duration: 174.27775ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1828 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T12:39:18.197795+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-herschel","id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cb:06:eb","maintenances":[],"modification_date":"2025-09-30T12:41:09.675306+00:00","name":"tf-srv-pensive-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1828" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - d8a876b1-a55d-4d31-bcca-2afabb4b7d69 - status: 200 OK - code: 200 - duration: 184.185125ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - 3104eb6a-68a7-494f-bb75-50c7529ee740 + - 48cfa034-80b0-4002-bce3-7d417bf85234 status: 204 No Content code: 204 - duration: 237.418ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - 98ced05f-9630-4130-a7f4-b7ca1b409196 - status: 404 Not Found - code: 404 - duration: 50.786125ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - 23b3d7f8-04b1-4890-b30f-5e74aebecf5e - status: 404 Not Found - code: 404 - duration: 50.227708ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-09-30T12:39:18.346313Z","id":"e952cec5-e42f-4873-80d0-1b8eea3b6ce9","last_detached_at":"2025-09-30T12:41:13.641915Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T12:41:13.641915Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - 8e4659ca-bcfe-40d6-a86a-939bf42f9cba - status: 200 OK - code: 200 - duration: 91.065792ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e952cec5-e42f-4873-80d0-1b8eea3b6ce9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 12:41:13 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: - - d85181d9-a568-4a41-bd75-48b3c257ecab - status: 204 No Content - code: 204 - duration: 194.779625ms - - id: 72 + duration: 93.302969ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3568,8 +3031,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e21d836b-10dd-42dd-abcb-ab16a7a28eea/private_nics/72b65dd1-eb93-4904-9b2e-78b2e8ab7161 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f method: GET response: proto: HTTP/2.0 @@ -3579,7 +3042,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e21d836b-10dd-42dd-abcb-ab16a7a28eea","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","type":"not_found"}' headers: Content-Length: - "143" @@ -3588,9 +3051,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 12:41:14 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3598,7 +3061,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b5a379a-fc16-43cf-90c8-7c9efd078f5f + - 63bb4bdc-19c1-40ec-91fe-64332682a500 status: 404 Not Found code: 404 - duration: 32.210625ms + duration: 38.739747ms diff --git a/internal/services/instance/testdata/private-nic-tags.cassette.yaml b/internal/services/instance/testdata/private-nic-tags.cassette.yaml index 2be4bb8fa..661f6ba8e 100644 --- a/internal/services/instance/testdata/private-nic-tags.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-tags.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:07 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef144bb4-f0cd-419d-899c-bfc9af312f8a + - 25952774-429d-40cc-bef4-6aa79365260c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 181.60625ms + duration: 55.336272ms - id: 1 request: proto: HTTP/1.1 @@ -65,13 +65,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccPrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"TestAccPrivateNIC_Tags","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:07 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bde1c6f-945b-444c-8a99-dc1e189041f9 + - 2e1e17d4-ab89-4c2d-ae6d-3d30a9a53bd4 status: 200 OK code: 200 - duration: 206.070333ms + duration: 61.092024ms - id: 2 request: proto: HTTP/1.1 @@ -120,8 +120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:07 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ecdf97-b707-4a58-8093-437e13641216 + - d8c4229f-0934-4e99-ac20-828e92eb9356 status: 200 OK code: 200 - duration: 34.982292ms + duration: 37.16909ms - id: 3 request: proto: HTTP/1.1 @@ -169,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -189,11 +189,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:07 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cecc3d0-9f50-4995-99be-b8321651fee6 + - dc8a04d1-8bc7-43a2-8a9d-53f7d025cef4 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 45.273833ms + duration: 47.014837ms - id: 4 request: proto: HTTP/1.1 @@ -222,7 +222,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:07 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,29 +252,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b4aa6f7-db49-4eb7-b029-8f4ed6a4c338 + - 4216161e-d6be-43c7-be60-9b4ab08096b9 status: 200 OK code: 200 - duration: 59.445625ms + duration: 45.153088ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 216 + content_length: 236 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","default_route_propagation_enabled":false}' + body: '{"name":"tf-srv-musing-morse","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -282,20 +282,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1742 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1109" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:08 GMT + - Wed, 08 Oct 2025 23:05:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1648cc11-f7cd-43a3-9cbd-40c86a50f855 - status: 200 OK - code: 200 - duration: 569.2515ms + - 76b4fafe-d738-4b4b-b5a6-ce2310e42c62 + status: 201 Created + code: 201 + duration: 492.941214ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -331,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1742 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1109" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:08 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,52 +354,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b33d502-059a-43cb-8535-349957e1b5f6 + - 84ddf5f4-e5d1-487c-a875-d3757ff4cd93 status: 200 OK code: 200 - duration: 31.605875ms + duration: 93.608385ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 237 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-gifted-wilbur","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1742 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1830" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,48 +403,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe0d87f4-3074-41e6-b126-14bb353cf37a - status: 201 Created - code: 201 - duration: 1.204998417s + - 74d42e48-4202-4cc2-a075-72832e375c0c + status: 200 OK + code: 200 + duration: 109.318223ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 216 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1107 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1830" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0582490e-75aa-4c11-85b6-9ce89e0a2f1f + - da91d3b6-86d6-4200-9cd3-4f112201d1d5 status: 200 OK code: 200 - duration: 173.461709ms + duration: 802.824681ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1107 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1830" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2825baaf-d4dd-4938-abef-74894cd8952a + - dcac6682-289f-4a38-9877-57ec44d0f4f4 status: 200 OK code: 200 - duration: 159.607083ms + duration: 29.295425ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1742 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1830" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e60d0994-09a4-4580-b78e-4e0fef15c7a3 + - c9ef966e-bdd6-4ddc-ad02-7434f0328695 status: 200 OK code: 200 - duration: 172.190042ms + duration: 108.152665ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a26d390a-a473-457b-9720-9d1a81d0b446 + - 03b80324-bd42-4167-87ef-e2909712ae33 status: 404 Not Found code: 404 - duration: 31.030375ms + duration: 37.374761ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16381e6b-5d21-466c-98a3-6cea8068abca + - 9b09f2f0-a429-47a1-96e0-414e0f205ca6 status: 200 OK code: 200 - duration: 86.028709ms + duration: 43.209809ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01f065d4-3168-40f6-987d-e994cbec1ff1 + - b58123d2-e315-4453-9e5c-089a57cb7ca0 status: 200 OK code: 200 - duration: 104.92ms + duration: 57.888629ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ce1e10d-9493-4cb6-a463-84793dd72ac7 + - 52208f7a-443b-469e-a8cd-257ceec631cf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.710292ms + duration: 56.148636ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1742 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1830" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:09 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00a76e90-f454-44ab-b819-2c542423e5ce + - b335acba-8821-4596-a2cd-400757711f5b status: 200 OK code: 200 - duration: 181.331666ms + duration: 93.56829ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba"}' + body: '{"private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:10 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 487207e5-ef94-4428-998a-ea4041658703 + - a169085d-1f6f-4fb8-a95d-7e32608c18d5 status: 201 Created code: 201 - duration: 603.774583ms + duration: 454.341903ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:10 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 716643a5-81fb-48b8-802c-d2496e1bae82 + - bca6d45c-d616-422a-97e4-b2782d12092e status: 200 OK code: 200 - duration: 121.456625ms + duration: 56.972852ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:10 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8d66ee2-6710-419b-9021-a495a34a92cb + - 5ad81c14-fa5f-40b9-8a26-114656e5de54 status: 200 OK code: 200 - duration: 102.13125ms + duration: 57.046439ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -978,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2202 + content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2202" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:10 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2cac23-f961-49c9-8247-7c8264ee3454 + - deabba80-7dd4-4f1b-95dd-7e8105314db1 status: 200 OK code: 200 - duration: 169.975083ms + duration: 100.020331ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1027,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:10 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53381416-4ba3-4979-951f-02527326b2ca + - 79bb854d-502c-4d1b-9843-f5e59a8e686c status: 200 OK code: 200 - duration: 44.443583ms + duration: 65.400834ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6035c3a3-6776-443b-ba60-a93775ae4c6b + - 4e692457-1142-475f-9ffe-46729b4e9d5c status: 200 OK code: 200 - duration: 116.921417ms + duration: 53.801678ms - id: 22 request: proto: HTTP/1.1 @@ -1116,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -1127,7 +1127,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -1136,9 +1136,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c865b06d-d095-4d4d-868a-fc229e56c533 + - b50bd377-ca19-4b8b-a187-c257c83ff3e3 status: 200 OK code: 200 - duration: 30.146708ms + duration: 30.651016ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1109" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3205235-a898-43c7-bc1a-d833889ba95f + - 40a820d8-0112-4858-8f50-0dc0c8461bc0 status: 200 OK code: 200 - duration: 27.488417ms + duration: 23.108504ms - id: 24 request: proto: HTTP/1.1 @@ -1214,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -1223,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2200 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e6dbf6a-a650-40ae-ac5f-96b207103d6a + - 6198267e-3afe-40ea-8c7c-c5da17fd58b8 status: 200 OK code: 200 - duration: 186.076208ms + duration: 110.824934ms - id: 25 request: proto: HTTP/1.1 @@ -1263,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -1274,7 +1274,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -1283,9 +1283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6f0f349-3194-4f06-8817-2377fca1f21c + - 37055f98-457c-456c-9cc5-e7030ff311c6 status: 404 Not Found code: 404 - duration: 42.579417ms + duration: 27.339402ms - id: 26 request: proto: HTTP/1.1 @@ -1312,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -1323,7 +1323,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1332,9 +1332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0db5008-832d-4d09-8ed6-a8afe2bc1f3e + - 91214cc3-739e-4c00-aad0-35e9bc6c2a81 status: 200 OK code: 200 - duration: 83.277041ms + duration: 40.231072ms - id: 27 request: proto: HTTP/1.1 @@ -1361,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -1381,9 +1381,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c32fe163-d74a-4536-81fe-8546876ae7bc + - 40a92367-0e11-4a7c-8faa-a27ba7132b13 status: 200 OK code: 200 - duration: 96.764833ms + duration: 54.863705ms - id: 28 request: proto: HTTP/1.1 @@ -1410,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -1421,7 +1421,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1430,11 +1430,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:11 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,12 +1442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cfd0293-cf47-4795-aa59-e2f68084a2d0 + - 34a5c65a-882e-48b4-aa37-fd8dd1730143 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 129.347708ms + duration: 58.857604ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1472,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d6d39bf-6ddd-4ace-8eb8-c22f14692daa + - 4b207dd0-d1d7-4cb1-9770-f84bbd8d75e0 status: 200 OK code: 200 - duration: 30.616ms + duration: 31.065193ms - id: 30 request: proto: HTTP/1.1 @@ -1512,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -1523,7 +1523,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1532,9 +1532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a4be3b-fc46-47fa-b69d-11647558fab9 + - fa818016-b212-4088-be9e-065e7b9fc273 status: 200 OK code: 200 - duration: 97.104584ms + duration: 56.576658ms - id: 31 request: proto: HTTP/1.1 @@ -1561,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -1570,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2200 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34c061e4-bd7a-458f-803d-fa7d71fd15e5 + - 8706803b-673e-4e61-9861-30e49279b745 status: 200 OK code: 200 - duration: 161.833208ms + duration: 85.358993ms - id: 32 request: proto: HTTP/1.1 @@ -1610,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 995dace1-c124-4a8e-adc4-50b8cb517101 + - 1d5a0802-81f0-47ce-8715-807f82b7bf17 status: 200 OK code: 200 - duration: 64.81125ms + duration: 46.434582ms - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -1670,7 +1670,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -1679,9 +1679,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e784fab2-7078-4c24-9819-ca0986f73056 + - 076736b6-c75e-4b5b-acfe-63ef1d453411 status: 200 OK code: 200 - duration: 30.111042ms + duration: 27.003089ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1109" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3041f0cc-87eb-425f-beef-1b88eb19d210 + - 1d7b5fc4-ba92-40d5-9b02-93407ef86067 status: 200 OK code: 200 - duration: 22.471083ms + duration: 30.55059ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -1766,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2200 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a5a0b0b-f693-4cde-b324-e23e934c4e76 + - 8d959eef-61a8-4621-985e-e59438d05c87 status: 200 OK code: 200 - duration: 172.236792ms + duration: 89.442887ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -1817,7 +1817,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -1826,9 +1826,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67be378b-dd28-4ba9-8c47-1845c8be0669 + - 02c63ded-8e6c-480c-a4dd-957b0c49677d status: 404 Not Found code: 404 - duration: 30.372042ms + duration: 28.526921ms - id: 37 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -1866,7 +1866,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1875,9 +1875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 963a0459-7dde-493f-820c-deb29f600244 + - 88e7a4a9-adc2-4df4-9103-4c63c4a05d72 status: 200 OK code: 200 - duration: 86.13125ms + duration: 43.434765ms - id: 38 request: proto: HTTP/1.1 @@ -1904,8 +1904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -1924,9 +1924,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:12 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7355e7e-a508-4be4-837c-cb704b9579cd + - 3521130d-d490-4595-98c3-6337fc6eb0bd status: 200 OK code: 200 - duration: 104.047042ms + duration: 49.389004ms - id: 39 request: proto: HTTP/1.1 @@ -1953,8 +1953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -1964,7 +1964,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1973,11 +1973,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,12 +1985,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 311219cf-d83b-47ec-9719-5f60e851b42c + - e447df58-bb63-48a0-b163-0188cdbb894d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 108.067584ms + duration: 81.029954ms - id: 40 request: proto: HTTP/1.1 @@ -2006,8 +2006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2015,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 936d7dd1-a70c-4f83-870d-1d46c300e615 + - b418ddcf-f654-4087-ade8-e85e7f93cdf9 status: 200 OK code: 200 - duration: 35.414459ms + duration: 31.286072ms - id: 41 request: proto: HTTP/1.1 @@ -2055,8 +2055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -2066,7 +2066,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2075,9 +2075,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c4fb298-86c3-4129-8f0a-d8070126f5ca + - 92a47791-cb30-447d-8c5a-6c5f7bfcc31f status: 200 OK code: 200 - duration: 108.16075ms + duration: 51.255131ms - id: 42 request: proto: HTTP/1.1 @@ -2104,8 +2104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -2113,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2200 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:10.169937+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 268006ea-d73e-4aa8-98b8-b8bc72d0a2be + - ea07632d-1aac-4850-9dfb-8fc708a3311f status: 200 OK code: 200 - duration: 174.515834ms + duration: 113.426763ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2162,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8c5b1c-ca6b-44ba-8826-7dd97b1ce451 + - b483f4e3-3303-41a5-ae76-953b4999afa2 status: 200 OK code: 200 - duration: 57.298958ms + duration: 52.140331ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2204,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: PATCH response: proto: HTTP/2.0 @@ -2215,7 +2215,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2224,9 +2224,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 121c9075-03c7-41d4-b058-fdf705d1a9e9 + - 906bb8a8-30fe-4df9-83df-1ed9944cc7c4 status: 200 OK code: 200 - duration: 179.38125ms + duration: 80.82843ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -2264,7 +2264,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2273,9 +2273,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:13 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f78180-1e84-4908-9f76-6ad91b47302d + - 3fb90267-541e-4c56-9942-953f8867f7bf status: 200 OK code: 200 - duration: 97.418958ms + duration: 70.432854ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -2311,20 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e544365-397a-4762-9782-d93d944aa5f2 + - 54843cf2-04cb-4070-bf29-17a329f2b4fc status: 200 OK code: 200 - duration: 191.627584ms + duration: 103.881631ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2360,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf8ecb4-2ecb-4078-b220-913e07459106 + - 607e6de1-de4e-43bd-b911-ae4f4ac3ad6f status: 200 OK code: 200 - duration: 53.189833ms + duration: 79.654396ms - id: 48 request: proto: HTTP/1.1 @@ -2400,8 +2400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -2411,7 +2411,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2420,9 +2420,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9afc9f64-58a4-4410-af8f-cd205cbf0247 + - 57f1e9e0-1db0-46be-9bef-7411050dc69d status: 200 OK code: 200 - duration: 100.648875ms + duration: 63.102787ms - id: 49 request: proto: HTTP/1.1 @@ -2449,8 +2449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -2460,7 +2460,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -2469,9 +2469,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2fdda0d-7e71-4ffa-8e6d-a4d5d49b696d + - daa8fe3e-4b5f-4f7b-bb4c-c7746b984ccc status: 200 OK code: 200 - duration: 32.4395ms + duration: 29.984952ms - id: 50 request: proto: HTTP/1.1 @@ -2498,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -2507,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1109" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a018c224-ac86-4548-9044-84e0a30e1642 + - 12679d5c-e623-4648-8e74-7e75bd0193f2 status: 200 OK code: 200 - duration: 27.339792ms + duration: 37.488831ms - id: 51 request: proto: HTTP/1.1 @@ -2547,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -2556,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2214 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6af7d1e-335f-4630-be65-12551a746cf0 + - 5a60fa98-1b7c-4aaa-9fe0-dd6bfb2d3e4d status: 200 OK code: 200 - duration: 175.252167ms + duration: 118.135635ms - id: 52 request: proto: HTTP/1.1 @@ -2596,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -2607,7 +2607,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -2616,9 +2616,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbb92cd3-8425-40e4-b72d-01efc6c02979 + - c6e04b1b-4cab-4a57-8231-a38fac575115 status: 404 Not Found code: 404 - duration: 35.907291ms + duration: 29.953965ms - id: 53 request: proto: HTTP/1.1 @@ -2645,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -2656,7 +2656,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2665,9 +2665,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd7d9108-3fa4-401b-8fea-8bb0c0e20ebb + - bf71d21c-39e2-4e3f-8dfc-4149c9a93ee8 status: 200 OK code: 200 - duration: 108.595458ms + duration: 43.583871ms - id: 54 request: proto: HTTP/1.1 @@ -2694,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -2714,9 +2714,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:14 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 121b20cc-89b8-4ade-a725-d061be2cc662 + - 45300ec5-836b-410f-8f6f-9b21b30d22ab status: 200 OK code: 200 - duration: 91.869791ms + duration: 61.339811ms - id: 55 request: proto: HTTP/1.1 @@ -2743,8 +2743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -2754,7 +2754,7 @@ interactions: trailer: {} content_length: 492 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' headers: Content-Length: - "492" @@ -2763,11 +2763,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,12 +2775,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec1f0485-9fb8-4547-b802-deb79e3c4468 + - 099f53d0-f84f-43f7-aef5-ee5f0b41cc33 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 229.619875ms + duration: 69.208547ms - id: 56 request: proto: HTTP/1.1 @@ -2796,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2805,20 +2805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2826,10 +2826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11613f50-0f85-4138-ae1a-320c7e885faf + - 25866e8c-f782-407b-b820-11975a6500fd status: 200 OK code: 200 - duration: 21.545709ms + duration: 32.099498ms - id: 57 request: proto: HTTP/1.1 @@ -2845,8 +2845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -2856,7 +2856,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2865,9 +2865,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2875,10 +2875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f1802c5-574d-4655-94ce-6c05567e89af + - 1cdead14-e179-45d9-9cba-b152ca365d2c status: 200 OK code: 200 - duration: 96.765458ms + duration: 51.705816ms - id: 58 request: proto: HTTP/1.1 @@ -2894,8 +2894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -2903,20 +2903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2924,10 +2924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20082187-a49a-4292-971a-9670935c116f + - 61b158d7-cf58-4afb-a3fd-b938d198ba4a status: 200 OK code: 200 - duration: 164.826375ms + duration: 93.011717ms - id: 59 request: proto: HTTP/1.1 @@ -2943,8 +2943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2952,20 +2952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2973,10 +2973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4df576c8-a058-4a3f-9a52-af638e26aa2b + - 0a456b9a-df59-4379-9209-18de8f5c0837 status: 200 OK code: 200 - duration: 55.591084ms + duration: 55.477392ms - id: 60 request: proto: HTTP/1.1 @@ -2992,8 +2992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -3003,7 +3003,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -3012,9 +3012,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,10 +3022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75baf54c-0e7e-44e2-a0d9-55543023d10a + - e657dd01-0c17-4adc-a971-5efc1e36d77d status: 200 OK code: 200 - duration: 24.1265ms + duration: 22.575006ms - id: 61 request: proto: HTTP/1.1 @@ -3041,8 +3041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -3050,20 +3050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1109" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3071,10 +3071,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a2a8b7b-0457-4ae3-98d6-bc4a71b9072b + - 819f38c6-a28b-44fc-a653-0c30b8c947ae status: 200 OK code: 200 - duration: 24.89875ms + duration: 22.142975ms - id: 62 request: proto: HTTP/1.1 @@ -3090,8 +3090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -3099,20 +3099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2214 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3120,10 +3120,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20e736c-d175-425b-9a65-d51218164c4b + - 4fb5c04f-6f54-4d28-b2b8-b264530fce00 status: 200 OK code: 200 - duration: 156.829125ms + duration: 105.116168ms - id: 63 request: proto: HTTP/1.1 @@ -3139,8 +3139,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -3150,7 +3150,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -3159,9 +3159,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:15 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,10 +3169,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b8237c8-3f36-4ec2-98fe-e96026491c42 + - 0b7d546d-dec0-4ea5-8a08-0aabe01f3e73 status: 404 Not Found code: 404 - duration: 35.384042ms + duration: 41.106833ms - id: 64 request: proto: HTTP/1.1 @@ -3188,8 +3188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -3199,7 +3199,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3208,9 +3208,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,10 +3218,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5406d419-f74b-4657-8c78-b64458e7a338 + - ffcbf8c7-553e-46ac-97ec-c53e50bfdd6f status: 200 OK code: 200 - duration: 82.244375ms + duration: 46.445301ms - id: 65 request: proto: HTTP/1.1 @@ -3237,8 +3237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -3257,9 +3257,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3267,10 +3267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 319f259b-5b4c-4d65-9b3b-f8095c2cba02 + - c97c6f7c-2158-4b24-9402-68ef5ca1c6cb status: 200 OK code: 200 - duration: 109.990458ms + duration: 49.463572ms - id: 66 request: proto: HTTP/1.1 @@ -3286,8 +3286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -3297,7 +3297,7 @@ interactions: trailer: {} content_length: 492 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' headers: Content-Length: - "492" @@ -3306,11 +3306,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3318,12 +3318,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67482e44-7fb9-4f10-94fe-a1eb6ddc029d + - e9596acb-88f9-422b-b270-54d425305f55 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 93.670625ms + duration: 53.07977ms - id: 67 request: proto: HTTP/1.1 @@ -3339,8 +3339,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3348,20 +3348,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3369,10 +3369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4febcbf7-b8d1-4596-abc9-c9d5547b69b4 + - b8da643a-9f53-481c-9f6e-daf2406b39c0 status: 200 OK code: 200 - duration: 28.713792ms + duration: 37.549894ms - id: 68 request: proto: HTTP/1.1 @@ -3388,8 +3388,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -3399,7 +3399,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -3408,9 +3408,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3418,10 +3418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1121ae1a-bada-4214-bbeb-83e3012245db + - ce36ea3d-71cf-4a15-a6ca-373bc295ac72 status: 200 OK code: 200 - duration: 89.137ms + duration: 66.031401ms - id: 69 request: proto: HTTP/1.1 @@ -3437,8 +3437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -3446,20 +3446,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:13.609794+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2214" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3467,10 +3467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f5571a4-3dac-4b7d-bcc6-3f141fc69a19 + - 451b54bd-8c5a-42c4-a822-cd57404d986b status: 200 OK code: 200 - duration: 167.536667ms + duration: 100.390936ms - id: 70 request: proto: HTTP/1.1 @@ -3486,8 +3486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3495,20 +3495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3516,10 +3516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4e34bb-ef48-45e6-a8c1-9acb33d40663 + - b96f982e-81d1-4aaf-8e75-eac1f6869189 status: 200 OK code: 200 - duration: 40.27175ms + duration: 53.721569ms - id: 71 request: proto: HTTP/1.1 @@ -3537,8 +3537,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: PATCH response: proto: HTTP/2.0 @@ -3548,7 +3548,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3557,9 +3557,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3567,10 +3567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a8427c8-466f-4d8b-9322-322d4aaf0dd1 + - 969b96ee-72a2-4eaa-863d-7fa205aecca4 status: 200 OK code: 200 - duration: 155.703625ms + duration: 91.564365ms - id: 72 request: proto: HTTP/1.1 @@ -3586,8 +3586,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -3597,7 +3597,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3606,9 +3606,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:16 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3616,10 +3616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaba1510-c07e-485d-928e-8337336b6e2d + - 6c5f1793-685c-44da-93b5-5ff2b9295314 status: 200 OK code: 200 - duration: 100.775ms + duration: 61.973003ms - id: 73 request: proto: HTTP/1.1 @@ -3635,8 +3635,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -3644,20 +3644,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2202 + content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2202" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:17 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3665,10 +3665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47bdb646-79d1-490b-91d8-4b3ec30e076b + - f969a3ae-e65d-4e0f-9904-15ad9c3341f5 status: 200 OK code: 200 - duration: 166.8745ms + duration: 104.074668ms - id: 74 request: proto: HTTP/1.1 @@ -3684,8 +3684,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3693,20 +3693,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:17 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3714,10 +3714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 129e6f62-566d-4c3f-b68c-40d31b986568 + - 89d9e9da-2021-4783-9f6f-1c43bb503ce0 status: 200 OK code: 200 - duration: 54.401041ms + duration: 42.01765ms - id: 75 request: proto: HTTP/1.1 @@ -3733,8 +3733,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -3744,7 +3744,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3753,9 +3753,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:17 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3763,10 +3763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb1f85c2-f45c-48fe-9fcd-4e0be70c711e + - 5de47edd-5cb8-480d-a09d-6bb7702d6461 status: 200 OK code: 200 - duration: 479.620041ms + duration: 45.595327ms - id: 76 request: proto: HTTP/1.1 @@ -3782,8 +3782,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f method: GET response: proto: HTTP/2.0 @@ -3793,7 +3793,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.566115Z","custom_routes_propagation_enabled":true,"id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:24:07.566115Z"}' + body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' headers: Content-Length: - "420" @@ -3802,9 +3802,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3812,10 +3812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c2d2f22-94e9-4ad0-9369-83d078e6aa7d + - b7ec5001-1c87-4839-a61c-b43def87e2e2 status: 200 OK code: 200 - duration: 29.259792ms + duration: 21.263607ms - id: 77 request: proto: HTTP/1.1 @@ -3831,8 +3831,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: GET response: proto: HTTP/2.0 @@ -3840,20 +3840,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:07.681955Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:24:07.681955Z","id":"7535fd15-58b8-4e89-ab52-d05f89e394f6","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"},{"created_at":"2025-09-30T09:24:07.681955Z","id":"81b97222-c500-4a16-90e6-d66c6fa2013f","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b125::/64","updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}],"tags":[],"updated_at":"2025-09-30T09:24:07.681955Z","vpc_id":"176d2b4e-9234-4d1a-ae30-481c9a692a7b"}' + body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' headers: Content-Length: - - "1109" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3861,10 +3861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a545b2e-4257-47bb-8923-ea9fd345c061 + - 576007a5-1d98-4648-9a94-844b717c5723 status: 200 OK code: 200 - duration: 30.422916ms + duration: 26.945211ms - id: 78 request: proto: HTTP/1.1 @@ -3880,8 +3880,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -3889,20 +3889,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2200 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3910,10 +3910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c78bd05f-46f8-42c3-818e-c12489303e54 + - 65a8e0ab-293a-4224-91cd-e02ef8249d18 status: 200 OK code: 200 - duration: 171.093917ms + duration: 90.937886ms - id: 79 request: proto: HTTP/1.1 @@ -3929,8 +3929,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -3940,7 +3940,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' headers: Content-Length: - "143" @@ -3949,9 +3949,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3959,10 +3959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 819aefd9-b152-4c4f-8f06-4b830bd6ccb1 + - ed1a771b-01e1-4f73-8c4c-97805afbdf59 status: 404 Not Found code: 404 - duration: 35.340666ms + duration: 30.84802ms - id: 80 request: proto: HTTP/1.1 @@ -3978,8 +3978,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -3989,7 +3989,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:24:08.343102Z","id":"5cbc3cf5-219b-4389-a394-cc65795c95ce","product_resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:08.343102Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3998,9 +3998,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4008,10 +4008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df98dad-56bd-4a7a-b32d-016aa477e0d9 + - 69781574-e6d5-47e4-bf24-36800285b9a5 status: 200 OK code: 200 - duration: 92.890458ms + duration: 48.989925ms - id: 81 request: proto: HTTP/1.1 @@ -4027,8 +4027,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data method: GET response: proto: HTTP/2.0 @@ -4047,9 +4047,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4057,10 +4057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 214ba6b8-b494-4c30-ac5b-efaeb3de37f4 + - b5972b4d-44b4-460c-be44-e320c952d182 status: 200 OK code: 200 - duration: 103.370833ms + duration: 58.930457ms - id: 82 request: proto: HTTP/1.1 @@ -4076,8 +4076,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics method: GET response: proto: HTTP/2.0 @@ -4087,7 +4087,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4096,11 +4096,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4108,12 +4108,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e104ada5-b911-4949-afac-6b53fe2a8ab6 + - 0607440e-3c2b-43b8-b989-4b31c851b51c X-Total-Count: - "1" status: 200 OK code: 200 - duration: 98.331167ms + duration: 56.238521ms - id: 83 request: proto: HTTP/1.1 @@ -4129,8 +4129,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4138,20 +4138,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4159,10 +4159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef546b4a-a1d7-48ef-9c42-bf2cac8f6341 + - 6ad37b18-b48d-42d5-9cb0-f4f2ec70abe2 status: 200 OK code: 200 - duration: 31.224667ms + duration: 28.388184ms - id: 84 request: proto: HTTP/1.1 @@ -4178,8 +4178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -4189,7 +4189,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4198,9 +4198,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4208,10 +4208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09b914e5-13f9-4d7e-8cf3-6dafd93d6137 + - 2bc3c6f4-12c0-447b-8566-2a74a376c988 status: 200 OK code: 200 - duration: 93.274708ms + duration: 52.765578ms - id: 85 request: proto: HTTP/1.1 @@ -4227,8 +4227,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -4236,20 +4236,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2202 + content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2202" + - "2200" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:18 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4257,10 +4257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c8593a8-100c-49fa-8f72-783dceeb6060 + - 24df4fd5-0b5c-4c32-a779-e128ce51a623 status: 200 OK code: 200 - duration: 286.9925ms + duration: 101.419339ms - id: 86 request: proto: HTTP/1.1 @@ -4276,8 +4276,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9782a9e6-da9e-47b3-ad43-90576d1c72ba&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=e9df534d-4e3e-4633-988c-de61869c2f40&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4285,20 +4285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:b125:1259:8fcd:3148:8014/64","created_at":"2025-09-30T09:24:10.452860Z","id":"8b0eb23c-dcbf-4a41-a99d-8d8779a69148","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"81b97222-c500-4a16-90e6-d66c6fa2013f"},"tags":[],"updated_at":"2025-09-30T09:24:10.452860Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:24:10.289916Z","id":"aab7999b-8d1b-462a-b672-19f8b518a412","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e9df534d-4e3e-4633-988c-de61869c2f40","mac_address":"02:00:00:10:2E:4C","name":"tf-srv-gifted-wilbur","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7535fd15-58b8-4e89-ab52-d05f89e394f6"},"tags":[],"updated_at":"2025-09-30T09:24:10.289916Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1071" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:19 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4306,10 +4306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae231b48-ccc6-4ae1-95ef-f4ae31ecea7e + - 1169f03b-f5f9-4246-afb7-63e275897fe6 status: 200 OK code: 200 - duration: 55.530334ms + duration: 55.232257ms - id: 87 request: proto: HTTP/1.1 @@ -4325,8 +4325,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -4336,7 +4336,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:24:09.950804+00:00","id":"e9df534d-4e3e-4633-988c-de61869c2f40","ipam_ip_ids":["aab7999b-8d1b-462a-b672-19f8b518a412","8b0eb23c-dcbf-4a41-a99d-8d8779a69148"],"mac_address":"02:00:00:10:2e:4c","modification_date":"2025-09-30T09:24:16.752425+00:00","private_network_id":"9782a9e6-da9e-47b3-ad43-90576d1c72ba","server_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4345,9 +4345,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:19 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4355,10 +4355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e23b2224-b5ca-4fbc-9ef9-24b054ff3294 + - b3c037c5-8056-4067-817b-efb7d8c50503 status: 200 OK code: 200 - duration: 103.13575ms + duration: 49.215111ms - id: 88 request: proto: HTTP/1.1 @@ -4374,8 +4374,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: DELETE response: proto: HTTP/2.0 @@ -4392,9 +4392,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:19 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4402,10 +4402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c6969b3-b47b-408b-8f32-a1f19e90578f + - 954d27db-818f-4f26-aa67-56c1ea988101 status: 204 No Content code: 204 - duration: 314.931416ms + duration: 209.021933ms - id: 89 request: proto: HTTP/1.1 @@ -4421,8 +4421,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -4432,7 +4432,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"e9df534d-4e3e-4633-988c-de61869c2f40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","type":"not_found"}' headers: Content-Length: - "148" @@ -4441,9 +4441,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:19 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4451,10 +4451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46399aff-cfd9-422d-b1f4-c3334c9060ee + - 38873d7d-ae76-42ff-bc68-3d382a64b151 status: 404 Not Found code: 404 - duration: 111.94425ms + duration: 76.655871ms - id: 90 request: proto: HTTP/1.1 @@ -4470,8 +4470,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -4479,20 +4479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 1742 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1830" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:19 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4500,10 +4500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c79ecf1-fbc5-46a0-ba63-c9125b6d7e22 + - bc31b297-17e0-4cf3-848f-78efc227380d status: 200 OK code: 200 - duration: 162.663292ms + duration: 120.534978ms - id: 91 request: proto: HTTP/1.1 @@ -4519,8 +4519,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: GET response: proto: HTTP/2.0 @@ -4528,20 +4528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1830 + content_length: 705 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:24:08.194413+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gifted-wilbur","id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:b5","maintenances":[],"modification_date":"2025-09-30T09:24:08.194413+00:00","name":"tf-srv-gifted-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"febcb0ae-49ca-4433-9442-1e65633958c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' headers: Content-Length: - - "1830" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4549,11 +4549,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79ce19dd-7170-4112-a299-f781b305251e + - 7d265821-6794-48af-aac3-21adda17f018 status: 200 OK code: 200 - duration: 159.775167ms + duration: 56.506477ms - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action","href_result":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1","id":"1911b001-df59-4695-852c-c8e305ecd072","progress":0,"started_at":"2025-10-08T23:05:27.245892+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1911b001-df59-4695-852c-c8e305ecd072 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb24c831-0816-4536-a11e-3c9d7d105c56 + status: 202 Accepted + code: 202 + duration: 191.091169ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1764 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:27.098929+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1764" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4bcf4a94-e9b6-4241-b671-69cef0ca51cd + status: 200 OK + code: 200 + duration: 89.626656ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4568,8 +4670,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c method: DELETE response: proto: HTTP/2.0 @@ -4586,9 +4688,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4596,11 +4698,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d58c4c-78e5-4a4f-b465-564963357994 + - 54a2f58f-fd8b-4aaa-8dcb-932df8ae03dd status: 204 No Content code: 204 - duration: 225.497875ms - - id: 93 + duration: 1.124101566s + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4615,29 +4717,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4645,11 +4745,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 291db3e1-ee89-45ae-808d-e4ee53d1204f - status: 404 Not Found - code: 404 - duration: 63.366042ms - - id: 94 + - 5cda4c02-44ab-4828-83fb-78d8ee9698b7 + status: 204 No Content + code: 204 + duration: 155.700464ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4664,8 +4764,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -4673,20 +4773,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1899 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"febcb0ae-49ca-4433-9442-1e65633958c3","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:29.855517+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4694,11 +4794,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d6faa3a-8735-438e-9abc-bf45bb6f9aea - status: 404 Not Found - code: 404 - duration: 31.291125ms - - id: 95 + - 9573d1b1-df71-4657-b983-498b60d4a5bc + status: 200 OK + code: 200 + duration: 104.6435ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action","href_result":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1","id":"323a8301-7e15-4284-b749-7c80fcb72d5e","progress":0,"started_at":"2025-10-08T23:05:32.619443+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:32 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/323a8301-7e15-4284-b749-7c80fcb72d5e + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 10ed87e3-cccd-42b8-958e-7aa3a04477d1 + status: 202 Accepted + code: 202 + duration: 174.490756ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4713,8 +4866,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 method: GET response: proto: HTTP/2.0 @@ -4722,20 +4875,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 1862 uncompressed: false - body: '{"created_at":"2025-09-30T09:24:08.343102Z","id":"febcb0ae-49ca-4433-9442-1e65633958c3","last_detached_at":"2025-09-30T09:24:20.419874Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:24:20.419874Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:32.488586+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "498" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4743,11 +4896,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44d4216c-596b-4d9a-bb65-90f0be33188a + - 09f34267-6cf0-468e-bf2c-15c51e4c4464 status: 200 OK code: 200 - duration: 82.39875ms - - id: 96 + duration: 107.01915ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4762,27 +4915,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/febcb0ae-49ca-4433-9442-1e65633958c3 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4790,11 +4945,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8cc8578-70ce-4c2d-8027-90f4e34a0405 - status: 204 No Content - code: 204 - duration: 155.648916ms - - id: 97 + - f462debf-3db2-44f3-925e-a972e5c25a88 + status: 404 Not Found + code: 404 + duration: 65.660611ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4809,27 +4964,78 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9782a9e6-da9e-47b3-ad43-90576d1c72ba - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d5e5ae3-5eb8-4a9e-88ea-810166d5a36f + status: 404 Not Found + code: 404 + duration: 33.85117ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 498 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":"2025-10-08T23:05:34.212440Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:34.212440Z","zone":"fr-par-1"}' headers: + Content-Length: + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:20 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4837,11 +5043,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d10af3b-9382-44b3-bd1c-a3ae4a0145ca - status: 204 No Content - code: 204 - duration: 1.173070875s - - id: 98 + - e29ee019-3384-4d7a-af90-806f5c54a73e + status: 200 OK + code: 200 + duration: 49.930484ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -4856,8 +5062,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/176d2b4e-9234-4d1a-ae30-481c9a692a7b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 method: DELETE response: proto: HTTP/2.0 @@ -4874,9 +5080,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:21 GMT + - Wed, 08 Oct 2025 23:05:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4884,11 +5090,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4bec260-3381-48fe-8c02-aa5ea7b5d9f0 + - 1366e4ed-3dbc-4db5-bac5-19c03b377d4c status: 204 No Content code: 204 - duration: 107.00925ms - - id: 99 + duration: 67.376368ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4903,8 +5109,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/56273c13-a0ff-4cc0-b59c-fc89d9cea1ba/private_nics/e9df534d-4e3e-4633-988c-de61869c2f40 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 method: GET response: proto: HTTP/2.0 @@ -4914,7 +5120,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"56273c13-a0ff-4cc0-b59c-fc89d9cea1ba","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","type":"not_found"}' headers: Content-Length: - "143" @@ -4923,9 +5129,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:24:21 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4933,7 +5139,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f31de465-64ff-43c8-8c28-5cc4d658cde4 + - 20a34ca9-9422-4020-9f9d-b80ef866f4f8 status: 404 Not Found code: 404 - duration: 34.519416ms + duration: 30.69794ms diff --git a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml index c5107e4a0..1ffcde8a8 100644 --- a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 134 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":false,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:15:01.598772Z"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "426" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT + - Wed, 08 Oct 2025 23:05:18 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,50 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 465b75d1-b920-4df0-a619-a0e91066c682 + - 1e600a96-3635-4b76-9ccb-2e64c1d2458e + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 557.041959ms + duration: 48.663411ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 134 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 436 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' headers: Content-Length: - - "39208" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,52 +101,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1622d40c-a23c-462d-82bf-19effb7e66c2 - X-Total-Count: - - "75" + - acf4c975-7390-4b0f-8afc-4a4c580312ca status: 200 OK code: 200 - duration: 554.405959ms + duration: 78.050496ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359/enable-custom-routes-propagation - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 436 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:15:01.758550Z"}' + body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' headers: Content-Length: - - "425" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce6310f9-43a4-4830-ba43-1b2bc294a628 + - fce673f0-bc85-4c68-9022-24c883d21acb status: 200 OK code: 200 - duration: 103.651041ms + duration: 29.24972ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +189,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 358550aa-6b1a-4569-8fa1-122b585b0a9b + - afe3a0b3-f06e-4ed5-9f85-d6abe2241a0a X-Total-Count: - "75" status: 200 OK code: 200 - duration: 107.508583ms + duration: 54.294982ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -233,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 1260 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:15:01.758550Z"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "425" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,48 +252,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 040e2935-7e20-49f8-a532-f39acc84d601 + - 53c5698d-fc60-48be-b8a1-e02cc55fe682 status: 200 OK code: 200 - duration: 125.189333ms + duration: 44.839357ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 256 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1777 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1185" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:01 GMT + - Wed, 08 Oct 2025 23:05:18 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,50 +305,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0abb6fb3-c497-4576-8be6-5278f01ec004 - status: 200 OK - code: 200 - duration: 119.86725ms + - 2295fd64-e0fa-4b3e-b9ff-fe0460d650b9 + status: 201 Created + code: 201 + duration: 535.259965ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 230 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"aa80e052-4249-4791-945b-794e9de2c359","default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1777 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1084" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:02 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,29 +354,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c0f98b5-b543-457a-9147-51c0380610bc + - 8b1b7fc7-f70e-4f80-b83d-018b25d67fdb status: 200 OK code: 200 - duration: 648.952125ms + duration: 117.733863ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 256 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -384,22 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' headers: Content-Length: - - "1755" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -407,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a70b3dc7-0582-4f32-b5ae-6f8ac0320247 - status: 201 Created - code: 201 - duration: 724.710334ms + - 93d74a99-fc74-43b3-9f7b-bfa7fa6bb78f + status: 200 OK + code: 200 + duration: 701.339741ms - id: 8 request: proto: HTTP/1.1 @@ -426,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc method: GET response: proto: HTTP/2.0 @@ -435,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' + body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' headers: Content-Length: - - "1084" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:02 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -456,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cb6d465-4ca0-4ba2-99f2-7e329ba6d1da + - 574fd2f3-d79e-4b10-8623-702e49d2a762 status: 200 OK code: 200 - duration: 68.779416ms + duration: 26.172159ms - id: 9 request: proto: HTTP/1.1 @@ -475,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -484,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 1777 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1755" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:02 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74c57210-aca0-4247-a160-d8fdf40e84ef + - f4757b7e-2351-45f6-bb70-2b619823eb12 status: 200 OK code: 200 - duration: 211.946333ms + duration: 111.937697ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -533,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' headers: Content-Length: - - "1755" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:03 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,48 +552,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cf4c5c8-897f-4583-99db-a94bfce00400 + - a7481afe-8e51-4cdf-a226-86117efb80ae status: 200 OK code: 200 - duration: 151.450583ms + duration: 48.930236ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 174 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","source":{"private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 363 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:19.360Z","zone":null}' headers: Content-Length: - - "682" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:03 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,52 +603,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13065bbe-c34c-464b-8550-d58ea9942eae + - 8f3a1c71-4a32-4e4e-84a6-729501911aab status: 200 OK code: 200 - duration: 56.040875ms + duration: 252.95618ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 363 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/003bcb3c-b0da-4189-9047-898accac64ec/action","href_result":"/servers/003bcb3c-b0da-4189-9047-898accac64ec","id":"7f8a7790-97f6-42c3-b066-ac62b15ce107","progress":0,"started_at":"2025-06-30T15:15:03.283881+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:19.360Z","zone":null}' headers: Content-Length: - - "357" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7f8a7790-97f6-42c3-b066-ac62b15ce107 + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,29 +652,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef158a4e-7216-43ce-9b87-56b932b2fc09 - status: 202 Accepted - code: 202 - duration: 859.877292ms + - c4439fca-12e9-49d0-a264-8006c84839d8 + status: 200 OK + code: 200 + duration: 30.908584ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 174 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' + body: '{"action":"poweron"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action method: POST response: proto: HTTP/2.0 @@ -686,20 +682,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 357 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:03.702548Z","zone":null}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action","href_result":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363","id":"40fac474-d68d-4fc5-8bc6-9baa2bfd871f","progress":0,"started_at":"2025-10-08T23:05:19.440107+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "358" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:03 GMT + - Wed, 08 Oct 2025 23:05:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/40fac474-d68d-4fc5-8bc6-9baa2bfd871f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74c5bd9b-a0c4-4b34-95db-8a25370a47bc - status: 200 OK - code: 200 - duration: 1.271387625s + - f9f6c9c4-fc65-4ec0-a962-b3475b2d3ef3 + status: 202 Accepted + code: 202 + duration: 187.075947ms - id: 14 request: proto: HTTP/1.1 @@ -726,8 +724,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc method: GET response: proto: HTTP/2.0 @@ -735,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 358 + content_length: 1108 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:03.702548Z","zone":null}' + body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' headers: Content-Length: - - "358" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:03 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3a1417e-ac78-4f4a-a2cb-6ab0bbba29e8 + - 66e33105-6f9b-495b-82ed-d43edc27b83c status: 200 OK code: 200 - duration: 28.499ms + duration: 27.851741ms - id: 15 request: proto: HTTP/1.1 @@ -775,8 +773,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -784,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 1799 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:19.297996+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1084" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:04 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce5d9b4d-c492-4776-a332-16306bd6d96f + - a46d750c-b3d2-4a06-8d57-394c35e06058 status: 200 OK code: 200 - duration: 36.664042ms + duration: 95.07402ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -833,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:03.111957+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:04 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdd45fc6-c507-4b36-9e3b-9a60707030fb + - cd0e0329-616b-4d71-9b21-28eba666b1ac status: 200 OK code: 200 - duration: 179.297875ms + duration: 107.360626ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -882,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1911" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd14aaa-d266-4456-ba70-640b31395004 + - 3a19f4d2-8ec4-489f-a6ee-39b4ef7a45d4 status: 200 OK code: 200 - duration: 170.211667ms + duration: 89.54193ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -931,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' headers: Content-Length: - - "1911" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba2bbacd-2c64-47f1-a40f-46337e52a5a3 - status: 200 OK - code: 200 - duration: 174.827833ms + - 07d117b7-d772-47af-a814-e04ebf4f4e2e + status: 404 Not Found + code: 404 + duration: 36.66785ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -980,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd80e20-2a96-4189-add4-2e0a69b1c055 - status: 404 Not Found - code: 404 - duration: 52.04775ms + - fa4ff3d6-177a-40e2-a8dc-6a83964e59fe + status: 200 OK + code: 200 + duration: 40.624078ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/user_data method: GET response: proto: HTTP/2.0 @@ -1029,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "682" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95d278ad-19f1-4afe-834e-9211c9153710 + - 2a3673c1-772d-465f-9b73-fd527333d2c2 status: 200 OK code: 200 - duration: 45.488ms + duration: 51.747563ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics method: GET response: proto: HTTP/2.0 @@ -1078,20 +1076,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2275b9d-89c5-4903-922d-110d09bf4373 + - e98d5fc9-7b76-455a-9243-bf451c902715 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 62.799417ms + duration: 55.516544ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -1127,22 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1933 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,50 +1150,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fcd8dab-215a-4e05-aa10-e945d037826c - X-Total-Count: - - "0" + - 493cfe02-49b9-460f-a426-c5eff42c999f status: 200 OK code: 200 - duration: 65.090667ms + duration: 116.336902ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 116 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 433 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1911" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:09 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,30 +1201,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a853553f-c3aa-49db-8bcc-1c8b896aa779 - status: 200 OK - code: 200 - duration: 250.268625ms + - f5845bb0-8f98-484b-b3c0-01537de76304 + status: 201 Created + code: 201 + duration: 410.394117ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 116 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1233,7 +1231,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1242,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:10 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 351fbd58-0573-436f-9a69-e1ef2106861e - status: 201 Created - code: 201 - duration: 433.032958ms + - 768326bb-a38c-43bf-b7b2-f5c3d9acb05b + status: 200 OK + code: 200 + duration: 53.310929ms - id: 25 request: proto: HTTP/1.1 @@ -1271,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1282,7 +1280,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1291,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:10 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c777481-52db-4e59-b814-8b2b255927d6 + - d2a708fc-6548-4dae-a412-a1c99a91181a status: 200 OK code: 200 - duration: 70.732625ms + duration: 46.146607ms - id: 26 request: proto: HTTP/1.1 @@ -1320,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1331,7 +1329,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1340,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:15 GMT + - Wed, 08 Oct 2025 23:05:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a3f2108-c070-41b1-9389-135955c5fd64 + - ec36884b-3e5b-48b3-83fb-b6732f960960 status: 200 OK code: 200 - duration: 64.434458ms + duration: 55.711232ms - id: 27 request: proto: HTTP/1.1 @@ -1369,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1380,7 +1378,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1389,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:20 GMT + - Wed, 08 Oct 2025 23:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32dd1345-4d06-48b4-a90d-d406ce68c0ac + - d0c05cca-6ba8-4695-964d-665614c62640 status: 200 OK code: 200 - duration: 145.861792ms + duration: 62.49672ms - id: 28 request: proto: HTTP/1.1 @@ -1418,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1429,7 +1427,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1438,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:25 GMT + - Wed, 08 Oct 2025 23:05:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd853ff8-8c44-427c-8e3a-59d43d2f6cfe + - 66842830-7a8f-4d01-8787-aa000c03c7da status: 200 OK code: 200 - duration: 85.300334ms + duration: 57.175342ms - id: 29 request: proto: HTTP/1.1 @@ -1467,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1478,7 +1476,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1487,9 +1485,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:30 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,10 +1495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dcb9e60-f3b5-4c7e-9164-0e5dcbdd862e + - a877e637-dbed-4c65-a461-c804c821397a status: 200 OK code: 200 - duration: 62.604333ms + duration: 56.364098ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1527,7 +1525,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1536,9 +1534,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:35 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 369106ff-5e9a-45c8-b2ab-1c3ffdc15715 + - 59e693e8-c624-4dc5-9c11-08a3f89aa12c status: 200 OK code: 200 - duration: 66.99075ms + duration: 54.802284ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "435" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:40 GMT + - Wed, 08 Oct 2025 23:06:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d1d6ba9-5e25-46b3-a882-10f32fabbf63 + - bdc4cc8e-72b7-4e01-b184-22c6591ac61b status: 200 OK code: 200 - duration: 70.645584ms + duration: 61.026401ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1623,20 +1621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "435" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51d966d5-8252-4f0d-8a25-903646804bad + - ecb28fee-bbf4-4a2a-8c02-f5b2220beb81 status: 200 OK code: 200 - duration: 65.135458ms + duration: 56.632391ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1672,20 +1670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 433 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2329" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be66bc0d-cd4d-4f54-90eb-874cd9c4126d + - 22d3e4c3-912c-4b1e-a4fa-5c91b16e7d61 status: 200 OK code: 200 - duration: 155.773042ms + duration: 59.554211ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f832f095-fcfd-4313-a3fd-790f9526222b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1721,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 435 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc3b1a1-0f39-4df2-91dc-968696a4dcdd + - 124e625b-ec74-4e95-a1e5-8ce6ce5a7531 status: 200 OK code: 200 - duration: 48.437709ms + duration: 53.15089ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1770,20 +1768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 435 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d2542ea-8f39-4d84-b245-063f914f047b + - 7dca5830-cb8f-4e1f-b8a9-a076ff7c7e5a status: 200 OK code: 200 - duration: 52.912125ms + duration: 56.450883ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -1819,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 2351 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "435" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 024ad6b5-444f-4984-b261-5d7e4028c5de + - 5b3e5076-1cdf-49ac-bcd9-c61336835949 status: 200 OK code: 200 - duration: 86.304292ms + duration: 104.651896ms - id: 37 request: proto: HTTP/1.1 @@ -1859,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=ec2365d8-e92b-47c5-9532-cc7209811ecc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1868,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: Content-Length: - - "537" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b3ee7d9-ed88-4e76-86a7-f63075e52101 + - a6427266-5891-4fdc-902b-f55fe8c76594 status: 200 OK code: 200 - duration: 74.8575ms + duration: 44.622295ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1917,20 +1915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 549 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:15:01.758550Z"}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: Content-Length: - - "425" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ff581a4-5e52-40a2-bfaf-0996a524c56b + - ef2e16b9-b9e2-4420-bc3f-2a2a6dd64d0b status: 200 OK code: 200 - duration: 32.599417ms + duration: 41.454919ms - id: 39 request: proto: HTTP/1.1 @@ -1957,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -1966,20 +1964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 435 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1084" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,10 +1985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f0b3dc7-2b75-4ad2-a6f0-5cf1d021eea3 + - 40fd302f-d5c9-4475-96e4-ae43213f1adf status: 200 OK code: 200 - duration: 25.355625ms + duration: 51.056852ms - id: 40 request: proto: HTTP/1.1 @@ -2006,8 +2004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2015,20 +2013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 511 + content_length: 549 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: Content-Length: - - "511" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e70c3379-6f77-45d1-b4f8-d950ae78d8b5 + - e5e4623f-180b-4807-aa33-d113c358a9d5 status: 200 OK code: 200 - duration: 31.104583ms + duration: 50.408461ms - id: 41 request: proto: HTTP/1.1 @@ -2055,8 +2053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 method: GET response: proto: HTTP/2.0 @@ -2064,20 +2062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1084 + content_length: 436 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' + body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' headers: Content-Length: - - "1084" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4da4d30-257a-476b-aebd-a7d5ebd2be8d + - 1bc38609-4e26-4b5e-8288-5379e18054f8 status: 200 OK code: 200 - duration: 29.476334ms + duration: 28.946301ms - id: 42 request: proto: HTTP/1.1 @@ -2104,8 +2102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc method: GET response: proto: HTTP/2.0 @@ -2113,20 +2111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' headers: Content-Length: - - "2329" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d876272a-3ef8-4ba6-8627-eed55639a4e1 + - a285ed37-d4bc-48b1-9103-f992af80755c status: 200 OK code: 200 - duration: 136.221ms + duration: 21.124204ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 method: GET response: proto: HTTP/2.0 @@ -2162,20 +2160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 522 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}' headers: Content-Length: - - "143" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7adce826-ee3c-4a5a-890a-b1b8b0956ff1 - status: 404 Not Found - code: 404 - duration: 35.263042ms + - 127ae06a-5b18-4ee5-85ec-dc9a54179b18 + status: 200 OK + code: 200 + duration: 22.479775ms - id: 44 request: proto: HTTP/1.1 @@ -2202,8 +2200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -2211,20 +2209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 2351 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "682" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efa6ff15-6571-42cc-9e0d-568ce42fffdf + - 4b9dd488-4ba3-4a2b-a4d3-0f6cd834e7e4 status: 200 OK code: 200 - duration: 44.4535ms + duration: 95.708762ms - id: 45 request: proto: HTTP/1.1 @@ -2251,8 +2249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc method: GET response: proto: HTTP/2.0 @@ -2260,20 +2258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1108 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' headers: Content-Length: - - "17" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:41 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,10 +2279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da233fb7-bd7b-43ad-acad-723f4528f5f6 + - 852bb362-7599-44ed-a3d0-8d07ecb6ed80 status: 200 OK code: 200 - duration: 56.782125ms + duration: 26.017447ms - id: 46 request: proto: HTTP/1.1 @@ -2300,8 +2298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -2309,22 +2307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 438 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' headers: Content-Length: - - "438" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,12 +2328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a518cc21-a157-4e33-94ad-89ef0fd9f768 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 67.69ms + - f12e2a7e-aef9-4087-a904-bafa9e875f86 + status: 404 Not Found + code: 404 + duration: 28.702489ms - id: 47 request: proto: HTTP/1.1 @@ -2353,8 +2347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -2362,20 +2356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 701 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' headers: Content-Length: - - "537" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,10 +2377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef78a3c3-6342-4279-935b-6b177840fcaa + - f5a0a5ff-1ad7-4355-8b59-440f1760df6b status: 200 OK code: 200 - duration: 39.879083ms + duration: 38.963635ms - id: 48 request: proto: HTTP/1.1 @@ -2402,8 +2396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/user_data method: GET response: proto: HTTP/2.0 @@ -2411,20 +2405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "435" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,10 +2426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2857d90a-261c-4f42-a984-3a76d460f41b + - d273384f-7fdf-432a-9a05-1a0e883dbee7 status: 200 OK code: 200 - duration: 78.147583ms + duration: 60.029861ms - id: 49 request: proto: HTTP/1.1 @@ -2451,8 +2445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics method: GET response: proto: HTTP/2.0 @@ -2460,20 +2454,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 438 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2329" + - "438" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:17 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,10 +2477,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a50bd03-f953-45cf-a529-b1c6dda4bde3 + - 4ea92363-f5c0-4701-90d1-27c2f8dcd307 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 129.763541ms + duration: 60.829533ms - id: 50 request: proto: HTTP/1.1 @@ -2500,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f832f095-fcfd-4313-a3fd-790f9526222b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2509,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: Content-Length: - - "537" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73a06f2-ef4c-4bca-a877-649fa8abc361 + - 8471a46a-b579-4728-a05f-95700854dad8 status: 200 OK code: 200 - duration: 55.248333ms + duration: 28.08172ms - id: 51 request: proto: HTTP/1.1 @@ -2549,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -2558,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 435 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89c212d5-2640-4d68-96d5-105c92a5c833 + - 221ff930-2917-47f7-b132-702931298829 status: 200 OK code: 200 - duration: 55.805125ms + duration: 56.145407ms - id: 52 request: proto: HTTP/1.1 @@ -2598,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -2607,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 2351 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70c9161d-1c74-4f1f-92c4-771b1df2b1f8 + - 6ff8bab8-70e4-4dc0-89f0-b7e425868a14 status: 200 OK code: 200 - duration: 104.637417ms + duration: 102.664485ms - id: 53 request: proto: HTTP/1.1 @@ -2647,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=ec2365d8-e92b-47c5-9532-cc7209811ecc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2656,20 +2654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 549 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: Content-Length: - - "435" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:42 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e337c57-8779-4ac0-b457-645a7691b250 + - 94438be2-8534-4e20-b245-05985bc75903 status: 200 OK code: 200 - duration: 987.938ms + duration: 44.790406ms - id: 54 request: proto: HTTP/1.1 @@ -2696,27 +2694,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 549 uncompressed: false - body: "" + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' headers: + Content-Length: + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:43 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70fd917d-ec08-4864-a601-b4a84e313b1c - status: 204 No Content - code: 204 - duration: 258.626666ms + - de167aa9-957e-4f8d-839a-24e5567c504b + status: 200 OK + code: 200 + duration: 51.158601ms - id: 55 request: proto: HTTP/1.1 @@ -2743,8 +2743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -2752,20 +2752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 435 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:44 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,29 +2773,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b809cc82-c75c-419a-ba99-024493c76712 - status: 404 Not Found - code: 404 - duration: 63.598875ms + - 34aa174f-7f5c-4cbd-af57-7a06da904eba + status: 200 OK + code: 200 + duration: 54.191658ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: DELETE response: proto: HTTP/2.0 @@ -2812,9 +2810,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:44 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2822,10 +2820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc4c6e9c-2c96-4db5-a8de-9873a0b7aa37 + - cdc94c3d-bfce-4bc2-b6a4-e9f7950a2b68 status: 204 No Content code: 204 - duration: 53.556167ms + duration: 204.449941ms - id: 57 request: proto: HTTP/1.1 @@ -2841,8 +2839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -2850,20 +2848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 148 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","type":"not_found"}' headers: Content-Length: - - "1911" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:44 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2871,48 +2869,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcba183a-2922-4943-9a90-9f9e541cdf43 - status: 200 OK - code: 200 - duration: 134.156791ms + - 401d8f0e-9262-4371-a575-2adafd3f1bd8 + status: 404 Not Found + code: 404 + duration: 49.483187ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 682 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:44 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2920,64 +2918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37d54f7c-0616-47ef-a95c-b2fc790bb1f4 - status: 200 OK - code: 200 - duration: 68.06925ms + - 8416f3e1-b3a0-4401-a809-6862d066a7a2 + status: 204 No Content + code: 204 + duration: 64.009091ms - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/003bcb3c-b0da-4189-9047-898accac64ec/action","href_result":"/servers/003bcb3c-b0da-4189-9047-898accac64ec","id":"b036827e-d472-48c6-8e84-ec85465d8002","progress":0,"started_at":"2025-06-30T15:15:44.442188+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:15:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b036827e-d472-48c6-8e84-ec85465d8002 - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c650048-c7a5-4c72-87f0-dbd160a9381f - status: 202 Accepted - code: 202 - duration: 429.183209ms - - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2992,8 +2937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -3001,20 +2946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1871" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:44 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,191 +2967,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0982526e-a2be-4848-82b3-e246cebf66a9 + - 272a52de-3020-496d-ba59-9f1ddcddb80e status: 200 OK code: 200 - duration: 129.3235ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:15:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e62ee93-7516-4b35-97fe-693ae3c0de94 - status: 204 No Content - code: 204 - duration: 1.892658625s - - id: 62 + duration: 104.133425ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Mon, 30 Jun 2025 15:15:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1fbd27f-c19a-461d-a963-e53e35b374c9 - status: 204 No Content - code: 204 - duration: 113.953375ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1871 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1871" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:15:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0f816019-20ff-4160-ab17-744065c16d8e - status: 200 OK - code: 200 - duration: 132.188708ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action","href_result":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363","id":"1450d70f-600d-4f97-8ce9-1510e1820e48","progress":0,"started_at":"2025-10-08T23:06:18.148983+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1871" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:55 GMT + - Wed, 08 Oct 2025 23:06:18 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1450d70f-600d-4f97-8ce9-1510e1820e48 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3214,11 +3020,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 997fd5fb-2768-49aa-9f32-bcea5538589e - status: 200 OK - code: 200 - duration: 156.798666ms - - id: 65 + - 5e0654dd-e819-4ed8-8919-78c5d226fa3b + status: 202 Accepted + code: 202 + duration: 182.01081ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3233,8 +3039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -3242,20 +3048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1871 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:06:18.014768+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1871" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:00 GMT + - Wed, 08 Oct 2025 23:06:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3263,11 +3069,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e753c21-cea6-4582-a538-cef6ba5e8214 + - a1879434-1865-4de2-8af1-b6cfe0b6a17f status: 200 OK code: 200 - duration: 196.530917ms - - id: 66 + duration: 89.730438ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3282,127 +3088,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1871 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1871" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:16:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c580ea5-1dfd-4157-bf7e-b62b486fddeb - status: 200 OK - code: 200 - duration: 401.227542ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:16:05.840893+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1755" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:16:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca66429d-67c6-4e40-adf3-5bc144c4dc07 - status: 200 OK - code: 200 - duration: 317.697542ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" body: "" - form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1755 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:16:05.840893+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3410,11 +3116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d17afd2e-e538-4ce3-ad87-f16e839ecf12 - status: 200 OK - code: 200 - duration: 227.99275ms - - id: 69 + - 1060c92b-15b6-4710-8fae-7a1f1c4e78aa + status: 204 No Content + code: 204 + duration: 1.212773937s + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3429,8 +3135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 method: DELETE response: proto: HTTP/2.0 @@ -3447,9 +3153,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3457,11 +3163,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 752f744a-fba9-4e97-8f0d-66a91a5f326a + - a35a9605-fc1a-4b82-96cb-df8a5db724ed status: 204 No Content code: 204 - duration: 274.187834ms - - id: 70 + duration: 115.971981ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3476,8 +3182,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 method: GET response: proto: HTTP/2.0 @@ -3487,7 +3193,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","type":"not_found"}' headers: Content-Length: - "143" @@ -3496,9 +3202,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3506,11 +3212,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7716852b-7466-4fb8-b0fd-7a404193e725 + - be93c3ec-3afe-44e2-8ab2-fe1a7fc608fa status: 404 Not Found code: 404 - duration: 91.128417ms - - id: 71 + duration: 48.516796ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3525,8 +3231,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -3536,7 +3242,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' headers: Content-Length: - "143" @@ -3545,9 +3251,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3555,11 +3261,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cc92644-79e2-4249-bcc9-cb6d32db5ac9 + - 431d1f3b-6f6b-44dd-b2f1-46105c4d5c6d status: 404 Not Found code: 404 - duration: 32.710209ms - - id: 72 + duration: 26.709649ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3574,8 +3280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: GET response: proto: HTTP/2.0 @@ -3583,20 +3289,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 480 + content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":"2025-06-30T15:16:11.578400Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:16:11.578400Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":"2025-10-08T23:06:20.228446Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:20.228446Z","zone":"fr-par-1"}' headers: Content-Length: - - "480" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3604,11 +3310,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 630e2395-9eed-4059-980a-19937ca6da43 + - e159f963-f926-495f-bafb-e189144589c8 status: 200 OK code: 200 - duration: 47.458916ms - - id: 73 + duration: 61.965815ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3623,8 +3329,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 method: DELETE response: proto: HTTP/2.0 @@ -3641,9 +3347,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3651,11 +3357,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd38a1e6-c2db-4309-93bd-f120f9beaa35 + - 95e5827a-5caf-4182-bf2a-042e9897ce68 status: 204 No Content code: 204 - duration: 80.352666ms - - id: 74 + duration: 71.373018ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3670,8 +3376,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 method: GET response: proto: HTTP/2.0 @@ -3681,7 +3387,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","type":"not_found"}' headers: Content-Length: - "143" @@ -3690,9 +3396,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:11 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3700,7 +3406,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b0dd893-81a3-4dd4-bb2b-49e5e48c0b84 + - 828d31bd-4e2b-45f1-af49-8cd6bb5b83b3 status: 404 Not Found code: 404 - duration: 36.7965ms + duration: 36.423248ms diff --git a/internal/services/instance/testdata/server-alter-tags.cassette.yaml b/internal/services/instance/testdata/server-alter-tags.cassette.yaml index bca74ab0d..7b76a148b 100644 --- a/internal/services/instance/testdata/server-alter-tags.cassette.yaml +++ b/internal/services/instance/testdata/server-alter-tags.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 915f9a2d-cd06-4ea0-8814-75612fc4a341 + - cb2dc33c-2904-4483-b7c2-5791554d8275 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 45.729642ms + duration: 44.391379ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a0a5426-b863-4a5c-a390-714e9ceaa316 + - e4a790c9-9d75-41b5-93b0-bd9d2202d9d9 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 75.341577ms + duration: 58.920215ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d96b84-c343-4def-9f71-d28af3b098c5 + - af71fd5b-da0c-4b9e-891d-2fb5bca56b96 status: 200 OK code: 200 - duration: 123.208707ms + duration: 60.344704ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 260 + content_length: 257 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-pensive-mendeleev","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["front","web"]}' + body: '{"name":"tf-srv-musing-kapitsa","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["front","web"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c96b6e93-f326-47b7-9090-39343cda06d3 + - f6736580-f52a-4e76-a326-e8f037ef56e6 status: 201 Created code: 201 - duration: 820.933039ms + duration: 844.737434ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a89c4da3-9bd7-4e22-a26c-eddb43c7ec29 + - 1bd3889b-6412-44ba-bb5f-506036fd8550 status: 200 OK code: 200 - duration: 167.04074ms + duration: 96.122574ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a02f00fd-9d68-46cf-93bc-8d97d91eefc8 + - a501ecb9-5869-445c-9b8b-c9be930759fa status: 200 OK code: 200 - duration: 215.427105ms + duration: 96.954255ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6b47546-ad30-40e6-8202-01a89aad4fa6 + - f35e2ec2-4939-4ffc-8d18-cac86eb48f57 status: 200 OK code: 200 - duration: 171.868816ms + duration: 106.25221ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6379cec-c54b-445b-a727-05a2eecf8ca1 + - db6fd8ba-e1ec-4e14-92fc-2e9345a9bafa status: 404 Not Found code: 404 - duration: 74.066515ms + duration: 27.207805ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:37.978642Z","id":"2027d887-6ea9-4841-88d8-307502f52ff4","product_resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:37.978642Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9150f7f-5bf9-4a06-9d44-bef72cf4c0d2 + - 0b776ce3-b98e-4bea-a7b0-76c9c924395f status: 200 OK code: 200 - duration: 85.827332ms + duration: 37.037545ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75220085-c8f9-4abf-ab59-aae8c31ed68b + - 5eb77ca3-5474-4f82-8514-4da1b469277f status: 200 OK code: 200 - duration: 167.027796ms + duration: 57.078953ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a58dd19f-1dc6-430f-a80e-5e98c92593a1 + - d5422b42-1d17-4227-a3ec-649aeed3152e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 134.251798ms + duration: 59.559408ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 105fb7f6-91d8-451d-b068-e824bd80a4c7 + - 8e430370-7014-4ed9-bf99-c0694c2b718f status: 200 OK code: 200 - duration: 556.163125ms + duration: 97.644714ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd18eb2d-712a-44db-9c6d-83af4585c535 + - 957e6baf-5d4d-4908-bd60-d382949705b2 status: 200 OK code: 200 - duration: 151.62014ms + duration: 106.821434ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f72264-7d73-4bcf-b9e3-b33c7b684d31 + - e3057b3b-6c67-4caf-96a2-d49dc6683664 status: 404 Not Found code: 404 - duration: 80.52097ms + duration: 34.458107ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -729,7 +729,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:37.978642Z","id":"2027d887-6ea9-4841-88d8-307502f52ff4","product_resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:37.978642Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7f7648b-99cd-4f06-ac13-78cb0cbf098c + - e89128bd-13af-4c5d-99cd-cf8a51e501a6 status: 200 OK code: 200 - duration: 108.164042ms + duration: 45.66068ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data method: GET response: proto: HTTP/2.0 @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1bd33c7-8963-4010-bdd9-fd192aad3360 + - 865f5eae-f73c-4ea7-9cd8-f2aec74f7ec2 status: 200 OK code: 200 - duration: 155.461084ms + duration: 48.490412ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics method: GET response: proto: HTTP/2.0 @@ -836,11 +836,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 446f925c-e51d-4941-847f-18067ae3abbb + - 3fbf133d-ff28-4cd1-8a88-55ed8861744c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.981099ms + duration: 62.459621ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0936282f-4a4c-43dc-800c-e63edb06fad2 + - f363ac07-e8b5-45d7-b371-de10ff1cbeae status: 200 OK code: 200 - duration: 247.12384ms + duration: 117.93332ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4096572-66ff-4bbc-b47d-99adad5ec7d9 + - 491ef7ac-f301-453d-9bde-d9f201afc464 status: 404 Not Found code: 404 - duration: 78.386317ms + duration: 30.510192ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -978,7 +978,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:37.978642Z","id":"2027d887-6ea9-4841-88d8-307502f52ff4","product_resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:37.978642Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef7b42a9-cd95-4896-a0f8-20539d11deeb + - 034b97ca-d141-4a91-972c-29cb92ffa7fd status: 200 OK code: 200 - duration: 115.203013ms + duration: 50.319421ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e207230a-f809-4c56-8952-100ca9e7ac8c + - 790502fc-32be-4df6-88a9-6ceef1e37fff status: 200 OK code: 200 - duration: 139.738156ms + duration: 54.108159ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics method: GET response: proto: HTTP/2.0 @@ -1085,11 +1085,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,12 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b925043-044b-42e5-90ab-cca80a8c6015 + - ef8faff1-6790-47df-88fb-8ab4ddf62b3d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 118.962313ms + duration: 48.843005ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:37.774721+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1752" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a65473a2-64f3-4f17-a622-aafebe0dfa69 + - 69026eb0-a1d2-473f-ba22-29928f5ef62a status: 200 OK code: 200 - duration: 175.197428ms + duration: 99.911833ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1169,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: PATCH response: proto: HTTP/2.0 @@ -1178,20 +1178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71892bd5-86b8-4d2b-9898-1241e136fb98 + - 7c22c0bb-6273-44c1-967d-653045b5701c status: 200 OK code: 200 - duration: 362.261439ms + duration: 170.663306ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1227,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f3e8749-326f-4e6c-a879-a7df07bf6781 + - 0740246a-c31d-43f8-8864-399723dc472e status: 200 OK code: 200 - duration: 255.317505ms + duration: 100.598305ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f52608c-7bbe-48b5-ae61-5b265e41e6a4 + - 5ca870bb-cc15-4683-aa0b-f144fdb3101d status: 200 OK code: 200 - duration: 188.691875ms + duration: 112.116564ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79b42013-2ef3-4339-894d-14f8199a8f0f + - be69d386-886c-4d65-91cf-b7d7a2ffba0e status: 404 Not Found code: 404 - duration: 71.166397ms + duration: 31.644564ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:37.978642Z","id":"2027d887-6ea9-4841-88d8-307502f52ff4","product_resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:37.978642Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4c33b12-0b8c-4393-87f8-d407d9d6cc87 + - 7031d698-58e8-4037-93b1-e0e77fceec04 status: 200 OK code: 200 - duration: 75.575345ms + duration: 51.130312ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data method: GET response: proto: HTTP/2.0 @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ace5842-9f24-4454-a374-e23330bf90ff + - b841caa3-48d7-4af5-9b91-01e68d29ce7c status: 200 OK code: 200 - duration: 144.236894ms + duration: 62.99928ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics method: GET response: proto: HTTP/2.0 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21e1cb5b-2c00-4fa0-9bd0-b06722b03817 + - 76037d1e-0d84-49d4-aa23-0fbbba3424f1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 137.266291ms + duration: 65.100734ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7592b1c-a27c-49f0-9fc9-784dc7a807bc + - 8069d9d8-0832-4f9d-9195-0b537dc92eea status: 200 OK code: 200 - duration: 140.559557ms + duration: 98.483738ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49a2924a-3589-4d66-a7b7-130ac0a36881 + - 9671506a-ff7f-4f75-b959-abd30d9a979d status: 200 OK code: 200 - duration: 170.695584ms + duration: 80.599256ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -1625,7 +1625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -1634,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4506d81-98d7-4f30-bf2e-0d385533d99e + - 7bf5d5b3-49b0-4229-aba0-c6b6623ab917 status: 404 Not Found code: 404 - duration: 51.094694ms + duration: 27.016981ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -1674,7 +1674,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:37.978642Z","id":"2027d887-6ea9-4841-88d8-307502f52ff4","product_resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:37.978642Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1683,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7295d60-59e8-44d0-b75f-11df22b2132f + - 17bee9d6-42b0-47ca-a163-44ee047b5c12 status: 200 OK code: 200 - duration: 94.206907ms + duration: 47.845456ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data method: GET response: proto: HTTP/2.0 @@ -1732,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f981d114-5514-4ced-aa17-bc6a4229f3b4 + - b471aaa4-e5bf-442a-8f11-3611bc1bffba status: 200 OK code: 200 - duration: 145.5787ms + duration: 59.330473ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics method: GET response: proto: HTTP/2.0 @@ -1781,11 +1781,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,12 +1793,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 795e32c3-f981-4af9-978f-c43f1b56f62d + - e048ed61-2323-4e4e-a7a7-916be3b134ee X-Total-Count: - "0" status: 200 OK code: 200 - duration: 93.145055ms + duration: 69.006138ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1823,20 +1823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1729" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2a8c610-1d8a-47ff-a72d-27ba9fab7f89 + - cad4eb6c-00db-4be0-a494-46e5be66ea4b status: 200 OK code: 200 - duration: 414.204213ms + duration: 87.810654ms - id: 37 request: proto: HTTP/1.1 @@ -1863,8 +1863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -1872,20 +1872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1729 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-06-10T15:30:37.774721+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-pensive-mendeleev","id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:67","maintenances":[],"modification_date":"2025-06-10T15:30:44.175493+00:00","name":"tf-srv-pensive-mendeleev","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' headers: Content-Length: - - "1729" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,11 +1893,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 194b9e83-3c67-4a83-a110-8943e8b0a621 + - 99c791dd-c9c3-4c51-9871-07754c1df32a status: 200 OK code: 200 - duration: 169.460037ms + duration: 39.396334ms - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action","href_result":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152","id":"ce364ec8-548e-494f-8a35-b935be4a7788","progress":0,"started_at":"2025-10-08T23:04:31.601466+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ce364ec8-548e-494f-8a35-b935be4a7788 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed4c0a79-00cf-4988-ba9b-a95a9e61a095 + status: 202 Accepted + code: 202 + duration: 198.859159ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1912,27 +1965,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1767 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:31.448691+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1767" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbce20e2-805e-4d1b-8f96-b31c550b70fd + status: 200 OK + code: 200 + duration: 94.511337ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1900 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"702","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:33.964354+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1900" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41125383-ff57-405b-85d4-0f2ae78146ce + status: 200 OK + code: 200 + duration: 99.193269ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action","href_result":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152","id":"231bbdec-e3d8-4bb8-a205-2ffa9c522f08","progress":0,"started_at":"2025-10-08T23:04:36.959755+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/231bbdec-e3d8-4bb8-a205-2ffa9c522f08 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7971f6ef-46c9-4bdd-9fc6-da3d06d8099f + status: 202 Accepted + code: 202 + duration: 153.646486ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1863 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"702","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:36.845328+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1863" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,11 +2146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b2cdcd-2ff5-4aaf-b9fb-8f769a7694cb - status: 204 No Content - code: 204 - duration: 314.950581ms - - id: 39 + - 374e0d6f-1d64-47f0-be1e-7502f10f5272 + status: 200 OK + code: 200 + duration: 120.241381ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1959,8 +2165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -1970,7 +2176,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","type":"not_found"}' headers: Content-Length: - "143" @@ -1979,9 +2185,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,11 +2195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07a66150-8896-4e1c-8f7e-e516779dc035 + - e1c8200e-0a7c-46f7-b5be-1e40ddf8fed9 status: 404 Not Found code: 404 - duration: 92.627084ms - - id: 40 + duration: 52.364015ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2008,8 +2214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -2019,7 +2225,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' headers: Content-Length: - "143" @@ -2028,9 +2234,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,11 +2244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6270849c-5218-4ecc-93ec-8628d9e0d91a + - 55d251da-b9b0-496e-a8ae-cf2a8d00a479 status: 404 Not Found code: 404 - duration: 35.786965ms - - id: 41 + duration: 28.111777ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2057,8 +2263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: GET response: proto: HTTP/2.0 @@ -2068,7 +2274,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:37.978642Z","id":"0b10ba88-2dd5-42db-94c9-73e07aeef83b","last_detached_at":"2025-06-10T15:30:49.546407Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:49.546407Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":"2025-10-08T23:04:38.094451Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:38.094451Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2077,9 +2283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,11 +2293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8023cfa7-2d1a-45b8-8324-e45369471d70 + - 1bbde682-f112-4861-80c9-8580533b554a status: 200 OK code: 200 - duration: 284.996946ms - - id: 42 + duration: 40.559396ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2106,8 +2312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b10ba88-2dd5-42db-94c9-73e07aeef83b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 method: DELETE response: proto: HTTP/2.0 @@ -2124,9 +2330,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,11 +2340,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e42a9a-cdc4-4457-b04c-5dcdd8e673d2 + - 87ccd2e7-0633-4b4b-98b1-0e44bc05ca73 status: 204 No Content code: 204 - duration: 345.47669ms - - id: 43 + duration: 74.955336ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2153,8 +2359,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c7a45dce-5cdd-43a4-b653-9126919fd22c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 method: GET response: proto: HTTP/2.0 @@ -2164,7 +2370,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c7a45dce-5cdd-43a4-b653-9126919fd22c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","type":"not_found"}' headers: Content-Length: - "143" @@ -2173,9 +2379,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,7 +2389,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277d5e63-9f16-4f17-9727-a38d7af84067 + - 91e3d129-1707-47fc-ba91-3df322bd044d status: 404 Not Found code: 404 - duration: 200.427003ms + duration: 44.8312ms diff --git a/internal/services/instance/testdata/server-basic.cassette.yaml b/internal/services/instance/testdata/server-basic.cassette.yaml index df12659ce..ac5d127bc 100644 --- a/internal/services/instance/testdata/server-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -27,7 +27,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e463a6ff-ff65-4880-9dd1-d0d123aae3e2 + - 97f7f03a-9276-4e8e-9547-208658186e81 status: 200 OK code: 200 - duration: 110.957676ms + duration: 47.146387ms - id: 1 request: proto: HTTP/1.1 @@ -65,8 +65,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:48 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c4bc59e-d6ca-4fa8-aa92-9a53f52c5653 + - 4fd950c4-edf2-4723-96bb-3376365e8695 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 131.944856ms + duration: 50.455127ms - id: 2 request: proto: HTTP/1.1 @@ -114,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -123,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:48 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,52 +150,54 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9164d499-9ea2-491f-9051-22252b861eaa + - 3c835fb0-7520-4e6b-bf0d-d332b2bf7eff X-Total-Count: - "75" status: 200 OK code: 200 - duration: 60.236661ms + duration: 46.151124ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 278 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","basic"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2159 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:04:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,54 +205,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aea8e9c8-ea9e-4029-96af-eda99b972819 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 71.041996ms + - 5f41ec16-3db6-47fc-bed9-1f6bca808de3 + status: 201 Created + code: 201 + duration: 382.34166ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 278 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:11.971616+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - Wed, 08 Oct 2025 23:04:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d24d101a-c91d-4883-ad26-2fb3cfa00ea9 - status: 201 Created - code: 201 - duration: 592.514703ms + - 3a87f30c-4202-4a67-b21c-e08468f33dfb + status: 200 OK + code: 200 + duration: 78.799455ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:11.971616+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,48 +303,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0171f05-fb99-4e80-a7f0-557c1ddf36bf + - 894c4f9b-1d3c-43f9-b1a7-6690e7f4077d status: 200 OK code: 200 - duration: 200.542668ms + duration: 81.83584ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:11.971616+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action","href_result":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b","id":"e7e20a51-2593-4598-b1ee-49952d2e50c4","progress":0,"started_at":"2025-10-08T23:04:48.819957+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e7e20a51-2593-4598-b1ee-49952d2e50c4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,52 +356,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69abef22-cc89-4b49-a122-79395b3361b9 - status: 200 OK - code: 200 - duration: 145.108324ms + - 0f5f586b-cc74-45ab-8e52-8e20a5e9dcaf + status: 202 Accepted + code: 202 + duration: 186.920406ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2181 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fb904583-9548-4081-b41a-732205b2691c/action","href_result":"/servers/fb904583-9548-4081-b41a-732205b2691c","id":"ec3cd1e0-a7d4-43c4-bc6e-f5575179bebe","progress":0,"started_at":"2025-06-10T15:29:12.927840+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ec3cd1e0-a7d4-43c4-bc6e-f5575179bebe + - Wed, 08 Oct 2025 23:04:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6383ca93-c5f3-4ace-815e-09118b0e00d9 - status: 202 Accepted - code: 202 - duration: 290.682511ms + - 43257689-b9f4-4eee-a50b-be96b81b3c6e + status: 200 OK + code: 200 + duration: 89.165047ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2183 + content_length: 2283 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:12.703682+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2183" + - "2283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 426f8d0b-c0d0-4cc6-a16a-72dd589f51db + - 44613e8e-74ec-48b1-a36d-82cb1d87de3f status: 200 OK code: 200 - duration: 175.610539ms + duration: 92.037185ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2286 + content_length: 2283 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:12.703682+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2286" + - "2283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d56ef211-61c0-4e03-854b-4f50a8fae9a5 + - 8c29bb06-dcaa-41d1-9ed3-787eb1e1a473 status: 200 OK code: 200 - duration: 185.829965ms + duration: 92.238315ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2286 + content_length: 2283 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:12.703682+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2286" + - "2283" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:23 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2538cda-fd53-4edb-912a-0aecb481992d + - ce185977-f201-4d9d-bb47-6c431954ce80 status: 200 OK code: 200 - duration: 155.776791ms + duration: 87.004007ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2314 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccaca76f-1af4-4849-ae76-756a5b7cb9cf + - 34473e18-6ea4-4353-8b27-58cbda88dd81 status: 200 OK code: 200 - duration: 186.209405ms + duration: 96.857978ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2314 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dfa2f5e-815a-4ed8-a683-ad7f0cf2631f + - 9885a219-071c-49c1-b3dc-d09155e44e25 status: 200 OK code: 200 - duration: 191.85846ms + duration: 87.075226ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/da6a2629-9fa6-4a51-89b4-33989c4bfb53 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "504" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258c2179-1591-4f6b-a86f-c1375adb74ff + - d920c74d-7b72-4c3f-a02d-3766aa6c9393 status: 200 OK code: 200 - duration: 119.78476ms + duration: 60.206034ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86d9d151-0250-4049-9be4-a76440f7aaaf + - bed07c4b-47dc-4280-afd5-5791846ce9d7 status: 200 OK code: 200 - duration: 94.111912ms + duration: 44.998515ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce4b4e47-a47b-4175-a0f3-f5f510eae0d4 + - c16a192d-44f4-4500-956b-944da264b61f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 133.104881ms + duration: 64.162904ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2314 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db04846f-cc61-45e5-bdd8-6dafbdf3e135 + - a7de755c-aede-4337-8df7-d5c49b331874 status: 200 OK code: 200 - duration: 156.966111ms + duration: 83.334998ms - id: 17 request: proto: HTTP/1.1 @@ -869,7 +869,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a61b289-3a02-40b5-a55b-643a8c7f6f6d + - 2f89ffd1-f472-4caa-ba41-28a47467223e status: 200 OK code: 200 - duration: 63.85678ms + duration: 48.001116ms - id: 18 request: proto: HTTP/1.1 @@ -918,7 +918,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd5abc48-7811-4980-a043-b723bae80397 + - 0c7879b9-7019-4f2e-8105-87d32614cb36 status: 200 OK code: 200 - duration: 69.416296ms + duration: 109.112739ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2314 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ada9584-3626-4feb-ac34-232de4d428d9 + - 95a5d54b-b7fe-421b-9b1b-dcdadb6343ec status: 200 OK code: 200 - duration: 247.992877ms + duration: 99.909279ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/da6a2629-9fa6-4a51-89b4-33989c4bfb53 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 method: GET response: proto: HTTP/2.0 @@ -1027,7 +1027,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "504" @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6923a54e-b6f7-4bb8-81bb-791a812219fc + - 3579cf81-c78a-4a7f-a7ec-7e7a381278e2 status: 200 OK code: 200 - duration: 118.688103ms + duration: 52.256339ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data method: GET response: proto: HTTP/2.0 @@ -1085,9 +1085,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86173b41-c270-4018-af08-58fd4ef20d4b + - 2be6194d-9def-4371-953b-d08893b7842e status: 200 OK code: 200 - duration: 140.016192ms + duration: 65.170681ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics method: GET response: proto: HTTP/2.0 @@ -1134,11 +1134,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,12 +1146,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b18e21b-33b5-4438-9bc9-5aa8c20804a2 + - 94dead0a-6842-475b-b5f5-f692a8e2852b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 122.446542ms + duration: 53.976145ms - id: 23 request: proto: HTTP/1.1 @@ -1167,7 +1167,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1f8a820-8681-467f-a493-538a16e75969 + - 0b2a1c4c-dbdc-4f81-a9f6-c2d8a26fd542 status: 200 OK code: 200 - duration: 67.677145ms + duration: 46.077062ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2314 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d06c2955-4437-4963-bcf4-d129ecd64d94 + - 6f827007-f42e-43e9-972c-d54eec956cb8 status: 200 OK code: 200 - duration: 76.762845ms + duration: 85.659934ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 504 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4d2f16d-8527-4dec-9d0a-dbc018a0607d + - 791e1a4e-087c-43f8-b966-86a100fc36c0 status: 200 OK code: 200 - duration: 185.889726ms + duration: 52.931749ms - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/da6a2629-9fa6-4a51-89b4-33989c4bfb53 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data method: GET response: proto: HTTP/2.0 @@ -1323,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "504" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0baf081-1660-4792-a462-8fd52932fa9d + - b629521b-e15f-4637-9cfe-6b52b88fe128 status: 200 OK code: 200 - duration: 141.25184ms + duration: 65.845841ms - id: 27 request: proto: HTTP/1.1 @@ -1363,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:10 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1395,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 886fd1a4-252d-4f26-b0bf-61afdc5f5127 + - 692aa4ff-2bea-48fb-af10-546fe0056024 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 142.939395ms + duration: 51.473047ms - id: 28 request: proto: HTTP/1.1 @@ -1412,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1421,22 +1425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2314 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,50 +1446,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629413f9-8f6a-4f67-a275-b7d878d286d9 - X-Total-Count: - - "0" + - 9eb95218-7cee-40d9-a3cb-e274e4642efa status: 200 OK code: 200 - duration: 108.4703ms + duration: 101.111888ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 353 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action","href_result":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b","id":"d8794f7f-0248-4bb7-b8c0-dc2183d5f4ed","progress":0,"started_at":"2025-10-08T23:05:11.168045+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d8794f7f-0248-4bb7-b8c0-dc2183d5f4ed Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3ad838a-5fc7-48ce-97e0-fcaa0b29c9c9 - status: 200 OK - code: 200 - duration: 104.191766ms + - 7777b80f-e46f-4f69-92a6-83e4dc66ec46 + status: 202 Accepted + code: 202 + duration: 213.122212ms - id: 30 request: proto: HTTP/1.1 @@ -1514,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1523,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:25.366111+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:34 GMT + - Wed, 08 Oct 2025 23:05:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,52 +1548,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258587cf-8796-47c4-9bf0-3f248cbc40e0 + - 71395756-d083-437c-8e67-3637b0d63174 status: 200 OK code: 200 - duration: 170.558062ms + duration: 85.077155ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 2277 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/fb904583-9548-4081-b41a-732205b2691c/action","href_result":"/servers/fb904583-9548-4081-b41a-732205b2691c","id":"f72118a6-cfa4-418d-95dd-d4cc8f84ffd2","progress":0,"started_at":"2025-06-10T15:29:34.197332+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:34 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f72118a6-cfa4-418d-95dd-d4cc8f84ffd2 + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d015e68-c2e0-4a2e-8330-0d8963b88563 - status: 202 Accepted - code: 202 - duration: 213.170028ms + - 70710a4e-4d5d-4b7d-ad4f-06e3a6b8e4f7 + status: 200 OK + code: 200 + duration: 84.824455ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1627,7 +1627,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1636,9 +1636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:34 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea54c9a1-44f2-4331-acc1-61e825d24bd9 + - 573fe0fa-d215-467d-993d-5b8142f95e81 status: 200 OK code: 200 - duration: 215.180659ms + duration: 79.383885ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1676,7 +1676,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1685,9 +1685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:39 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aabf524b-2439-468d-bb63-e484c0d9ad11 + - e125f933-d54b-40b4-a85f-8d13d88bad22 status: 200 OK code: 200 - duration: 456.440096ms + duration: 86.20608ms - id: 34 request: proto: HTTP/1.1 @@ -1714,8 +1714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1725,7 +1725,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1734,9 +1734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adeecb8b-fa8c-4107-a556-f6e81c354e2c + - 7e8457b5-b154-46e7-91ac-653560b12e4c status: 200 OK code: 200 - duration: 203.103478ms + duration: 90.454478ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1774,7 +1774,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1783,9 +1783,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ff9b63-a61f-4fbe-9abb-f1294af3ff9f + - 8bf1f11d-152a-424a-8013-ee0f2f3609b2 status: 200 OK code: 200 - duration: 220.262989ms + duration: 87.034291ms - id: 36 request: proto: HTTP/1.1 @@ -1812,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1823,7 +1823,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1832,9 +1832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b167e694-c79b-46dc-95eb-ef4e275677aa + - aa71afd7-4ce9-4124-821b-86abfa96f872 status: 200 OK code: 200 - duration: 202.09731ms + duration: 88.539667ms - id: 37 request: proto: HTTP/1.1 @@ -1861,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1872,7 +1872,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1881,9 +1881,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:00 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb2d676c-50e0-4295-9355-001baaee4c94 + - 50d921cf-cdc7-4005-8412-5497ba8f29c0 status: 200 OK code: 200 - duration: 273.095231ms + duration: 77.954419ms - id: 38 request: proto: HTTP/1.1 @@ -1910,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1921,7 +1921,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1930,9 +1930,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30591194-e0a5-4754-bee3-9a5b3d652105 + - 2feef99e-da04-4c62-90da-7fabb3d1284a status: 200 OK code: 200 - duration: 275.128144ms + duration: 100.919363ms - id: 39 request: proto: HTTP/1.1 @@ -1959,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -1970,7 +1970,7 @@ interactions: trailer: {} content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1501","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:29:34.031618+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2277" @@ -1979,9 +1979,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04685617-0347-4899-8d1f-c8736943a6d6 + - 24de5741-0244-4725-a122-df876b5b3d4f status: 200 OK code: 200 - duration: 210.321442ms + duration: 95.463545ms - id: 40 request: proto: HTTP/1.1 @@ -2008,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:30:13.591566+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 512ccda5-3768-48ec-8830-4ddc78e991c7 + - 5dba7603-d081-4e6f-91fa-1cae071d05db status: 200 OK code: 200 - duration: 176.476328ms + duration: 96.249078ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-06-10T15:29:11.971616+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"fb904583-9548-4081-b41a-732205b2691c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0f","maintenances":[],"modification_date":"2025-06-10T15:30:13.591566+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:29:11.971616+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"fb904583-9548-4081-b41a-732205b2691c","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7914a058-bf6b-428c-9c82-056c51b74f8f + - 076e95d7-fcc1-42f3-8782-9cdad8eaed14 status: 200 OK code: 200 - duration: 246.452894ms + duration: 90.504306ms - id: 42 request: proto: HTTP/1.1 @@ -2106,27 +2106,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2277 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2808efb-9525-4866-b4be-7c3ca6d7c20b - status: 204 No Content - code: 204 - duration: 291.630911ms + - 3a044611-06f7-4f3f-8aa3-cb8f8e15279b + status: 200 OK + code: 200 + duration: 100.849084ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fb904583-9548-4081-b41a-732205b2691c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2162,20 +2164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2277 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fb904583-9548-4081-b41a-732205b2691c","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa90bf95-ec7b-485a-bec2-a49edccf062c - status: 404 Not Found - code: 404 - duration: 157.574158ms + - 08a9613d-fafb-4948-b43e-2cb87db2941c + status: 200 OK + code: 200 + duration: 77.991077ms - id: 44 request: proto: HTTP/1.1 @@ -2202,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/da6a2629-9fa6-4a51-89b4-33989c4bfb53 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2211,20 +2213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 2277 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:11.971616+00:00","export_uri":null,"id":"da6a2629-9fa6-4a51-89b4-33989c4bfb53","modification_date":"2025-06-10T15:30:16.773822+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:06:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e5b5ee6-001b-4e19-8fe2-baeed0bbf52d + - 5697606e-6cd4-4bb9-8110-9d0d0c30ed8c status: 200 OK code: 200 - duration: 107.673394ms + duration: 97.581328ms - id: 45 request: proto: HTTP/1.1 @@ -2251,27 +2253,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/da6a2629-9fa6-4a51-89b4-33989c4bfb53 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2277 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:06:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2279,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1308572-090f-44f8-b1b8-9070a9b69db4 - status: 204 No Content - code: 204 - duration: 221.552665ms + - e5aaee78-cb20-4d86-b8b7-4364b9c6bddb + status: 200 OK + code: 200 + duration: 93.397317ms - id: 46 request: proto: HTTP/1.1 @@ -2298,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2307,22 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 2277 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "39208" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,12 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e60f1e9-8011-4b73-a240-046a5af5ce28 - X-Total-Count: - - "75" + - ce4da7b5-c4ed-4202-bfae-d02120d5ae3b status: 200 OK code: 200 - duration: 83.573295ms + duration: 99.649675ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2360,22 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2277 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:06:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,54 +2381,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c338367-c076-44d7-8dec-c61d1c8e3f74 - X-Total-Count: - - "75" + - 4a34d789-0939-40d9-a5db-acfd27f82b77 status: 200 OK code: 200 - duration: 86.385449ms + duration: 86.137588ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 278 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.031596+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - Wed, 08 Oct 2025 23:06:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3ed4fb0-d387-4683-9f49-8ada5cd8b861 - status: 201 Created - code: 201 - duration: 791.972894ms + - 10e23b75-8ff4-436e-a6b4-6ec7b6cb9941 + status: 200 OK + code: 200 + duration: 92.558829ms - id: 49 request: proto: HTTP/1.1 @@ -2457,8 +2449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2466,20 +2458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 2277 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.031596+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2161" + - "2277" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:06:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2487,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd583b24-7d5f-40e1-b054-7d45af9999a9 + - 8feb497a-ad12-4f52-b185-61b330aadc34 status: 200 OK code: 200 - duration: 201.29336ms + duration: 78.565511ms - id: 50 request: proto: HTTP/1.1 @@ -2506,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b method: GET response: proto: HTTP/2.0 @@ -2515,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2161 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.031596+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"626ef87e-36f4-4e71-acf9-146145ec150b","type":"not_found"}' headers: Content-Length: - - "2161" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,52 +2528,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9538d35-57b4-4655-851c-94b7a0b0d409 - status: 200 OK - code: 200 - duration: 179.789562ms + - e142e435-513e-4644-95a5-4c060c0ab0a5 + status: 404 Not Found + code: 404 + duration: 49.809145ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 143 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/action","href_result":"/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7","id":"a15f7d26-45bb-4ae8-981e-f4d8e00db9e3","progress":0,"started_at":"2025-06-10T15:30:19.205342+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0c814d9a-66cb-4148-9244-005a5fb74355","type":"not_found"}' headers: Content-Length: - - "357" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a15f7d26-45bb-4ae8-981e-f4d8e00db9e3 + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2589,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce56ad94-2321-44c0-93ab-c4db279cb6a1 - status: 202 Accepted - code: 202 - duration: 366.033377ms + - 946444a5-1471-4fd4-accb-5d027ece621b + status: 404 Not Found + code: 404 + duration: 44.188896ms - id: 52 request: proto: HTTP/1.1 @@ -2608,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 method: GET response: proto: HTTP/2.0 @@ -2617,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2183 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.932367+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"0c814d9a-66cb-4148-9244-005a5fb74355","type":"not_found"}' headers: Content-Length: - - "2183" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2638,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f61cbff3-2d26-4629-b13e-de8b6e11bc6b - status: 200 OK - code: 200 - duration: 155.882485ms + - f9a1cd1f-148c-4f62-8e8f-7173278a0895 + status: 404 Not Found + code: 404 + duration: 16.759327ms - id: 53 request: proto: HTTP/1.1 @@ -2657,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2666,20 +2654,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2285 + content_length: 39208 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.932367+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2285" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:06:53 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2687,10 +2677,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f755f84c-f173-4fab-ae10-175d186caaaf + - 5f32b962-dc02-46b2-8519-c7e205b01889 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 587.866056ms + duration: 59.406909ms - id: 54 request: proto: HTTP/1.1 @@ -2706,8 +2698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -2715,20 +2707,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2285 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:18.932367+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2285" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:53 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2736,48 +2730,54 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11758696-b9cc-49b9-9eb6-045d99a38508 + - 3252c1e8-2bd7-4186-ab06-732afd79c7cb + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 192.121448ms + duration: 170.593422ms - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 278 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","basic"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET - response: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:33.143501+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:06:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,10 +2785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5285be15-1199-4aeb-b5cd-a5075fa70bb2 - status: 200 OK - code: 200 - duration: 342.888839ms + - 7578f1d4-c3a9-4441-9658-e643e22868c8 + status: 201 Created + code: 201 + duration: 505.286068ms - id: 56 request: proto: HTTP/1.1 @@ -2804,8 +2804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -2813,20 +2813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:33.143501+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,10 +2834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da816b50-e83a-4610-afd2-ebfdee5c1e10 + - df07574d-20bb-4ad3-9ff8-0c3ba41606a1 status: 200 OK code: 200 - duration: 369.421018ms + duration: 90.116272ms - id: 57 request: proto: HTTP/1.1 @@ -2853,8 +2853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b657dac-9400-4094-be5d-ae4516d91c87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -2862,20 +2862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 2159 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "504" + - "2159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2883,48 +2883,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 895b3263-bb92-4ede-9fba-47bfc09c4cb4 + - 99dab371-9e11-4ce8-b377-b6a4f9fa15e7 status: 200 OK code: 200 - duration: 99.720737ms + duration: 90.975693ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/user_data - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 357 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action","href_result":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84","id":"5b5969ea-74c1-48cc-9851-ea32caa6dd71","progress":0,"started_at":"2025-10-08T23:06:54.246731+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:06:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5b5969ea-74c1-48cc-9851-ea32caa6dd71 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2932,10 +2936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c245e234-baf1-47ce-a966-db77448edc13 - status: 200 OK - code: 200 - duration: 187.304273ms + - ed6078ce-00b2-4645-a833-c71cc7602fd5 + status: 202 Accepted + code: 202 + duration: 200.18892ms - id: 59 request: proto: HTTP/1.1 @@ -2951,8 +2955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -2960,22 +2964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2181 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2983,12 +2985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0836bd93-d9ed-40cb-94e5-4e705296cce0 - X-Total-Count: - - "0" + - 087adebd-5b79-45f2-8c5f-f61745c8b209 status: 200 OK code: 200 - duration: 119.335093ms + duration: 104.369026ms - id: 60 request: proto: HTTP/1.1 @@ -3004,8 +3004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3013,20 +3013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:33.143501+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:06:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4771024b-fd11-4337-9fa3-2f78fb6e7bcd + - b65411a0-fb4b-444d-83a8-9b9ff31fe558 status: 200 OK code: 200 - duration: 201.62468ms + duration: 89.019628ms - id: 61 request: proto: HTTP/1.1 @@ -3053,8 +3053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3062,20 +3062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2284 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:07:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,10 +3083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b672e53d-9d34-4cfb-b771-d7a2d25952c3 + - 6a5c527f-03ab-4242-8942-58afde3130a4 status: 200 OK code: 200 - duration: 100.666482ms + duration: 97.230223ms - id: 62 request: proto: HTTP/1.1 @@ -3102,8 +3102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3111,20 +3111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2315 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,10 +3132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3659918-13d1-4034-bdce-b52ebce93a41 + - 6ebbeaae-61ca-46c9-90c3-119080e540be status: 200 OK code: 200 - duration: 106.044958ms + duration: 95.790525ms - id: 63 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3160,20 +3160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:33.143501+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,10 +3181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2347a12-ef77-4183-9dfe-6bce181d54dc + - c1b88cd8-a5aa-40bb-8ada-ca6bf2ae8921 status: 200 OK code: 200 - duration: 176.088218ms + duration: 87.656852ms - id: 64 request: proto: HTTP/1.1 @@ -3200,8 +3200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b657dac-9400-4094-be5d-ae4516d91c87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 method: GET response: proto: HTTP/2.0 @@ -3211,7 +3211,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "504" @@ -3220,9 +3220,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,10 +3230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96284db7-cf3b-4aad-b695-dce15a14686c + - 49fd7fc5-4941-4619-a8bf-420ca8626aeb status: 200 OK code: 200 - duration: 152.903497ms + duration: 63.25443ms - id: 65 request: proto: HTTP/1.1 @@ -3249,8 +3249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/user_data method: GET response: proto: HTTP/2.0 @@ -3269,9 +3269,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3279,10 +3279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5191b28-9648-42e8-ab5e-dc046c068584 + - ba7f30d5-e1b5-4649-a599-6603f4cc7fdb status: 200 OK code: 200 - duration: 168.687219ms + duration: 52.079617ms - id: 66 request: proto: HTTP/1.1 @@ -3298,8 +3298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/private_nics method: GET response: proto: HTTP/2.0 @@ -3318,11 +3318,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:07:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3330,12 +3330,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98242b05-34a5-4638-a543-6809f097715e + - ae946b3d-78ce-4c52-b7d8-ff0554f21a76 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.440066ms + duration: 52.337313ms - id: 67 request: proto: HTTP/1.1 @@ -3351,8 +3351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3360,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2315 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,10 +3381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 301efd33-dfad-4ba2-b969-3bd78171430b + - 4bcb33f5-4028-4f1d-b283-346b1bdad3be status: 200 OK code: 200 - duration: 111.26087ms + duration: 104.612601ms - id: 68 request: proto: HTTP/1.1 @@ -3400,8 +3400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3409,20 +3409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:33.143501+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2316" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,52 +3430,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb801439-af43-4e3f-9b70-c58f19fe4c63 + - be60f72a-9023-4799-991e-b54629925712 status: 200 OK code: 200 - duration: 638.635365ms + duration: 54.537839ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 423 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7/action","href_result":"/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7","id":"1219d606-1c6a-45a0-b680-477eecd776a4","progress":0,"started_at":"2025-06-10T15:30:40.039642+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "352" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1219d606-1c6a-45a0-b680-477eecd776a4 + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3483,10 +3479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e03b9606-8397-431e-b143-62e6be12d62d - status: 202 Accepted - code: 202 - duration: 227.214351ms + - 34dc6c87-12b0-487c-91f2-52ddb96308f6 + status: 200 OK + code: 200 + duration: 57.610759ms - id: 70 request: proto: HTTP/1.1 @@ -3502,8 +3498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3511,20 +3507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3532,10 +3528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8a44665-2e2e-44df-9862-ae2d82d760a4 + - dc9997e0-3d3c-4b69-bfe7-c74bfaa7d1b4 status: 200 OK code: 200 - duration: 181.135353ms + duration: 98.757949ms - id: 71 request: proto: HTTP/1.1 @@ -3551,8 +3547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 method: GET response: proto: HTTP/2.0 @@ -3560,20 +3556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 504 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:45 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,10 +3577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e7b52c4-f5da-4755-b273-43951bb9a3f5 + - 0240f11c-318b-4d9c-a8f4-f6eb5c5a2fe2 status: 200 OK code: 200 - duration: 190.278781ms + duration: 53.558054ms - id: 72 request: proto: HTTP/1.1 @@ -3600,8 +3596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/user_data method: GET response: proto: HTTP/2.0 @@ -3609,20 +3605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2276" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:50 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3630,10 +3626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ffa566e-cc75-4578-b3c2-ab15a8a0e8f6 + - 14659071-1d6c-4c8a-9918-82da43b9d807 status: 200 OK code: 200 - duration: 176.492906ms + duration: 53.477866ms - id: 73 request: proto: HTTP/1.1 @@ -3649,8 +3645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/private_nics method: GET response: proto: HTTP/2.0 @@ -3658,20 +3654,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2276" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:07:10 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3679,10 +3677,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2766c59d-09cf-44fd-9e8e-ba6f2b8656a3 + - 54bef558-16b2-4bf8-a38e-ade76b5dfac4 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 195.813961ms + duration: 59.962144ms - id: 74 request: proto: HTTP/1.1 @@ -3698,8 +3698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3707,20 +3707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:07:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,48 +3728,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f42e120b-faa8-4da6-b5b8-bf4fc09defbc + - b827c4d1-eadc-4c3b-b784-17522840e469 status: 200 OK code: 200 - duration: 153.054399ms + duration: 101.547324ms - id: 75 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action","href_result":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84","id":"bf57ef17-7d2d-4741-955b-bb4acad24421","progress":0,"started_at":"2025-10-08T23:07:11.278721+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:07:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bf57ef17-7d2d-4741-955b-bb4acad24421 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3777,10 +3781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7afee033-553d-4206-b248-22023fc3e9da - status: 200 OK - code: 200 - duration: 147.252157ms + - d469169b-aea2-46eb-a4c6-5ffebfce88da + status: 202 Accepted + code: 202 + duration: 168.867695ms - id: 76 request: proto: HTTP/1.1 @@ -3796,8 +3800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3805,20 +3809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2278 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:11.156924+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Wed, 08 Oct 2025 23:07:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3826,10 +3830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2b8c9d3-2353-41a1-aee3-8735c9c8fd08 + - a579826d-a53c-4ea0-acdc-0f042efa843c status: 200 OK code: 200 - duration: 211.09086ms + duration: 86.523732ms - id: 77 request: proto: HTTP/1.1 @@ -3845,8 +3849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -3854,20 +3858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bfa6fd35-14b0-42d0-b369-70e175370f84","type":"not_found"}' headers: Content-Length: - - "2276" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:07:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3875,10 +3879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a35ddf85-6b74-4d03-be18-035dcbe97969 - status: 200 OK - code: 200 - duration: 233.231693ms + - 932b3feb-1ff6-4155-a45b-fd53e6863e02 + status: 404 Not Found + code: 404 + duration: 56.682448ms - id: 78 request: proto: HTTP/1.1 @@ -3894,251 +3898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2276 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c99478bd-4c80-473e-848a-1985a2ce946f - status: 200 OK - code: 200 - duration: 216.781101ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2276 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"401","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:30:39.873390+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2276" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b8624eeb-8939-4818-b672-6a9dc90caddf - status: 200 OK - code: 200 - duration: 170.846044ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2161 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:31:28.377800+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 647bfff7-699a-4305-be84-67f8859c78c6 - status: 200 OK - code: 200 - duration: 219.068991ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2161 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:18.031596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:51","maintenances":[],"modification_date":"2025-06-10T15:31:28.377800+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:30:18.031596+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2161" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e7a9e2c-f1b4-4321-a38d-d98ea6e5fc4d - status: 200 OK - code: 200 - duration: 176.00549ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 730c7348-67bf-4b6a-89ed-63085b42a8d6 - status: 204 No Content - code: 204 - duration: 323.497414ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 method: GET response: proto: HTTP/2.0 @@ -4148,7 +3909,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","type":"not_found"}' headers: Content-Length: - "143" @@ -4157,9 +3918,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Wed, 08 Oct 2025 23:07:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4167,11 +3928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b105fbe-144a-4b43-9d6c-87e7437dbaf6 + - a2d1100d-90f1-49b3-b4c6-5a358cc924c4 status: 404 Not Found code: 404 - duration: 225.285989ms - - id: 84 + duration: 34.92174ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4186,8 +3947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b657dac-9400-4094-be5d-ae4516d91c87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 method: GET response: proto: HTTP/2.0 @@ -4195,20 +3956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 127 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:18.031596+00:00","export_uri":null,"id":"0b657dac-9400-4094-be5d-ae4516d91c87","modification_date":"2025-06-10T15:31:32.458292+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","type":"not_found"}' headers: Content-Length: - - "446" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:07:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4216,58 +3977,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fecfa9e7-4847-4598-90c3-ae9942d27cf5 - status: 200 OK - code: 200 - duration: 100.977613ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b657dac-9400-4094-be5d-ae4516d91c87 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:33 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d0c9e1a9-5176-466c-9b49-1488a9d5283d - status: 204 No Content - code: 204 - duration: 171.668866ms - - id: 86 + - cebd74e3-023a-4dc1-8d31-8b0faf4208c1 + status: 404 Not Found + code: 404 + duration: 34.557004ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4282,8 +3996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7c83565e-d2bf-4148-8e4c-de4dcf469ee7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 method: GET response: proto: HTTP/2.0 @@ -4293,7 +4007,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7c83565e-d2bf-4148-8e4c-de4dcf469ee7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bfa6fd35-14b0-42d0-b369-70e175370f84","type":"not_found"}' headers: Content-Length: - "143" @@ -4302,9 +4016,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:07:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4312,7 +4026,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e471ea4-7b4c-40ca-a050-244b33f95e5f + - 5ec5ce14-7e3f-4440-9f56-680cef20a098 status: 404 Not Found code: 404 - duration: 177.572698ms + duration: 60.049123ms diff --git a/internal/services/instance/testdata/server-basic2.cassette.yaml b/internal/services/instance/testdata/server-basic2.cassette.yaml index d0fc887d7..b67423972 100644 --- a/internal/services/instance/testdata/server-basic2.cassette.yaml +++ b/internal/services/instance/testdata/server-basic2.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -27,7 +27,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:48 GMT + - Wed, 08 Oct 2025 23:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dbfcb04-c6f5-4944-8e78-374bafab83cb + - 60c4b0e7-b35b-4eeb-a49c-61700b1d2b47 status: 200 OK code: 200 - duration: 433.254864ms + duration: 104.517187ms - id: 1 request: proto: HTTP/1.1 @@ -65,8 +65,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Wed, 08 Oct 2025 23:04:27 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 941aa79f-a95d-47b3-bc5e-9124ecdfb056 + - 54b5ccb9-ef50-4068-a9e9-0f358c4091c5 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 126.60325ms + duration: 49.92517ms - id: 2 request: proto: HTTP/1.1 @@ -114,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -123,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,52 +150,54 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd3cc892-63a5-4d40-bbba-4eb09bd4382b + - 5454daca-533d-4085-b588-bc80888e8fe8 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 541.348971ms + duration: 79.544001ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-trusting-golick","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2160 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:04:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,54 +205,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ff95940-151b-4ac2-a001-0fe1ebdc5019 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 53.285805ms + - 96e54d6e-480e-4985-9981-4d550917887a + status: 201 Created + code: 201 + duration: 409.264496ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 236 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-adoring-franklin","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5f7ceca-42b8-40c5-8d8d-21daa0e35555 - status: 201 Created - code: 201 - duration: 993.04552ms + - 61876112-5b4f-488c-b226-f1529524e8b7 + status: 200 OK + code: 200 + duration: 104.228853ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73f8bf02-3ce5-476f-bef2-14e10b647a02 + - 97368c0b-41bd-484d-b90d-0bb5e9e96cef status: 200 OK code: 200 - duration: 302.668734ms + duration: 89.767271ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ed3b42c-d248-41dc-b29e-3c7501d4a76b + - e6969dc4-562a-40f0-9f0a-7fe9dbb03395 status: 200 OK code: 200 - duration: 177.409495ms + duration: 92.167037ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 method: GET response: proto: HTTP/2.0 @@ -380,20 +380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d439415a-cb34-47ef-8e32-d3906a1d7a10 + - 48fe8db7-472f-40b6-a8f9-b6be899c28b7 status: 200 OK code: 200 - duration: 206.563802ms + duration: 54.092039ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a22dd983-e7fe-468f-b127-bbd7b7b03b81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data method: GET response: proto: HTTP/2.0 @@ -429,20 +429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 746a35f8-e223-4c91-9182-95496132e9a3 + - 254c771e-9943-427a-b72b-231b19f95a1b status: 200 OK code: 200 - duration: 147.292872ms + duration: 64.665609ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics method: GET response: proto: HTTP/2.0 @@ -478,20 +478,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:28 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +501,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218d21f0-0549-471d-9b48-ec5363dcda7b + - 537e5922-2097-419f-803a-eb7c6612d9f9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 170.807894ms + duration: 63.940204ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -527,22 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f250d96-6473-4bb1-a158-b2636a840e7a - X-Total-Count: - - "0" + - 768b1cf9-1f4f-481b-9581-8d7ff53a962a status: 200 OK code: 200 - duration: 117.27753ms + duration: 48.995939ms - id: 11 request: proto: HTTP/1.1 @@ -571,7 +571,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 914b0874-1beb-4aab-acad-34af98287c43 + - 3849a106-3a63-4b86-b382-aed932211e98 status: 200 OK code: 200 - duration: 175.622643ms + duration: 56.95293ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2160 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dc0259f-892f-4f59-9cfa-f4bb25b3b1e4 + - 1f960c85-85d9-4e00-ac58-84f43894e837 status: 200 OK code: 200 - duration: 110.350337ms + duration: 80.446302ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0977c4a-e17f-46c3-9410-4570fa736244 + - 652ec8ea-65d2-42d7-8c07-411438eb95a0 status: 200 OK code: 200 - duration: 186.185554ms + duration: 55.908405ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a22dd983-e7fe-468f-b127-bbd7b7b03b81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data method: GET response: proto: HTTP/2.0 @@ -727,20 +727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf5f4e2-b00f-4735-827c-be9eb4b1648f + - 4745bd0d-c4a4-4768-a4f9-7e4639d98978 status: 200 OK code: 200 - duration: 175.217524ms + duration: 45.91992ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics method: GET response: proto: HTTP/2.0 @@ -776,20 +776,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 08 Oct 2025 23:04:28 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 512bb9f6-0d42-495b-8754-9485da6d3d38 + - 18ce672c-2714-491c-9592-f53a1c50c9e7 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 147.678104ms + duration: 50.25977ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -825,22 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f33e43b3-2f3e-4b96-9033-d89c92c17ddb - X-Total-Count: - - "0" + - d384a988-93b1-436e-9d74-f1e7925f8eca status: 200 OK code: 200 - duration: 108.025007ms + duration: 44.167023ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2160 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e784c0-a64d-43b4-8d9a-ef908cb0d652 + - 4c3275f4-686f-4201-8f85-bb8c8b8dfa47 status: 200 OK code: 200 - duration: 79.731804ms + duration: 84.337371ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 522 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f15ada7e-b97d-4202-99b1-d6c935584628 + - 7e28a529-f23b-42e8-8b53-881db0d3df1a status: 200 OK code: 200 - duration: 93.148346ms + duration: 68.302195ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2165" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88fe1c59-4613-4d32-b916-6f33e2f5ba3a + - 8bdca4f4-05c0-4fa0-936d-dd3c00fda532 status: 200 OK code: 200 - duration: 236.313727ms + duration: 50.188388ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a22dd983-e7fe-468f-b127-bbd7b7b03b81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a01d35b2-50ee-4bda-8849-e353e81c1a3f + - 516f1304-fdbe-4515-962d-ac7d1afcb25e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 116.697732ms + duration: 59.596978ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1074,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2160 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,11 +1099,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ce0f2ce-43e2-48cd-9b4e-0294d2cb7ff6 + - e04ae77a-2cbb-4591-9970-a6bd81d0d261 status: 200 OK code: 200 - duration: 236.658915ms + duration: 85.917228ms - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action","href_result":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4","id":"3744b88a-f180-43f9-ad47-7fd1c0731404","progress":0,"started_at":"2025-10-08T23:04:29.596564+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:29 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3744b88a-f180-43f9-ad47-7fd1c0731404 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9b443e9-5584-46d5-a65d-7fdc00a1bc46 + status: 202 Accepted + code: 202 + duration: 184.422115ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1114,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1123,22 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2182 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,13 +1201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd455d97-7cc0-4f18-95a3-b49763f74a93 - X-Total-Count: - - "0" + - 658f8aa3-dcab-4acc-b950-71b48224fa4b status: 200 OK code: 200 - duration: 103.477397ms - - id: 23 + duration: 76.251692ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1167,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1176,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2286 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,11 +1250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3444e1b2-d5c1-4e43-a6a8-7b2974065e88 + - 5b32ed83-cb4c-4b60-a80e-73f194a14da1 status: 200 OK code: 200 - duration: 172.220292ms - - id: 24 + duration: 95.897135ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1225,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2286 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.599224+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-franklin","id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e7","maintenances":[],"modification_date":"2025-06-10T15:28:51.599224+00:00","name":"tf-srv-adoring-franklin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:51.599224+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","name":"tf-srv-adoring-franklin"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2286" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,11 +1299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e71faa78-2bf9-4e56-9a5b-ee0087cda687 + - dc7e641b-a849-4cda-ba58-4890578b6548 status: 200 OK code: 200 - duration: 176.401514ms - - id: 25 + duration: 102.598576ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1265,27 +1318,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 2286 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2286" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d83c3cea-7884-443c-a337-60fe36d16c52 + status: 200 OK + code: 200 + duration: 98.922514ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2317 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:45.163860+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2317" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ccc93576-dc3e-4a27-8291-f75fb6fa8fda + status: 200 OK + code: 200 + duration: 84.31464ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action","href_result":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4","id":"5a1363e3-ff0d-48e9-ae77-c72770f3e85b","progress":0,"started_at":"2025-10-08T23:04:50.252412+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a1363e3-ff0d-48e9-ae77-c72770f3e85b + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75ec8c59-880b-4a2e-942e-3c77152cc44b + status: 202 Accepted + code: 202 + duration: 191.750442ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2280 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:50.108810+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,11 +1499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dc94a26-75ec-4d62-abfb-8ed721fb1f61 - status: 204 No Content - code: 204 - duration: 232.587088ms - - id: 26 + - 151e85f9-2a1f-4798-8c03-f99b2a5038eb + status: 200 OK + code: 200 + duration: 93.017693ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1312,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1323,7 +1529,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3793679d-9a0a-4585-92e9-549744f9d6d4","type":"not_found"}' headers: Content-Length: - "143" @@ -1332,9 +1538,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,11 +1548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09079dc3-0f1a-48f1-8db0-cecf1f2f96d8 + - caccef9e-b6ed-49ed-8a95-6dab49d00ef6 status: 404 Not Found code: 404 - duration: 96.201582ms - - id: 27 + duration: 50.917913ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1361,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a22dd983-e7fe-468f-b127-bbd7b7b03b81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 method: GET response: proto: HTTP/2.0 @@ -1370,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:28:51.599224+00:00","export_uri":null,"id":"a22dd983-e7fe-468f-b127-bbd7b7b03b81","modification_date":"2025-06-10T15:28:59.164907+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe04477c-c3cf-4e96-9707-5b4d13def260","type":"not_found"}' headers: Content-Length: - - "446" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,11 +1597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bff847ea-7003-4b12-8c68-73e6bc0a9f4a - status: 200 OK - code: 200 - duration: 153.91966ms - - id: 28 + - f2d21bfb-8d6e-4520-a609-37142a5bd1bc + status: 404 Not Found + code: 404 + duration: 23.820686ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1410,27 +1616,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a22dd983-e7fe-468f-b127-bbd7b7b03b81 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 127 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"volume","resource_id":"fe04477c-c3cf-4e96-9707-5b4d13def260","type":"not_found"}' headers: + Content-Length: + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1438,11 +1646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecabe504-6d89-4060-92c0-84a9b3554b00 - status: 204 No Content - code: 204 - duration: 279.748377ms - - id: 29 + - 4d52857a-0389-4489-9e28-d1b8c41521b0 + status: 404 Not Found + code: 404 + duration: 19.927315ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1457,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3d7835ff-8f3e-4276-adfa-8205fbc109c6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 method: GET response: proto: HTTP/2.0 @@ -1468,7 +1676,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3d7835ff-8f3e-4276-adfa-8205fbc109c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3793679d-9a0a-4585-92e9-549744f9d6d4","type":"not_found"}' headers: Content-Length: - "143" @@ -1477,9 +1685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1487,7 +1695,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6df4cc4d-4964-42fc-bb70-df8e20d4bfd2 + - 9d434293-6f3f-46c8-8740-1ac4ea7666c3 status: 404 Not Found code: 404 - duration: 107.0674ms + duration: 43.846654ms diff --git a/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml b/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml index 001ba89fb..c48cf810a 100644 --- a/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae2a5e8-09f7-4dea-8192-aaa4ac4268cd + - b3c900c7-2f0c-40b0-bb34-9e82cb5a664e X-Total-Count: - "75" status: 200 OK code: 200 - duration: 166.137333ms + duration: 43.256889ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae3592ac-3f5a-4e82-8795-a7e44ba200de + - ad02ebc9-8e5f-40a1-8c32-4e2e279f9c04 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 54.400833ms + duration: 41.748985ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ae9b943-b3d4-455c-9c2f-3033c95d22dc + - 47808bac-c424-48a7-9500-bf532f8b49db status: 200 OK code: 200 - duration: 64.378667ms + duration: 37.369672ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume-iops-update","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-tests-instance-block-external-root-volume-iops-update","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1794 + content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:30.629164+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1794" + - "1816" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adebd2e0-f991-427f-ade5-55e8e1cd59b6 + - e6f9dab6-cc60-4586-bc1d-55426e920469 status: 201 Created code: 201 - duration: 732.4355ms + duration: 806.27977ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1794 + content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:30.629164+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1794" + - "1816" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e187dd05-1664-4c3d-9d10-87acceb6d67e + - bd61506a-3a65-476b-b318-a75dcfc8c738 status: 200 OK code: 200 - duration: 104.464125ms + duration: 96.628343ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1794 + content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:30.629164+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1794" + - "1816" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc36395f-93ab-4ef6-b606-c8c0441a71ee + - c1a1f017-2277-4135-9f3a-1d8caf8d43ff status: 200 OK code: 200 - duration: 142.609583ms + duration: 80.341863ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: PATCH response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa76d5d0-9e7f-4880-b16d-311d1a3781a8 + - 742099eb-f7fe-4959-b101-3add3717767f status: 200 OK code: 200 - duration: 90.140333ms + duration: 102.900221ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1794 + content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:30.629164+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1794" + - "1816" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1aa063-3c73-4f5f-ab76-1f7a9fc0e0d2 + - 94d4d508-8b40-47de-9fe2-5023b464b068 status: 200 OK code: 200 - duration: 129.701833ms + duration: 80.336994ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1e533aa-872e-4991-b988-f0beea5d9ee4 + - 0df3a65d-6d2d-4efd-9141-a27ff3d60a70 status: 200 OK code: 200 - duration: 54.353667ms + duration: 55.017112ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/action","href_result":"/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5","id":"27e88767-a8ca-4f3d-b793-afde4a4620dd","progress":0,"started_at":"2025-09-08T07:12:31.900875+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action","href_result":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5","id":"8260a02d-b192-426d-8318-625a27ce8bcc","progress":0,"started_at":"2025-10-08T23:05:10.391852+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/27e88767-a8ca-4f3d-b793-afde4a4620dd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8260a02d-b192-426d-8318-625a27ce8bcc Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a749a82-2002-404c-93f4-218191a256dc + - e35f2f20-fb9e-4cc7-b6da-95b49f5c130a status: 202 Accepted code: 202 - duration: 200.4805ms + duration: 194.74935ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -533,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1816 + content_length: 1838 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:31.749848+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:10.237327+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1816" + - "1838" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:32 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8352d9a3-3efb-42a0-8184-45aefadebe92 + - d80007be-a5ca-4f73-af1b-fe7d881e761b status: 200 OK code: 200 - duration: 137.012375ms + duration: 115.651601ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fcb254b-8173-4096-8607-08c5b28e3483 + - f4ffa6fc-65ad-4ab0-b767-fe7913bf9e97 status: 200 OK code: 200 - duration: 124.336791ms + duration: 105.715924ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bf14cf5-881a-47a4-a48e-032afeae0ea5 + - 1a0fa1e8-f121-4f22-8a69-34c99acdba48 status: 200 OK code: 200 - duration: 145.400667ms + duration: 122.819345ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b13906-379b-4490-9bd8-bdcacf758120 + - 3907b6bc-dbf2-4333-b0f7-e911ba9c7939 status: 404 Not Found code: 404 - duration: 31.72825ms + duration: 28.71985ms - id: 14 request: proto: HTTP/1.1 @@ -720,8 +720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -729,20 +729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a85528-e545-4f4d-a570-572d7d27649d + - e0a0cd0c-1ced-4e8b-8e4d-c73947fae699 status: 200 OK code: 200 - duration: 43.412292ms + duration: 40.335416ms - id: 15 request: proto: HTTP/1.1 @@ -769,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 405ae37f-8dc5-4d90-9388-ba0eb036e9f4 + - 4b47ef08-9fe6-4fab-93c3-7a7e56bd0c54 status: 200 OK code: 200 - duration: 61.327417ms + duration: 57.066277ms - id: 16 request: proto: HTTP/1.1 @@ -818,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,12 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87a36150-b693-48d1-8e40-2ab30dd43de2 + - e734053a-4ec0-49db-b865-d8177f48f419 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.885ms + duration: 60.029456ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e5b89e8-6a3b-46b7-8ad2-1b0a3d142989 + - d19ba65f-7577-4ad9-b22e-212a48161361 status: 200 OK code: 200 - duration: 142.9135ms + duration: 108.183684ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 148f3ee7-4445-4931-9a84-ed2b8cadb3d3 + - dcb0a365-2a1b-4db6-bb2c-ab5ffd809f37 status: 404 Not Found code: 404 - duration: 34.8865ms + duration: 31.866467ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -978,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d682490e-dfb6-47cd-9995-abe1bd297612 + - f94daad8-0621-470b-b7f1-00027e20d17b status: 200 OK code: 200 - duration: 56.315125ms + duration: 44.119976ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data method: GET response: proto: HTTP/2.0 @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e26ae7bc-2068-4d88-8668-4c8447ee4b3b + - a479468e-5f4c-4e46-963b-d89b8d1a71f5 status: 200 OK code: 200 - duration: 76.421625ms + duration: 56.850718ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics method: GET response: proto: HTTP/2.0 @@ -1087,11 +1087,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,12 +1099,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85643c47-acad-4b0d-9a62-d0d3f43ac3f4 + - ebeb3ed0-0af7-4576-ad7f-d173ab4e3b3d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.01425ms + duration: 52.097202ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1129,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2c31205-f64b-4e3f-be3c-78dec4527b40 + - 63dda565-d422-49ae-b238-9c86abfd6299 status: 200 OK code: 200 - duration: 132.304458ms + duration: 89.228974ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d38ff07-ad19-4504-90ce-a21813fb91e1 + - 10424817-4ed8-45f3-9574-3e58dee560ad status: 404 Not Found code: 404 - duration: 36.756833ms + duration: 28.765303ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1227,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f66107a2-60c1-4d1f-ab7b-0641fe65e199 + - 01bc7b8c-bf0c-4697-93f1-4ae168f4011a status: 200 OK code: 200 - duration: 40.157208ms + duration: 41.146378ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data method: GET response: proto: HTTP/2.0 @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cce8675a-ea50-48b3-be62-3e53b46eb5b1 + - 4a37062c-43a9-4604-b5ad-fbdea6a603ec status: 200 OK code: 200 - duration: 66.432458ms + duration: 56.407126ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics method: GET response: proto: HTTP/2.0 @@ -1336,11 +1336,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,12 +1348,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6db678c7-d7f3-4e7c-9020-e509d40b5248 + - e57da581-60d9-41a3-b64a-453c41f47ad1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.184208ms + duration: 59.979543ms - id: 27 request: proto: HTTP/1.1 @@ -1369,8 +1369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1378,20 +1378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:38 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,29 +1399,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 445b54b6-6310-4d07-9268-71afffcc8064 + - b41aa027-2d9b-4c6a-a10c-c05e3d49911c status: 200 OK code: 200 - duration: 125.357292ms + duration: 100.68292ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 111 + content_length: 110 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"cec0f035-b3e7-41af-b164-a397b7bde188","boot":false,"name":"tf-vol-hopeful-archimedes"}}}' + body: '{"volumes":{"0":{"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","boot":false,"name":"tf-vol-practical-mestorf"}}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: PATCH response: proto: HTTP/2.0 @@ -1429,20 +1429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a91dbf6-57ce-4252-a7af-f82ca5fa682c + - 375e9a59-6970-4a30-b91f-97a0d1b5375f status: 200 OK code: 200 - duration: 159.391083ms + duration: 164.86157ms - id: 29 request: proto: HTTP/1.1 @@ -1469,8 +1469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c969d80-3f50-4fe7-b376-3ce96000c2c8 + - e4b7f3fd-6f74-44bd-865d-464f3f810b69 status: 200 OK code: 200 - duration: 157.030333ms + duration: 103.384424ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1527,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a7c1847-7f4c-430b-a832-faa25bedfd29 + - ed881c21-0503-4223-b5bd-8adb7a3eebe7 status: 200 OK code: 200 - duration: 148.630708ms + duration: 104.469544ms - id: 31 request: proto: HTTP/1.1 @@ -1569,8 +1569,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: PATCH response: proto: HTTP/2.0 @@ -1578,20 +1578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.749277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee50a479-ee33-4a11-bbca-258e91af74d0 + - f66616cf-f7d1-42bd-8e61-4ad227477209 status: 200 OK code: 200 - duration: 115.269625ms + duration: 133.845819ms - id: 32 request: proto: HTTP/1.1 @@ -1618,8 +1618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1627,20 +1627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adf958ad-895e-4e7a-bb1a-87f73c4ae505 + - 7dea1777-80a7-4c98-9430-7550091ac042 status: 200 OK code: 200 - duration: 146.988333ms + duration: 91.525006ms - id: 33 request: proto: HTTP/1.1 @@ -1667,8 +1667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1678,7 +1678,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fda3889-d8ee-4acf-8476-2763da64d5fb + - 1f6cd964-5c27-4f1a-9cfb-f63c4e121ac8 status: 404 Not Found code: 404 - duration: 31.102958ms + duration: 28.976234ms - id: 34 request: proto: HTTP/1.1 @@ -1716,8 +1716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1725,20 +1725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:39.468864Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:17.652697Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4b3bb64-54e0-4dc7-a3ae-bf607b45cdba + - dc274a79-e81c-4f19-9dc0-ea088d3d37f7 status: 200 OK code: 200 - duration: 49.372375ms + duration: 50.482691ms - id: 35 request: proto: HTTP/1.1 @@ -1765,8 +1765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data method: GET response: proto: HTTP/2.0 @@ -1785,9 +1785,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d63e3bc0-f9bd-428d-a8f3-d4615148787c + - d175d1b5-d62c-4679-a9c2-68a40940ad57 status: 200 OK code: 200 - duration: 59.209833ms + duration: 65.294689ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics method: GET response: proto: HTTP/2.0 @@ -1834,11 +1834,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:39 GMT + - Wed, 08 Oct 2025 23:05:17 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1846,12 +1846,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55984769-2bbc-4eff-adf6-4e629504d2fd + - 2dee970a-05cc-4629-9b5d-ab63f6c06304 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.50975ms + duration: 57.172894ms - id: 37 request: proto: HTTP/1.1 @@ -1867,8 +1867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -1876,20 +1876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1897,10 +1897,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1b5e87f-6926-41c4-b8bc-edea6190d2c0 + - f7fa9564-a8c8-4e1a-ba24-f64dfebf6607 status: 200 OK code: 200 - duration: 129.0315ms + duration: 106.606071ms - id: 38 request: proto: HTTP/1.1 @@ -1916,8 +1916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1927,7 +1927,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -1936,9 +1936,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,10 +1946,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fadaac9d-9884-406a-ba33-c070b68f310c + - 820fc9f3-c14e-45f6-b5cb-fe64431b6c3b status: 404 Not Found code: 404 - duration: 39.894709ms + duration: 26.143947ms - id: 39 request: proto: HTTP/1.1 @@ -1965,8 +1965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -1974,20 +1974,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:39.468864Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:17.652697Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,10 +1995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c9abcba-98dd-4e9f-b3bd-9068c0f3de72 + - ad7184ce-eb61-487a-bf99-d3526caad20d status: 200 OK code: 200 - duration: 45.8785ms + duration: 46.687631ms - id: 40 request: proto: HTTP/1.1 @@ -2014,8 +2014,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data method: GET response: proto: HTTP/2.0 @@ -2034,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,10 +2044,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d05942ac-f0e9-47f5-9350-6a12f10b8fe9 + - 1f58467d-ebb9-4e7c-b813-31810953086b status: 200 OK code: 200 - duration: 58.112917ms + duration: 66.247222ms - id: 41 request: proto: HTTP/1.1 @@ -2063,8 +2063,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics method: GET response: proto: HTTP/2.0 @@ -2083,11 +2083,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2095,12 +2095,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa00be7e-e55e-4763-b12e-266de420117d + - 9f9eef0f-f842-4fdc-aa65-59f78b0aaa11 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.309125ms + duration: 61.515668ms - id: 42 request: proto: HTTP/1.1 @@ -2116,8 +2116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -2125,20 +2125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1972 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:33.701816+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1972" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,78 +2146,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f22d59b-8a82-4fb7-825e-29a1e5e484fc + - 09a2c916-65ee-44ea-a322-0722a050d312 status: 200 OK code: 200 - duration: 138.94325ms + duration: 87.923474ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 688 - uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.749277Z","id":"58b63ffd-48ef-43f8-81c3-abaa6e00b384","product_resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:39.468864Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "688" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:12:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f00456a9-c7ee-44df-bead-59abe4bb7bc6 - status: 200 OK - code: 200 - duration: 51.349708ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action method: POST response: proto: HTTP/2.0 @@ -2225,22 +2176,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5/action","href_result":"/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5","id":"47a1179d-988e-4fda-b00c-645d202ab279","progress":0,"started_at":"2025-09-08T07:12:40.898773+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action","href_result":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5","id":"ad7ceaa4-c7ef-4909-98b2-cf93dc39fd32","progress":0,"started_at":"2025-10-08T23:05:18.981551+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:40 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/47a1179d-988e-4fda-b00c-645d202ab279 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ad7ceaa4-c7ef-4909-98b2-cf93dc39fd32 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,403 +2199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3428ea41-a977-4262-84b2-1016f8f3e389 + - 063e7fe4-2e2b-4e0f-8f77-725d8417f098 status: 202 Accepted code: 202 - duration: 170.267917ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:12:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1d165ad5-fbc0-49b1-b1e7-8dbb8051aa74 - status: 200 OK - code: 200 - duration: 145.995792ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:12:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e1d51ec3-6eb7-487d-b05d-6be29b5c2259 - status: 200 OK - code: 200 - duration: 130.797792ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:12:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21639611-9de0-4a0a-994e-5362169612d4 - status: 200 OK - code: 200 - duration: 131.853916ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:12:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2178f00a-5eaf-424d-a276-3fb329b0f683 - status: 200 OK - code: 200 - duration: 148.81975ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:13:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b397cbbf-47eb-4c59-a4ce-60d7269b8cf7 - status: 200 OK - code: 200 - duration: 134.276291ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:13:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a78fd465-ba4a-4f09-b15b-4ac498d11321 - status: 200 OK - code: 200 - duration: 112.961208ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1909 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:12:40.778982+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1909" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:13:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f776985e-b180-4b10-bab5-e7030db14df5 - status: 200 OK - code: 200 - duration: 254.791834ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1794 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:13:13.822751+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1794" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:13:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a5ce826-b7f9-4ea5-a533-5e6f75d86b45 - status: 200 OK - code: 200 - duration: 108.739208ms - - id: 53 + duration: 171.055964ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2659,8 +2218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -2668,20 +2227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1794 + content_length: 1935 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.629164+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bd","maintenances":[],"modification_date":"2025-09-08T07:13:13.822751+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cec0f035-b3e7-41af-b164-a397b7bde188","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:18.849414+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1794" + - "1935" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2689,58 +2248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f627a509-d3de-4d27-963b-75738d21dcfe + - 89d8c7b0-cecc-4729-8848-395cf22cfe1f status: 200 OK code: 200 - duration: 109.771916ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:13:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ae7612a-c643-4851-a66c-49c8803f4449 - status: 204 No Content - code: 204 - duration: 343.028125ms - - id: 55 + duration: 104.550043ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2755,8 +2267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -2766,7 +2278,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","type":"not_found"}' headers: Content-Length: - "143" @@ -2775,9 +2287,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,11 +2297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be7f314-a2d9-4153-931a-db3b325f3ee3 + - 27c5fdc6-7345-4d1c-86bd-055ab8311059 status: 404 Not Found code: 404 - duration: 94.402833ms - - id: 56 + duration: 42.378128ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2804,8 +2316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -2815,7 +2327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cec0f035-b3e7-41af-b164-a397b7bde188","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' headers: Content-Length: - "143" @@ -2824,9 +2336,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,11 +2346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 555e7e0b-f8a6-4605-bfbe-d4206016d5bc + - 08d903a7-5317-406f-bfa8-dbdf94d5d375 status: 404 Not Found code: 404 - duration: 32.152209ms - - id: 57 + duration: 34.078584ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2853,8 +2365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: GET response: proto: HTTP/2.0 @@ -2862,20 +2374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 486 + content_length: 500 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.749277Z","id":"cec0f035-b3e7-41af-b164-a397b7bde188","last_detached_at":"2025-09-08T07:13:17.614913Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:13:17.614913Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":"2025-10-08T23:05:20.479635Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:20.479635Z","zone":"fr-par-1"}' headers: Content-Length: - - "486" + - "500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2883,11 +2395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aea0782-8d73-40a5-828d-f91af3597e3a + - 2aae71d6-d1e0-46c0-9811-5804d7248ca0 status: 200 OK code: 200 - duration: 65.619625ms - - id: 58 + duration: 36.981612ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2902,8 +2414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cec0f035-b3e7-41af-b164-a397b7bde188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee method: DELETE response: proto: HTTP/2.0 @@ -2920,9 +2432,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2930,11 +2442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ebfd77-7dcf-4bd5-8f19-b24bdf7385ea + - c73a45fa-9dc8-4a55-b59b-2c29e034cad4 status: 204 No Content code: 204 - duration: 83.42075ms - - id: 59 + duration: 98.693372ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2949,8 +2461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/df473b33-5ed5-4d0b-90c4-93d9e74130c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 method: GET response: proto: HTTP/2.0 @@ -2960,7 +2472,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"df473b33-5ed5-4d0b-90c4-93d9e74130c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","type":"not_found"}' headers: Content-Length: - "143" @@ -2969,9 +2481,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2979,7 +2491,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2510501a-bc8d-4cca-8c37-efaac2cea597 + - 93e677cb-d636-4f75-bfc2-3a47e6148e03 status: 404 Not Found code: 404 - duration: 82.153584ms + duration: 55.383588ms diff --git a/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml b/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml index 279da51b6..70caa5983 100644 --- a/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0093cd0-044e-4135-bfb3-73e8f95794cd + - 5fd791bf-eec6-4c32-882a-de8fe3f055cd X-Total-Count: - "75" status: 200 OK code: 200 - duration: 151.983125ms + duration: 47.829469ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b49e1d23-a1a4-4907-a729-d97e408f692c + - 3d7eb5b3-b179-48d2-b4ce-ba2ec914ec98 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 35.484375ms + duration: 57.730199ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c84df68-8ab4-4164-a901-b54e5fbe31f8 + - 6d9e0798-f7f0-485f-8190-334a70a2300e status: 200 OK code: 200 - duration: 126.287666ms + duration: 43.015521ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-tests-instance-block-external-root-volume","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:30.702140+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1770" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 059ff7ec-8a26-4672-9f2a-0d9ab0e74de8 + - 5d375dc4-ac8f-4533-bd30-ab4f60448bb0 status: 201 Created code: 201 - duration: 583.111542ms + duration: 617.138979ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:30.702140+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1770" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28a55e41-48a1-4ffb-9991-4f2a7251350e + - 614ce865-87d0-4e6b-bd1b-730098c8301d status: 200 OK code: 200 - duration: 112.83725ms + duration: 94.184425ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:30.702140+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1770" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 561d7f44-00fc-4e62-8b6e-1415f11eb7e4 + - 55ddc047-1c62-434b-b4c6-5665f7ffa3d3 status: 200 OK code: 200 - duration: 129.763417ms + duration: 122.497652ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: PATCH response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 193 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.804833Z","zone":"fr-par-1"}' + body: '{"details":[{"argument_name":"perf_iops","help_message":"can''t update perf_iops when volume is not available","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' headers: Content-Length: - - "688" + - "193" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f192116-55bc-43b1-a9b7-27f0752fa5bf - status: 200 OK - code: 200 - duration: 111.227792ms + - 8736ad14-c70a-46d6-96a2-218a457cabfb + status: 400 Bad Request + code: 400 + duration: 98.922552ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:30.702140+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1770" + - "1792" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36454240-3838-46fb-90c5-54abea74d362 + - 72605ec5-0d62-4486-ba10-37ccc5341a0c status: 200 OK code: 200 - duration: 118.942958ms + duration: 93.291101ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:12:30.804833Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:31 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed7086d1-1e4c-49b4-b956-f26c84fd8294 + - 5fea63c6-d267-45c0-a34e-1ae66d5d1965 status: 200 OK code: 200 - duration: 46.791458ms + duration: 41.510403ms - id: 9 request: proto: HTTP/1.1 @@ -471,8 +471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -480,20 +480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:36 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,52 +501,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 243ec6b1-8aa7-4c72-986e-6242b8f3954c + - 313ece0b-0186-4646-b978-ba55749f0f96 status: 200 OK code: 200 - duration: 51.1255ms + duration: 51.425258ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 706 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/action","href_result":"/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c","id":"aff7e6e5-6585-4dd1-b7bd-df1111ee3949","progress":0,"started_at":"2025-09-08T07:12:36.848805+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:36 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aff7e6e5-6585-4dd1-b7bd-df1111ee3949 + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f3b6703-a5a7-4152-98ca-e7302acbb896 - status: 202 Accepted - code: 202 - duration: 219.527167ms + - 1da4567b-43b5-464f-9485-638984b95ada + status: 200 OK + code: 200 + duration: 45.697307ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -582,20 +578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1792 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:36.690031+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1792" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:37 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d8ce0b6-3f8a-41e8-b12b-e0becedad7a5 + - a9889608-42de-47d8-8766-00ea68bdcdce status: 200 OK code: 200 - duration: 143.549792ms + duration: 40.995777ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -631,20 +627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 435e4345-b82e-4f52-8488-24066e2103ac + - 67d026b0-e811-4e88-93c9-06ec590fa7c7 status: 200 OK code: 200 - duration: 111.188542ms + duration: 40.78182ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -680,20 +676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52296811-317f-4aa1-b800-b7be97f85918 + - 0b277aed-990e-4116-9967-db50eb895dcd status: 200 OK code: 200 - duration: 146.438667ms + duration: 40.06928ms - id: 14 request: proto: HTTP/1.1 @@ -720,8 +716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -729,20 +725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:05:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5239a88c-bd5f-4152-83fe-e16fb23e01eb - status: 404 Not Found - code: 404 - duration: 31.683125ms + - 06694e25-3d44-4a5a-98bb-79a30d786ab0 + status: 200 OK + code: 200 + duration: 47.395589ms - id: 15 request: proto: HTTP/1.1 @@ -769,8 +765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -778,20 +774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fdd624d-10df-46e3-887b-9d0fbf471956 + - 18b2afb3-95a0-4db8-b34f-1e21eb8fed3c status: 200 OK code: 200 - duration: 41.991708ms + duration: 41.185876ms - id: 16 request: proto: HTTP/1.1 @@ -818,8 +814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -827,20 +823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 706 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,10 +844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47ba009c-3417-4775-91b0-4090ed2f11ef + - aa66bbf8-fcfb-44c4-8868-7c39ebaef3b3 status: 200 OK code: 200 - duration: 65.54ms + duration: 45.842781ms - id: 17 request: proto: HTTP/1.1 @@ -867,8 +863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -876,22 +872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 706 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,12 +893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304c0765-5cb4-4476-9f1a-3a6e51589e20 - X-Total-Count: - - "0" + - 1ba3b8a9-6f82-4f4c-91ca-b9e2ba0785d0 status: 200 OK code: 200 - duration: 57.945959ms + duration: 41.055041ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -929,20 +921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:06:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c250440b-d425-4c1e-9b0a-0056c2746fa6 + - cce918ed-6805-4c9f-92da-2413c1d4c089 status: 200 OK code: 200 - duration: 156.334542ms + duration: 45.67633ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -978,20 +970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23367c1d-f249-41ad-a264-32421ba59dab - status: 404 Not Found - code: 404 - duration: 35.967583ms + - 26772819-8fd4-4e07-a978-b1abfce08159 + status: 200 OK + code: 200 + duration: 44.653314ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1027,20 +1019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:42 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4a48b1-6d38-4e1b-ad20-a2b3096dea66 + - 214d51a8-39b9-4738-a5b1-a4e55542447b status: 200 OK code: 200 - duration: 42.169292ms + duration: 40.453695ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1076,20 +1068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 706 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87fa0346-d8af-463a-a96d-0ffe695dcd8b + - 2d3467da-5207-413d-be77-dbd6cca1f2ad status: 200 OK code: 200 - duration: 75.752625ms + duration: 46.743183ms - id: 22 request: proto: HTTP/1.1 @@ -1116,8 +1108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1125,22 +1117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 706 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,12 +1138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 533a5ab1-750f-4dfd-99d2-2afa69f8b034 - X-Total-Count: - - "0" + - eb42c366-6b26-48cb-bd9b-38af65d1b61d status: 200 OK code: 200 - duration: 61.553125ms + duration: 43.557321ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1178,20 +1166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c45401c0-9a87-4b21-8e4b-a0564eb0df4c + - ac768596-44ae-4290-840a-f74e327d00e1 status: 200 OK code: 200 - duration: 111.0195ms + duration: 43.065741ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1227,20 +1215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3082830a-cd8d-46d0-a56d-8ec0907acb43 - status: 404 Not Found - code: 404 - duration: 31.714708ms + - 71b3a9c8-ada7-4d2d-bfed-af6352d1bc7e + status: 200 OK + code: 200 + duration: 63.790132ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0aa0f2c-9ee9-45bd-ba13-f8a8ebb492d5 + - 61a9a482-5894-45c2-a68c-bfcdf448d8f2 status: 200 OK code: 200 - duration: 43.345333ms + duration: 43.364963ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1304,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1325,20 +1313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 706 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f277298-0209-4393-9552-d01aacdfce7b + - 40c0a88b-376d-436c-bb44-a0540c3fe49b status: 200 OK code: 200 - duration: 58.014458ms + duration: 49.792085ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1374,22 +1362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 706 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,12 +1383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d6d45a7-04a7-4910-b6f8-32c21bd7b220 - X-Total-Count: - - "0" + - d87186af-a4d1-4f22-a8e4-02fdc5fa9733 status: 200 OK code: 200 - duration: 54.742875ms + duration: 43.952269ms - id: 28 request: proto: HTTP/1.1 @@ -1418,8 +1402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1427,20 +1411,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,10 +1432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2688eebb-fcd4-4521-928b-c1512401e6bd + - 6ee7f558-b9c0-47ee-bb50-679ac4df1407 status: 200 OK code: 200 - duration: 115.818292ms + duration: 39.712877ms - id: 29 request: proto: HTTP/1.1 @@ -1467,8 +1451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1476,20 +1460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:43 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,10 +1481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d22977c2-b2b0-452a-a9d9-cdade5edac58 + - 83ba06c1-f7d3-4cd7-985b-02d84f22336a status: 200 OK code: 200 - duration: 130.158916ms + duration: 39.906274ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1509,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b06b7a3d-076a-427e-8659-358f0c7ad7ee + - fd380d20-f80a-4ce0-8c78-77f55a542d26 status: 200 OK code: 200 - duration: 136.641417ms + duration: 44.74264ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1558,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1579,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38a7e190-727e-4c79-aed4-3ad8ade74be1 - status: 404 Not Found - code: 404 - duration: 36.67775ms + - 19e86fe2-b9d5-4f20-9274-6dbc0979360a + status: 200 OK + code: 200 + duration: 41.358683ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1623,20 +1607,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,50 +1628,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fd7020b-c76d-4740-a784-cf423ef4bbd3 + - 1f352306-73c3-45ee-aa0c-3c6b9f4c01f4 status: 200 OK code: 200 - duration: 46.906958ms + duration: 38.921258ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"size":60000000000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"updating","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:31.444275Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,50 +1677,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e929beb4-45dd-4b6b-a591-05a5503a6e99 + - 661b4461-5600-4d12-bd89-2cb9b23d6c30 status: 200 OK code: 200 - duration: 82.685583ms + duration: 45.401839ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 105 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","boot":false,"name":"tf-vol-strange-cerf"}}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2de12d6-c05d-4a34-b1ed-98765aeee1b6 + - 2a11bc3f-4b06-4e40-b3cb-0fa25b438e64 status: 200 OK code: 200 - duration: 198.489541ms + duration: 57.718496ms - id: 35 request: proto: HTTP/1.1 @@ -1765,8 +1745,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1774,20 +1754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1866" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f52dce63-06e5-445e-96a1-2b16e08817e0 + - ca665aea-43ec-4db6-8e29-c8584bba7b81 status: 200 OK code: 200 - duration: 127.384333ms + duration: 44.378271ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1794,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1823,20 +1803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1866" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e84be193-e3c1-4a41-b7f8-dbbf508443ab + - 45136d7e-68f3-419c-9a31-5d2e2006b3dc status: 200 OK code: 200 - duration: 123.103083ms + duration: 54.19544ms - id: 37 request: proto: HTTP/1.1 @@ -1863,8 +1843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1872,20 +1852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,10 +1873,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 241b93b9-44e1-4a98-b82e-d9f30cb599bb - status: 404 Not Found - code: 404 - duration: 46.394792ms + - df9b463b-4e28-455b-92b9-577dd111d7f7 + status: 200 OK + code: 200 + duration: 53.045681ms - id: 38 request: proto: HTTP/1.1 @@ -1912,8 +1892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1921,20 +1901,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:44.210608Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,10 +1922,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8d8749d-3671-44b9-a14f-086f61fc22ef + - 371f074b-7d88-4900-9365-4632b99ed5e4 status: 200 OK code: 200 - duration: 59.0565ms + duration: 49.778229ms - id: 39 request: proto: HTTP/1.1 @@ -1961,8 +1941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -1970,20 +1950,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 706 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT + - Wed, 08 Oct 2025 23:07:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1971,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00d227ef-5d87-4130-a4bf-bfd9ec9d57bb + - 9cf58159-5804-4411-ad56-5e4f4da285d9 status: 200 OK code: 200 - duration: 58.005708ms + duration: 41.791618ms - id: 40 request: proto: HTTP/1.1 @@ -2010,8 +1990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2019,22 +1999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 706 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:44 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2042,12 +2020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e132cd1a-f87e-40d9-8aa5-266491f944f3 - X-Total-Count: - - "0" + - 4badc793-8df0-407c-86b4-2e68940ff017 status: 200 OK code: 200 - duration: 65.135792ms + duration: 53.891524ms - id: 41 request: proto: HTTP/1.1 @@ -2063,8 +2039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2072,20 +2048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:07:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2093,10 +2069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0217a2b-c88a-449a-bee5-b640cc1f7b87 + - 88744d7f-1663-4817-969e-828f434800bd status: 200 OK code: 200 - duration: 157.816375ms + duration: 49.025963ms - id: 42 request: proto: HTTP/1.1 @@ -2112,8 +2088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2121,20 +2097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:08:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2142,10 +2118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8f38815-0c28-481c-98e0-ade8c24c1863 - status: 404 Not Found - code: 404 - duration: 32.60575ms + - 8bf35a47-8084-4a30-aac3-70422b986c5a + status: 200 OK + code: 200 + duration: 47.96651ms - id: 43 request: proto: HTTP/1.1 @@ -2161,8 +2137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2170,20 +2146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:44.210608Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:08:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2191,10 +2167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85d1c562-d0c1-42b1-9a4a-dd8d0b074c37 + - 166fccac-fdde-4648-9a7d-6b1c92df1d33 status: 200 OK code: 200 - duration: 42.962ms + duration: 42.210892ms - id: 44 request: proto: HTTP/1.1 @@ -2210,8 +2186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2219,20 +2195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 706 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:08:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2240,10 +2216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ca137eb-75be-46c6-b024-75f33829f037 + - 66e18831-903d-4039-ae83-abb27bb2af9e status: 200 OK code: 200 - duration: 60.439542ms + duration: 38.174608ms - id: 45 request: proto: HTTP/1.1 @@ -2259,8 +2235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2268,22 +2244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 706 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:08:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2291,12 +2265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5644a1da-1a4e-4994-8b5a-1031f58a68c0 - X-Total-Count: - - "0" + - fc0f3d3a-20dc-48f6-9800-08ccd1aaded9 status: 200 OK code: 200 - duration: 56.0355ms + duration: 59.408024ms - id: 46 request: proto: HTTP/1.1 @@ -2312,8 +2284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2321,20 +2293,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:39.494465+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:08:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2342,10 +2314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c516bf-f8ca-4d9a-8975-52cf388f1e7c + - 8ade93f0-7854-43d5-9b0c-a759f1bb9793 status: 200 OK code: 200 - duration: 128.854583ms + duration: 40.492568ms - id: 47 request: proto: HTTP/1.1 @@ -2361,8 +2333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2370,20 +2342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:44.210608Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:45 GMT + - Wed, 08 Oct 2025 23:08:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,52 +2363,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f55c0a6d-5a7a-4f00-aade-ca90ae4bc766 + - d424645d-2c52-4185-a3b1-ac10a982b89a status: 200 OK code: 200 - duration: 51.061125ms + duration: 42.953294ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 706 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c/action","href_result":"/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c","id":"5a59cc28-c2db-484f-8a41-28f2d6307fdf","progress":0,"started_at":"2025-09-08T07:12:46.256251+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "352" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a59cc28-c2db-484f-8a41-28f2d6307fdf + - Wed, 08 Oct 2025 23:08:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2444,10 +2412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ad9355c-3f82-44b0-86a6-aed2bf2f58bc - status: 202 Accepted - code: 202 - duration: 418.558417ms + - 3afd56a0-2673-4022-8350-36319c554689 + status: 200 OK + code: 200 + duration: 45.77564ms - id: 49 request: proto: HTTP/1.1 @@ -2463,8 +2431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2472,20 +2440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:46 GMT + - Wed, 08 Oct 2025 23:08:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,10 +2461,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16103642-2ead-4ec2-8fa5-a1a8a51eeb36 + - 8cc4712a-b9f1-46a0-956b-3906d652c454 status: 200 OK code: 200 - duration: 136.219916ms + duration: 47.810266ms - id: 50 request: proto: HTTP/1.1 @@ -2512,8 +2480,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2521,20 +2489,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:51 GMT + - Wed, 08 Oct 2025 23:08:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,10 +2510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a177fce-a2fb-428e-a23d-cab064ac100e + - 1e4ffab6-2e5a-4815-bf01-10a921c5fc85 status: 200 OK code: 200 - duration: 116.41775ms + duration: 60.991071ms - id: 51 request: proto: HTTP/1.1 @@ -2561,8 +2529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2570,20 +2538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:12:56 GMT + - Wed, 08 Oct 2025 23:08:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2591,10 +2559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79059953-f266-4233-a6e9-a0bea2c10d1d + - 0a490f52-8cb1-40dc-98d8-b4325baa496f status: 200 OK code: 200 - duration: 162.969916ms + duration: 45.375146ms - id: 52 request: proto: HTTP/1.1 @@ -2610,8 +2578,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2619,20 +2587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:01 GMT + - Wed, 08 Oct 2025 23:08:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2640,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0053eaaa-9b0a-4d77-9a5f-910fdd017e0a + - 85028804-eb75-49a2-9e37-e84fef4c4a67 status: 200 OK code: 200 - duration: 222.255875ms + duration: 46.684369ms - id: 53 request: proto: HTTP/1.1 @@ -2659,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2668,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:07 GMT + - Wed, 08 Oct 2025 23:08:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2689,10 +2657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa2f2dfd-a1ca-4524-abc5-1a5564435032 + - b0593550-1685-4a0c-8865-7d3b3e968bbd status: 200 OK code: 200 - duration: 149.599417ms + duration: 67.926879ms - id: 54 request: proto: HTTP/1.1 @@ -2708,8 +2676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2717,20 +2685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:12 GMT + - Wed, 08 Oct 2025 23:09:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2738,10 +2706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18c57d26-5b80-4a21-b980-09d0ce48959d + - 3869f00b-9dc4-436c-b11e-fca09356a984 status: 200 OK code: 200 - duration: 119.594417ms + duration: 119.510488ms - id: 55 request: proto: HTTP/1.1 @@ -2757,8 +2725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2766,20 +2734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1886 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"179","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:12:45.885574+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1886" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:17 GMT + - Wed, 08 Oct 2025 23:09:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2787,10 +2755,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12117a2a-63f3-49d8-8eb9-7968d7117e11 + - 44739928-ab48-470e-ba19-65d1b13ee5f2 status: 200 OK code: 200 - duration: 115.585375ms + duration: 43.093789ms - id: 56 request: proto: HTTP/1.1 @@ -2806,8 +2774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2815,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:13:19.594036+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1770" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:22 GMT + - Wed, 08 Oct 2025 23:09:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2836,10 +2804,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb2c8a16-7f0e-4fa9-af59-51bb76422d88 + - 23f4587d-8938-408e-824f-ae74f3a5a371 status: 200 OK code: 200 - duration: 131.932167ms + duration: 39.878496ms - id: 57 request: proto: HTTP/1.1 @@ -2855,8 +2823,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2864,20 +2832,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-08T07:12:30.702140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:25:bf","maintenances":[],"modification_date":"2025-09-08T07:13:19.594036+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "1770" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:22 GMT + - Wed, 08 Oct 2025 23:09:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,10 +2853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d795ba1-3e68-46fa-b0dc-8f9a4d566816 + - 8a00f614-8e2f-458c-9305-3437e6056b1a status: 200 OK code: 200 - duration: 244.709042ms + duration: 49.01001ms - id: 58 request: proto: HTTP/1.1 @@ -2904,27 +2872,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 706 uncompressed: false - body: "" + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: + Content-Length: + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2932,10 +2902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba997854-f58c-4dc8-a0ab-c8e0aceb790f - status: 204 No Content - code: 204 - duration: 367.582667ms + - b497fe79-815c-4993-8c5f-0ddb1e8d2ea2 + status: 200 OK + code: 200 + duration: 42.532909ms - id: 59 request: proto: HTTP/1.1 @@ -2951,8 +2921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -2960,20 +2930,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2981,10 +2951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9428961d-b52b-48af-9856-ed606dc34265 - status: 404 Not Found - code: 404 - duration: 81.927292ms + - bdf675f8-3fe8-438c-9f41-edce5228997d + status: 200 OK + code: 200 + duration: 36.623327ms - id: 60 request: proto: HTTP/1.1 @@ -3000,8 +2970,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -3009,20 +2979,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3030,10 +3000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7a0ec78-0bc1-44d6-8ab3-c681cf69a7b8 - status: 404 Not Found - code: 404 - duration: 36.139208ms + - 17281985-71bf-467d-aed4-0a7a549b8a3b + status: 200 OK + code: 200 + duration: 45.562237ms - id: 61 request: proto: HTTP/1.1 @@ -3049,8 +3019,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -3058,20 +3028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 688 + content_length: 706 uncompressed: false - body: '{"created_at":"2025-09-08T07:12:30.804833Z","id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:12:30.804833Z","id":"c5faf78a-5ffb-40fe-8edc-aa81a6239bee","product_resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-09-08T07:12:44.210608Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "688" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3079,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3292b1b1-da5c-417e-8643-9470170ec841 + - 2ce3aad9-4287-4444-a58a-d58972b5f995 status: 200 OK code: 200 - duration: 46.666792ms + duration: 41.879216ms - id: 62 request: proto: HTTP/1.1 @@ -3098,27 +3068,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 706 uncompressed: false - body: "" + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: + Content-Length: + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3126,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b44e0295-fcab-4155-9c92-9580a1509fb2 - status: 204 No Content - code: 204 - duration: 78.433041ms + - dc405ec2-3a9c-44f3-910f-7dc26a435f61 + status: 200 OK + code: 200 + duration: 44.149129ms - id: 63 request: proto: HTTP/1.1 @@ -3145,8 +3117,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/39a8c73f-05ac-4825-967e-6c46c1f46a3c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -3154,20 +3126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"39a8c73f-05ac-4825-967e-6c46c1f46a3c","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3175,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b2e9747-e5fc-4b63-808c-8683089fedda - status: 404 Not Found - code: 404 - duration: 68.236125ms + - 76d9a066-73bb-471f-a432-38ffd5f351e5 + status: 200 OK + code: 200 + duration: 39.131168ms - id: 64 request: proto: HTTP/1.1 @@ -3194,8 +3166,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -3203,20 +3175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:09:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3224,10 +3196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f707f8b1-8853-498c-b8f5-5f57e217c4fb - status: 404 Not Found - code: 404 - duration: 31.701875ms + - 7d65cdf9-e037-4deb-919d-712a3c013137 + status: 200 OK + code: 200 + duration: 53.636582ms - id: 65 request: proto: HTTP/1.1 @@ -3243,8 +3215,204 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/53f7aa28-f29e-4665-9d08-e2bc2a7a0965 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:09:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 748d59b5-bc52-4402-afa7-a9a89258284f + status: 200 OK + code: 200 + duration: 42.351113ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dd1df6a2-52bb-42ad-879e-44dbe150b957 + status: 200 OK + code: 200 + duration: 42.133286ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f56377b-a09a-46ea-b912-e5172ef9f265 + status: 200 OK + code: 200 + duration: 51.726753ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1792 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1792" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0ecde44-4f0b-4dab-8f25-eb46dafb6015 + status: 200 OK + code: 200 + duration: 103.246052ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 method: GET response: proto: HTTP/2.0 @@ -3252,20 +3420,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 706 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"53f7aa28-f29e-4665-9d08-e2bc2a7a0965","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' headers: Content-Length: - - "127" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:13:23 GMT + - Wed, 08 Oct 2025 23:10:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3273,7 +3441,2898 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef3e540f-f420-4ab6-a3ef-f534497af99a - status: 404 Not Found - code: 404 - duration: 43.809167ms + - c228f3d5-21f1-49b6-b636-2a9f6667e548 + status: 200 OK + code: 200 + duration: 42.968912ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84d25bd0-5ddc-48a7-8153-2c5f6939c347 + status: 200 OK + code: 200 + duration: 52.311899ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 497dcac7-a27e-4c75-9d69-41a847e1e081 + status: 200 OK + code: 200 + duration: 47.904854ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4bb12b1c-21aa-4523-8712-14907a466995 + status: 200 OK + code: 200 + duration: 39.165392ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caed5a3d-4615-473c-b665-7bec3b2adeb5 + status: 200 OK + code: 200 + duration: 43.98823ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de16616f-067d-4571-8f50-2a0fc9211277 + status: 200 OK + code: 200 + duration: 51.740306ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c312180-6120-4da2-bff1-280ad9d8ea1c + status: 200 OK + code: 200 + duration: 48.062777ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2511043-77d2-4a2d-bdbc-432f9068e72f + status: 200 OK + code: 200 + duration: 57.073379ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21157ab7-b35d-4175-94ae-f00a147b421a + status: 200 OK + code: 200 + duration: 45.801826ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:10:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abb55431-cdf8-455a-ab2f-3aee059e4d4e + status: 200 OK + code: 200 + duration: 51.413236ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ce8732d-c4a8-4f54-8ef4-ae58e272ea61 + status: 200 OK + code: 200 + duration: 47.664753ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d6076d9-f564-4f5b-a376-019747a1744f + status: 200 OK + code: 200 + duration: 47.705159ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2cca300-6f5a-4d3c-ac74-cd395b70c925 + status: 200 OK + code: 200 + duration: 36.985303ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cd8aa97-54b3-4359-a1a6-ddee925a534d + status: 200 OK + code: 200 + duration: 50.798443ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c5985ca-303e-41d8-9add-1dcdc69c0c1a + status: 200 OK + code: 200 + duration: 41.71291ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4bd9662-c312-4f80-b229-c144101e26b1 + status: 200 OK + code: 200 + duration: 48.120822ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 846ae85c-c84f-4caa-bb30-733714660cb8 + status: 200 OK + code: 200 + duration: 41.307759ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0c713a6-8884-4c34-92c0-4ba61a700084 + status: 200 OK + code: 200 + duration: 45.448625ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63321e90-3d00-455d-9915-bddb666c9dce + status: 200 OK + code: 200 + duration: 47.346236ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52d5d073-0c00-405a-a90e-9773078be950 + status: 200 OK + code: 200 + duration: 47.469524ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c198c409-085c-404e-8ac6-cc977761c808 + status: 200 OK + code: 200 + duration: 46.093032ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:11:55 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39dd5f13-f2d1-4d8a-99e1-e56bc989bd56 + status: 200 OK + code: 200 + duration: 47.548846ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e51fb634-06c8-44bd-9808-846dbad3c6a7 + status: 200 OK + code: 200 + duration: 45.054183ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 183d3f13-33e8-41fc-908e-f58c0e956151 + status: 200 OK + code: 200 + duration: 54.783855ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5525b3f0-8134-4cf8-9b76-b4159bef4070 + status: 200 OK + code: 200 + duration: 40.557245ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05b2d1f8-d9b8-47f2-93a2-14d3ad2a2594 + status: 200 OK + code: 200 + duration: 44.316853ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2540fed4-0121-41ec-b21e-b093e8348283 + status: 200 OK + code: 200 + duration: 41.039068ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2107093-64a6-4644-9cfe-ce55a72f21e4 + status: 200 OK + code: 200 + duration: 40.511085ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 570e2980-33f3-426c-babe-e3b1bf7a869a + status: 200 OK + code: 200 + duration: 45.408809ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7bae5a80-d689-4a55-94c0-c196419791e1 + status: 200 OK + code: 200 + duration: 44.510184ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48b89b6f-8141-4bcd-b06f-a3954833d188 + status: 200 OK + code: 200 + duration: 45.849925ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:46 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4f03e9de-7d5f-499f-aa19-ca278c926307 + status: 200 OK + code: 200 + duration: 39.996714ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:51 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0420de49-103c-48ea-8e59-b31d61d396ac + status: 200 OK + code: 200 + duration: 59.027282ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:12:56 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4422c54d-1f7b-45c0-8887-72167a7bfc6f + status: 200 OK + code: 200 + duration: 49.269632ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3007a843-367f-49ab-9c46-69d7e5370dec + status: 200 OK + code: 200 + duration: 53.475566ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d243d3b-61d6-41bc-bd74-e1341212ec20 + status: 200 OK + code: 200 + duration: 42.22112ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a5146276-b9a9-4a7a-8c6b-3b68854cff60 + status: 200 OK + code: 200 + duration: 52.162265ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18d55e0b-231b-40c2-9926-9a94d6ebe566 + status: 200 OK + code: 200 + duration: 49.572901ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e40640a-c5d7-4ef9-943b-e6516b1b4670 + status: 200 OK + code: 200 + duration: 53.063516ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 635e6d88-c57a-415a-8816-04445e223c17 + status: 200 OK + code: 200 + duration: 61.705271ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6885050c-f6d3-4980-9ef3-7b723bf03e40 + status: 200 OK + code: 200 + duration: 38.276648ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 647e766f-1e08-4c97-a54f-78e669a9aaf1 + status: 200 OK + code: 200 + duration: 45.149697ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4651d4b-6ddf-4d45-b3aa-c77bba8f3857 + status: 200 OK + code: 200 + duration: 53.053488ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4406a0e3-822b-4162-88b8-abd69909a92d + status: 200 OK + code: 200 + duration: 52.623324ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 902e3cc9-1735-4922-9598-08ed08c47e7a + status: 200 OK + code: 200 + duration: 49.721813ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:13:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 076d7f79-965a-43f6-b438-b5d835d052ce + status: 200 OK + code: 200 + duration: 54.838717ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c6de0d2-9ddd-411b-b81d-646cf06fefbe + status: 200 OK + code: 200 + duration: 52.613126ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51cdcc4a-286f-43fb-9680-8bd95af3bf98 + status: 200 OK + code: 200 + duration: 84.113085ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d097763-6ae0-483d-8647-9225c7496f35 + status: 200 OK + code: 200 + duration: 63.851574ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 069ce316-7d89-4b73-911d-7aa82452a988 + status: 200 OK + code: 200 + duration: 128.433242ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24e95491-a9a4-4e62-84de-17ba9f4801ac + status: 200 OK + code: 200 + duration: 57.844929ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 820a65a3-3aa3-4cfa-a3f3-febd161215b8 + status: 200 OK + code: 200 + duration: 50.352397ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 12219fdc-92c3-4809-9ce0-a659e4a6780e + status: 200 OK + code: 200 + duration: 40.590435ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 273e7d05-c2a1-4d14-8102-0fe0d33de7c0 + status: 200 OK + code: 200 + duration: 40.913391ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9b781b1-5acf-47e7-a07c-c19e21848978 + status: 200 OK + code: 200 + duration: 47.972741ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e6f9d19-2a63-47b4-aec9-c49af9369ad7 + status: 200 OK + code: 200 + duration: 46.809979ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9c43333-22ad-4eb2-8f0e-a320bac1a082 + status: 200 OK + code: 200 + duration: 39.470233ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:14:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5595ead7-45b1-45f2-809a-8fd85f4809ec + status: 200 OK + code: 200 + duration: 44.903518ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:15:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ac3ee28-4a75-44a0-b0a8-14b1f696ecc9 + status: 200 OK + code: 200 + duration: 58.782313ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 706 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "706" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:15:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8363df27-5bac-43d2-b2d5-5d273168f576 + status: 200 OK + code: 200 + duration: 68.679407ms diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml index b7ba52d55..80cb2a31d 100644 --- a/internal/services/instance/testdata/server-block-external.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-cranky-mayer","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}' + body: '{"name":"tf-volume-great-banzai","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":10000000000},"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 419 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:13.631113Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' headers: Content-Length: - "419" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b58838-f34b-435b-99b0-90bf60704e04 + - bf67ac40-51c3-49fc-922a-ed809e1cae39 status: 200 OK code: 200 - duration: 187.678597ms + duration: 161.401598ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 419 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:13.631113Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dcc1a84-cf04-4a0d-83b5-334b2e346290 + - 5c9695fd-7959-4328-ba80-58e8275cbfc1 status: 200 OK code: 200 - duration: 121.319205ms + duration: 41.382972ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:13.631113Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c27329f-c6a8-45e9-86ee-a0c2e8e301b2 + - 437a33f8-6e11-42cb-900d-dcbf10cde908 status: 200 OK code: 200 - duration: 79.775043ms + duration: 47.955596ms - id: 3 request: proto: HTTP/1.1 @@ -165,7 +165,56 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f0955e7-7695-490c-acc3-edb38c7515c3 + status: 200 OK + code: 200 + duration: 43.725139ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -185,11 +234,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,13 +246,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97575d34-0379-48cf-b3ca-1395add9c4d0 + - f1811d98-4e3d-4838-8c97-b6084454280f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 103.773739ms - - id: 4 + duration: 50.118491ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -218,7 +267,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -238,11 +287,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,13 +299,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba531a8d-1187-42dd-8d3b-b1867300ffbd + - 1da5904e-a780-40ad-9079-dbd8d1954f7d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 91.877269ms - - id: 5 + duration: 44.195451ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -271,8 +320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -282,7 +331,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' headers: Content-Length: - "143" @@ -291,9 +340,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,11 +350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf72b2f-df24-413e-aa44-9b7f490b9b36 + - 9ec8d74a-d5a1-45a2-bc11-8af71e93e091 status: 404 Not Found code: 404 - duration: 94.235491ms - - id: 6 + duration: 39.486488ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -320,8 +369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -331,7 +380,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:13.631113Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -340,9 +389,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -350,11 +399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7937d2f-bf30-41e9-a1be-ba5ce89bf4cc + - 29c6cd72-bb79-4919-ba25-6a60541db7fd status: 200 OK code: 200 - duration: 122.890832ms - - id: 7 + duration: 39.834523ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -369,7 +418,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -378,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","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"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -399,28 +448,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68c879b-e119-415d-98f9-b8e53e033591 + - 08edd57e-0584-46e8-b19f-4be9125c478a status: 200 OK code: 200 - duration: 89.176073ms - - id: 8 + duration: 57.674036ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 321 + content_length: 317 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-affectionate-mclaren","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false},"1":{"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-quizzical-edison","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -429,22 +478,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1853 + content_length: 1889 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:14.729957+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1853" + - "1889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 08 Oct 2025 23:05:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,11 +501,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d7b5479-396a-460c-bced-554d93369e4c + - a8b2b4cf-383a-459a-893f-5aa5465f89bd status: 201 Created code: 201 - duration: 1.328557429s - - id: 9 + duration: 674.147672ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -471,8 +520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -480,20 +529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1853 + content_length: 1889 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:14.729957+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1853" + - "1889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,11 +550,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65012981-84fc-4e81-a6f0-030d6a752bb4 + - c6188e4c-789b-469e-a32c-da303f713cff status: 200 OK code: 200 - duration: 213.332038ms - - id: 10 + duration: 109.470745ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -520,8 +569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -529,20 +578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1853 + content_length: 1889 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:14.729957+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1853" + - "1889" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,11 +599,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 326e8ca2-fb58-4bc8-af2b-473d5010a849 + - 89fe3c0c-2138-4866-8765-f77ed2b30c36 status: 200 OK code: 200 - duration: 340.934236ms - - id: 11 + duration: 101.966626ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -569,8 +618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -580,7 +629,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -589,9 +638,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,11 +648,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 070a27fb-9b98-422b-ba3f-ee0eea9facaf + - 5aaf74ec-4f3a-40f1-b0ed-1ba508952654 status: 200 OK code: 200 - duration: 119.15152ms - - id: 12 + duration: 52.637497ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -618,8 +667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -629,7 +678,7 @@ interactions: trailer: {} content_length: 652 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "652" @@ -638,9 +687,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -648,11 +697,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a56f9ac6-6542-4dc7-b424-43ad7627366e + - f8c5dafb-fa4e-4b52-bc7a-1273769096d2 status: 200 OK code: 200 - duration: 96.172274ms - - id: 13 + duration: 37.599764ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -669,8 +718,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action method: POST response: proto: HTTP/2.0 @@ -680,7 +729,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/action","href_result":"/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","id":"fe8c5970-80bc-4253-a3e7-66837f39ad51","progress":0,"started_at":"2025-06-10T15:30:16.819231+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action","href_result":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a","id":"341db908-35f4-4f74-bac7-988a30041277","progress":0,"started_at":"2025-10-08T23:05:43.362430+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -689,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fe8c5970-80bc-4253-a3e7-66837f39ad51 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/341db908-35f4-4f74-bac7-988a30041277 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,11 +750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d27e5e3-1cfd-410e-99ce-c0dbbf50cc45 + - fb57120d-44e2-4871-9a7c-5f405f7a55b0 status: 202 Accepted code: 202 - duration: 314.929206ms - - id: 14 + duration: 176.808531ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -720,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -729,20 +778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:16.593083+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:43.233693+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,11 +799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31adc4bd-5a65-4e3a-a511-a20db42c9c49 + - 19720453-3482-44b3-9a68-be4dfa38ac4d status: 200 OK code: 200 - duration: 234.292237ms - - id: 15 + duration: 96.039447ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -769,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -778,20 +827,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 2045 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2008" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,11 +848,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62b3657b-2f75-410f-9461-675b138d18ae + - 794fb685-6a50-4590-ad8e-02237cffaf2b status: 200 OK code: 200 - duration: 207.155133ms - - id: 16 + duration: 95.727388ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -818,8 +867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -827,20 +876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 2045 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2008" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,11 +897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa24c622-f97b-412d-8a3d-9a62c61b7481 + - 8e044b40-09fb-4dca-b22a-e295012d719c status: 200 OK code: 200 - duration: 274.281383ms - - id: 17 + duration: 96.859865ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -867,8 +916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -878,7 +927,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -887,9 +936,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,11 +946,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42582848-8f47-4cfb-9631-b7f2c5d471a9 + - eb10dece-4db0-46c5-909d-ca8f1718ab3d status: 404 Not Found code: 404 - duration: 55.748292ms - - id: 18 + duration: 30.535418ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -916,8 +965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -927,7 +976,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -936,9 +985,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -946,11 +995,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c22ec78-f345-45de-a739-b4b6dc9a1b13 + - 190f6601-67c6-43f9-ac9a-297708dab315 status: 200 OK code: 200 - duration: 97.5779ms - - id: 19 + duration: 52.047533ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -965,8 +1014,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -985,9 +1034,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -995,11 +1044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d722588-c017-403b-a017-aa37f7d66e1b + - 4d21870c-30a1-49a5-bbff-263acac548d2 status: 200 OK code: 200 - duration: 111.903587ms - - id: 20 + duration: 60.461918ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1014,8 +1063,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -1034,11 +1083,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,13 +1095,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e273cffb-63a7-4451-9f5b-a01305bf9c02 + - 483414f8-9fc0-4d74-a76d-c1a7e205344e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 134.912649ms - - id: 21 + duration: 52.601199ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1067,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -1078,7 +1127,7 @@ interactions: trailer: {} content_length: 652 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "652" @@ -1087,9 +1136,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,11 +1146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85ec544e-330c-4484-9a66-bde298314331 + - 16b7c5d7-7f38-432b-a83c-f5d9a41ff1c0 status: 200 OK code: 200 - duration: 96.62922ms - - id: 22 + duration: 42.797821ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1116,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -1125,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 2045 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2008" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,11 +1195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9241f3e5-2f30-4c6f-8e21-9f78ba39df3d + - facf4d5e-53cb-4e32-9168-5bd503c39008 status: 200 OK code: 200 - duration: 223.895368ms - - id: 23 + duration: 106.778015ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1165,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1176,7 +1225,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -1185,9 +1234,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,11 +1244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76064874-1f7f-4b13-9360-6d7357d0680f + - fbfd115d-44a5-40d6-b605-53ec031c0c89 status: 404 Not Found code: 404 - duration: 45.458644ms - - id: 24 + duration: 28.435639ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1214,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1225,7 +1274,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1234,9 +1283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,11 +1293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8e81d49-87c1-4d14-b1fd-70a76bb30afa + - 71173a34-e07f-49fd-b428-d484233dcded status: 200 OK code: 200 - duration: 159.523524ms - - id: 25 + duration: 41.545321ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1263,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -1283,9 +1332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,11 +1342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfd1d0d6-4a5a-4c0e-8296-452616833985 + - 584b4e40-d608-47ab-b2d7-a9875772474c status: 200 OK code: 200 - duration: 157.193083ms - - id: 26 + duration: 60.483188ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1312,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -1332,11 +1381,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,13 +1393,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9cf2489-2484-4d68-aab6-21c087566bf7 + - 0983f966-b572-4106-8dcd-97cdd327ea67 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 166.377528ms - - id: 27 + duration: 66.829062ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1365,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -1376,7 +1425,7 @@ interactions: trailer: {} content_length: 652 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "652" @@ -1385,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,11 +1444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 625115a6-0cde-4544-8a7b-6532e18ef65f + - cb8e7f3a-6fbb-4293-8bab-48fe5ad7b90d status: 200 OK code: 200 - duration: 113.811805ms - - id: 28 + duration: 37.37031ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1414,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -1423,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 2045 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2008" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,11 +1493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42602381-2a34-4e14-8ffd-bdab30330af6 + - 20cbba81-34bb-4763-a0e7-a1c11e99f49b status: 200 OK code: 200 - duration: 216.979347ms - - id: 29 + duration: 105.39324ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1463,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1474,7 +1523,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -1483,9 +1532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d38fdee-fa7d-4c99-909b-73b12b923426 + - 62faac15-0462-44ba-b617-6920cb39f75c status: 404 Not Found code: 404 - duration: 53.827008ms - - id: 30 + duration: 35.853759ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1512,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1523,7 +1572,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1532,9 +1581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f17217d-e02d-4f49-9bdf-9d78d2b07784 + - 444aa143-64da-4a98-a4d1-8703c9f5b91d status: 200 OK code: 200 - duration: 152.579049ms - - id: 31 + duration: 40.112096ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1561,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -1581,9 +1630,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,11 +1640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d08660c1-6320-4946-baa9-cb4ec748530b + - 8042c0e8-f217-4afa-bc1d-a1ba21dd734d status: 200 OK code: 200 - duration: 158.400367ms - - id: 32 + duration: 69.980068ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1610,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -1630,11 +1679,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,13 +1691,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6c0cef9-2d0c-4125-9841-cf2f1301a0ee + - ea23d936-7d38-41d3-a174-3f3199d6764a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 115.704905ms - - id: 33 + duration: 57.007599ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1663,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -1672,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 2045 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2008" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,29 +1742,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 361df17a-b23e-4d1e-bb8f-aff0c6617137 + - 21677f53-edba-4905-a546-b4aceb81ca34 status: 200 OK code: 200 - duration: 182.745965ms - - id: 34 + duration: 104.38901ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 104 + content_length: 105 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"63222063-fc82-455b-83de-d6893ea2fe3a","boot":false,"name":"tf-vol-silly-cohen"}}}' + body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-lucid-austin"}}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: PATCH response: proto: HTTP/2.0 @@ -1723,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,11 +1793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da513c44-33ac-4a27-af3d-c8b8be97fb16 + - 864ad185-c8ec-4258-afbe-d89903073500 status: 200 OK code: 200 - duration: 508.684126ms - - id: 35 + duration: 312.260199ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1763,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -1772,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,11 +1842,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a399be26-c503-4cb7-9791-d5c4a25bc50e + - 036e5c00-5ed2-4217-b693-c6b89b8bb948 status: 200 OK code: 200 - duration: 411.468035ms - - id: 36 + duration: 106.05758ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1812,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -1821,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,11 +1891,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40916d72-5567-4bdf-9dbf-d1f958c836f2 + - 659caff8-b891-419c-859f-8a23ce7c441b status: 200 OK code: 200 - duration: 243.78047ms - - id: 37 + duration: 95.360047ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1861,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1872,7 +1921,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -1881,9 +1930,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,11 +1940,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8af043aa-5880-46ce-8d48-1a3b4855b13c + - c08feb81-ecb5-4319-adce-917ec4f2537c status: 404 Not Found code: 404 - duration: 169.288016ms - - id: 38 + duration: 27.329881ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1910,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -1921,7 +1970,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1930,9 +1979,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,11 +1989,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2de4ccc8-a812-4398-aadc-d93a35746afd + - 466bee07-59ab-4d8b-b954-00690b791eac status: 200 OK code: 200 - duration: 117.841482ms - - id: 39 + duration: 41.041116ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1959,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -1979,9 +2028,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:05:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,11 +2038,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efc972df-cf2e-4565-8593-c15108c64cba + - b0c18a44-a533-439b-872c-940420fbe1e9 status: 200 OK code: 200 - duration: 316.976844ms - - id: 40 + duration: 55.414249ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2008,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -2028,11 +2077,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,13 +2089,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5613acf-a867-4fb6-9813-3e3f628c3c47 + - 60376721-7f3f-4cb0-af2d-a0c4a93b1788 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 242.674005ms - - id: 41 + duration: 55.643944ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2061,8 +2110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2072,7 +2121,7 @@ interactions: trailer: {} content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "653" @@ -2081,9 +2130,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,11 +2140,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeb89aa2-52b2-4a10-8912-70fdbe36c661 + - 2f829663-f747-4860-930d-04e40b732282 status: 200 OK code: 200 - duration: 80.398842ms - - id: 42 + duration: 41.245325ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2110,8 +2159,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -2119,20 +2168,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,11 +2189,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba04f65a-b3a5-425f-b7c5-a0510f31186a + - e5e3f331-77f8-43e1-bad2-b6bb727394a9 status: 200 OK code: 200 - duration: 229.750198ms - - id: 43 + duration: 103.152298ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2159,8 +2208,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -2170,7 +2219,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -2179,9 +2228,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,11 +2238,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfa2be7e-f1eb-4167-9452-2d6ac8f7243d + - 22dd5770-5131-4fed-8594-9dd972916f77 status: 404 Not Found code: 404 - duration: 66.195144ms - - id: 44 + duration: 32.537255ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2208,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -2219,7 +2268,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2228,9 +2277,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,11 +2287,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 485a9039-0b07-40f1-a314-30bee9713cc3 + - 32a193fc-9649-469c-aead-900cc2cf3216 status: 200 OK code: 200 - duration: 105.045615ms - - id: 45 + duration: 41.923982ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2257,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -2277,9 +2326,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,11 +2336,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04c88659-3c6c-4b20-9873-0a3ae7e99f77 + - 4dfc91a8-fe41-4181-aafe-a67607c2e241 status: 200 OK code: 200 - duration: 112.473534ms - - id: 46 + duration: 46.932579ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2306,8 +2355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -2326,11 +2375,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2338,13 +2387,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03259328-b7c6-495c-ba68-f8fdba620abe + - bf4caa03-664f-41ab-aeee-a41fcc6ae25a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 147.930993ms - - id: 47 + duration: 49.957492ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2359,8 +2408,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2370,7 +2419,7 @@ interactions: trailer: {} content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "653" @@ -2379,9 +2428,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,11 +2438,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4851742-91ae-407f-9d2b-b2a97c0cead0 + - 4f3af755-3f4c-4d6c-8305-b54f72651e1e status: 200 OK code: 200 - duration: 104.140026ms - - id: 48 + duration: 47.18223ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2408,8 +2457,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2419,7 +2468,7 @@ interactions: trailer: {} content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "653" @@ -2428,9 +2477,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,11 +2487,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c9c01ed-d2ba-4280-8d0e-7af2cccc2af0 + - 65aae581-f817-47b5-adac-bd6ff800e480 status: 200 OK code: 200 - duration: 115.529786ms - - id: 49 + duration: 48.453374ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2457,8 +2506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2468,7 +2517,7 @@ interactions: trailer: {} content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":null,"name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:15.040849Z","id":"92458395-83ea-4dcd-a2c5-43055c2cbca8","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:15.040849Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - "653" @@ -2477,9 +2526,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2487,11 +2536,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3559c22a-58aa-4f58-9b6c-91464cd14a12 + - 08e3ffdd-0c8c-4933-9f0c-557dd461fa3c status: 200 OK code: 200 - duration: 78.698843ms - - id: 50 + duration: 43.342747ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2506,8 +2555,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2515,20 +2564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.797436Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,11 +2585,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fb2f490-d484-49b6-86f9-aed807b4a3dc + - 8aedec12-f69b-44d3-aefb-cc8792f29040 status: 200 OK code: 200 - duration: 111.876434ms - - id: 51 + duration: 37.219856ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2555,8 +2604,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2564,20 +2613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.797436Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 08 Oct 2025 23:06:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,11 +2634,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0a16494-2bfd-48c7-ba56-94cbbce5bb2b + - 8888d205-ca4a-4d65-9e1a-becc968e9bf3 status: 200 OK code: 200 - duration: 76.773201ms - - id: 52 + duration: 49.620592ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2604,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2613,20 +2662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 653 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "1891" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 08 Oct 2025 23:06:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,11 +2683,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3295e5f-9c4b-474d-8d2f-0bdaff40060a + - 4f56fdbb-79e1-490f-8561-d7eb35d8f0ea status: 200 OK code: 200 - duration: 174.994937ms - - id: 53 + duration: 44.935834ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2653,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2662,20 +2711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 653 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 08 Oct 2025 23:06:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,11 +2732,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c04260-b7f2-413f-aea7-710a4d2c9c5f - status: 404 Not Found - code: 404 - duration: 81.0542ms - - id: 54 + - 66c25d8f-644b-4118-b3c9-bdf41ebcc4aa + status: 200 OK + code: 200 + duration: 46.599736ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2702,8 +2751,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2711,20 +2760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:06:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,11 +2781,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1deeaaf-22a4-4295-a2be-2d1b4d1cbdbf + - e14d30e1-c35a-4115-98aa-0bc7f5afd7d8 status: 200 OK code: 200 - duration: 130.14215ms - - id: 55 + duration: 48.14156ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2751,8 +2800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2760,20 +2809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 653 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:06:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2781,11 +2830,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b59e819-b36b-4030-bc0a-b5f732b0ebc7 + - 7df98160-47e1-4f66-a14f-a9595f811f79 status: 200 OK code: 200 - duration: 107.769442ms - - id: 56 + duration: 58.712737ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2800,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2809,22 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 653 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2832,13 +2879,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f00e736-f336-496b-acf3-e9073a7132a5 - X-Total-Count: - - "0" + - dea8d3d9-f0fe-4049-bbbd-7c48553ff089 status: 200 OK code: 200 - duration: 120.152506ms - - id: 57 + duration: 46.573594ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2853,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2862,20 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 653 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' headers: Content-Length: - - "1891" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2883,11 +2928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bffb3e54-d4ff-4dd6-ba99-d68ec6c76153 + - 79cd807f-0f7b-443b-a095-d319aead3454 status: 200 OK code: 200 - duration: 239.003669ms - - id: 58 + duration: 58.983526ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2902,8 +2947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2911,20 +2956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 445 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2932,11 +2977,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 176056ed-7c24-4ff2-9a91-7b57baebec73 - status: 404 Not Found - code: 404 - duration: 63.891042ms - - id: 59 + - f4f053c2-4212-4410-8ef2-64e404f23baf + status: 200 OK + code: 200 + duration: 45.041626ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2951,8 +2996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -2962,7 +3007,7 @@ interactions: trailer: {} content_length: 445 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:50.797436Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' headers: Content-Length: - "445" @@ -2971,9 +3016,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2981,50 +3026,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 999c7541-371c-4a6a-8ebc-15e1789f6d29 + - fab5212e-e9ce-44c9-a611-da57b7eccebc status: 200 OK code: 200 - duration: 80.199507ms - - id: 60 + duration: 58.153849ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 184 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"63222063-fc82-455b-83de-d6893ea2fe3a","boot":false,"name":"tf-vol-amazing-yonath"},"1":{"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume"}}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3032,11 +3075,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed7a6b8f-eac8-44e0-82f9-2cc4295c9c62 + - 9025c9d5-10b7-47df-9e50-cb956baecda2 status: 200 OK code: 200 - duration: 601.945694ms - - id: 61 + duration: 94.609193ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3051,8 +3094,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -3060,20 +3103,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "1948" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3081,11 +3124,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db480cfc-3123-4ee4-9c74-bbda8528bd43 - status: 200 OK - code: 200 - duration: 236.149216ms - - id: 62 + - 9a959725-2163-4014-af90-d8252a888d73 + status: 404 Not Found + code: 404 + duration: 33.466689ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3100,8 +3143,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -3109,20 +3152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "1948" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3130,11 +3173,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c5e1918-2858-429a-a5e8-bca495728e81 + - 4559ac2c-4dbc-43c5-bf91-855b93bcb593 status: 200 OK code: 200 - duration: 190.783246ms - - id: 63 + duration: 38.079181ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3149,8 +3192,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -3158,20 +3201,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "143" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3179,11 +3222,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 309eb993-d137-42fa-8450-50d88496bfed - status: 404 Not Found - code: 404 - duration: 76.991971ms - - id: 64 + - 23ff6039-3dee-422b-aea3-c3dc629d6436 + status: 200 OK + code: 200 + duration: 56.489436ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3198,8 +3241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -3207,20 +3250,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "705" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3228,11 +3273,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c68f102-e6c6-4199-a003-7c5c909c4f09 + - 1e90693c-dde5-4527-9b6b-385578a85f34 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 83.314719ms - - id: 65 + duration: 45.591865ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3247,8 +3294,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -3256,20 +3303,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1906 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3277,11 +3324,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b633020-1e31-4325-a6fa-e71912c7cf67 + - fdd0a4ab-5031-4253-8446-6d5fd643e8ee status: 200 OK code: 200 - duration: 106.955685ms - - id: 66 + duration: 105.671249ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3296,8 +3343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -3305,22 +3352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:55 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3328,61 +3373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 117e6f4b-0731-4352-83ba-98729b4f9019 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 90.006679ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 677 - uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:54.736097Z","id":"34038671-c6fc-41c1-8883-c24973767631","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:54.736097Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "677" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 09ebeced-dedf-49e2-bef8-910319fca4b1 - status: 200 OK - code: 200 - duration: 79.186477ms + - b214a52f-2673-4191-851b-b759235fdbd9 + status: 404 Not Found + code: 404 + duration: 33.144963ms - id: 68 request: proto: HTTP/1.1 @@ -3398,8 +3392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -3407,20 +3401,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 445 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' headers: Content-Length: - - "2008" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3428,48 +3422,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc764e61-3649-4c8d-87d3-1673978f12b5 + - 5fac57fb-0343-4b19-a1b9-d7681a513d95 status: 200 OK code: 200 - duration: 193.349639ms + duration: 39.556517ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 185 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-nervous-hypatia"},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1985 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3477,10 +3473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da86ccdc-320d-43bd-958c-91c102c8feb0 - status: 404 Not Found - code: 404 - duration: 29.083764ms + - a4ecd005-9b9c-4a4f-a718-72bfbd0fa984 + status: 200 OK + code: 200 + duration: 348.212335ms - id: 70 request: proto: HTTP/1.1 @@ -3496,8 +3492,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -3505,20 +3501,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1985 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3526,10 +3522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e741134b-9af7-4ebf-843b-4987d34e5910 + - 4579c3b7-019d-42c6-b0b7-d9cccb6700a7 status: 200 OK code: 200 - duration: 73.275071ms + duration: 103.660515ms - id: 71 request: proto: HTTP/1.1 @@ -3545,8 +3541,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -3554,20 +3550,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1985 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1985" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3575,10 +3571,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46736750-4abb-488b-a625-fe10aa36ae08 + - 630bd559-a18d-4813-ac0e-3601989146dc status: 200 OK code: 200 - duration: 160.457963ms + duration: 548.997429ms - id: 72 request: proto: HTTP/1.1 @@ -3594,8 +3590,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -3603,22 +3599,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,12 +3620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c78df176-f731-4206-8fcf-9079b3e19a02 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 108.863904ms + - 8386ebfa-9b2e-43a5-9084-b8c7fdb13a5b + status: 404 Not Found + code: 404 + duration: 31.292362ms - id: 73 request: proto: HTTP/1.1 @@ -3647,8 +3639,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -3656,20 +3648,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:54.736097Z","id":"34038671-c6fc-41c1-8883-c24973767631","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:54.736097Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3677,10 +3669,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a6a494-8de7-426d-b650-47d2e0e7a2c5 + - 771d44c4-7cf1-47e9-a2ed-b0b4b527d4f5 status: 200 OK code: 200 - duration: 74.256621ms + duration: 40.731483ms - id: 74 request: proto: HTTP/1.1 @@ -3696,8 +3688,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -3705,20 +3697,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2008" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 08 Oct 2025 23:06:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3726,10 +3718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f8206b1-65d1-4c5a-b858-955fb2ebb493 + - 8272df23-2ccd-4801-941d-e1415b1c83eb status: 200 OK code: 200 - duration: 275.012791ms + duration: 53.949993ms - id: 75 request: proto: HTTP/1.1 @@ -3745,8 +3737,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -3754,20 +3746,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Wed, 08 Oct 2025 23:06:53 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3775,10 +3769,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e62bf8c-106f-4ae0-ae52-ed8a2c7898aa - status: 404 Not Found - code: 404 - duration: 65.158899ms + - 674c39f1-12dd-4065-abb9-eb6403323c2a + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 53.148859ms - id: 76 request: proto: HTTP/1.1 @@ -3794,8 +3790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -3803,20 +3799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 677 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "677" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3824,10 +3820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27f0f2a9-25ca-479f-8247-405d57282ed2 + - 8128cc69-5b05-48e0-bade-48e22392d189 status: 200 OK code: 200 - duration: 82.730403ms + duration: 50.252145ms - id: 77 request: proto: HTTP/1.1 @@ -3843,8 +3839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -3852,20 +3848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2045 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3873,10 +3869,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0fa12c4-85d3-4ad3-8519-6fcab8e93e99 + - 8e48a156-1c21-49f7-9117-e9caedd65038 status: 200 OK code: 200 - duration: 178.680528ms + duration: 100.358078ms - id: 78 request: proto: HTTP/1.1 @@ -3892,8 +3888,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -3901,22 +3897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3924,52 +3918,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820a17f6-7836-45c8-9c0e-87b96ed17c24 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 109.19233ms + - 3fd4595c-9f5b-42d2-85ec-c2b15585a1ca + status: 404 Not Found + code: 404 + duration: 32.263912ms - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 148 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-naughty-morse","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":15000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:00.325078Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "422" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3977,10 +3967,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 836489c6-082d-48b0-9c03-aafd7cc5e821 + - d0d6fb4b-ee5b-4301-b447-a431c66ad321 status: 200 OK code: 200 - duration: 225.467143ms + duration: 38.108254ms - id: 80 request: proto: HTTP/1.1 @@ -3996,8 +3986,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -4005,20 +3995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:00.325078Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "423" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,10 +4016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad357109-7ebb-40d7-aedb-4cec3bea4f4c + - 22c2a357-72cc-443d-b401-066dd93dd06d status: 200 OK code: 200 - duration: 123.630527ms + duration: 57.514484ms - id: 81 request: proto: HTTP/1.1 @@ -4045,8 +4035,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -4054,20 +4044,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:00.325078Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:06:54 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4075,10 +4067,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e819e5b0-8017-4e55-9d56-322c54c32d26 + - e0674597-a170-47b4-b073-fe0f7ee48ed9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 124.877076ms + duration: 55.15273ms - id: 82 request: proto: HTTP/1.1 @@ -4094,8 +4088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -4103,20 +4097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2008 + content_length: 677 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' headers: Content-Length: - - "2008" + - "677" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4124,10 +4118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2409720d-f452-4d81-926e-6ab1099baeda + - 713aabdc-4604-4f96-81cf-d4ca6a00ae21 status: 200 OK code: 200 - duration: 226.340701ms + duration: 51.727777ms - id: 83 request: proto: HTTP/1.1 @@ -4143,8 +4137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -4152,20 +4146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2045 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4173,10 +4167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d36e65c-0a2a-4031-bfb0-c74ce28551d6 - status: 404 Not Found - code: 404 - duration: 59.307806ms + - 2b458b78-c473-45f9-8cdf-d88cf8df55ae + status: 200 OK + code: 200 + duration: 131.137009ms - id: 84 request: proto: HTTP/1.1 @@ -4192,8 +4186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -4201,20 +4195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:54.736097Z","id":"34038671-c6fc-41c1-8883-c24973767631","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:54.736097Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "677" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4222,10 +4216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fb5e7d3-e954-4e13-90d6-5cc778efb045 - status: 200 OK - code: 200 - duration: 129.948757ms + - 9d464cf9-17e8-44a5-96df-05c9db86ada4 + status: 404 Not Found + code: 404 + duration: 33.710209ms - id: 85 request: proto: HTTP/1.1 @@ -4241,8 +4235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -4250,20 +4244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,10 +4265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f003829c-a367-460f-b7cd-e068b1ed511c - status: 404 Not Found - code: 404 - duration: 30.631156ms + - 01e52b20-d08b-46d6-93db-f0a5ca5f8e6b + status: 200 OK + code: 200 + duration: 38.891515ms - id: 86 request: proto: HTTP/1.1 @@ -4290,8 +4284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -4299,20 +4293,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:00.325078Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "423" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4320,50 +4314,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7449944-166b-4039-8fbf-440780664a4d + - 3be4c1ff-51fe-4a7c-a622-199b17953a65 status: 200 OK code: 200 - duration: 92.218978ms + duration: 53.583894ms - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 269 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"63222063-fc82-455b-83de-d6893ea2fe3a","boot":false,"name":"tf-vol-charming-chandrasekhar"},"1":{"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume"},"2":{"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume"}}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2065 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2065" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:06:55 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4371,48 +4365,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81cac309-24b7-4b43-a44e-0246d2821eee + - 2456e800-26be-449e-8c2e-5d042ecba965 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 531.921338ms + duration: 68.077236ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-angry-kare","perf_iops":15000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":15000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2065 + content_length: 419 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' headers: Content-Length: - - "2065" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4420,10 +4418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51f88a9c-d3d6-4a77-97ec-6f52b36a7100 + - 3b6f70b3-3953-4117-99e4-0e0a7adb41fa status: 200 OK code: 200 - duration: 229.62519ms + duration: 119.72803ms - id: 89 request: proto: HTTP/1.1 @@ -4439,8 +4437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -4448,20 +4446,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2065 + content_length: 419 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' headers: Content-Length: - - "2065" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:06:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4469,10 +4467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bae80b0b-668e-4fc8-b12b-7ab5907d767a + - 104aae21-babf-44fa-903b-10131f1fca49 status: 200 OK code: 200 - duration: 258.409643ms + duration: 43.692226ms - id: 90 request: proto: HTTP/1.1 @@ -4488,8 +4486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -4497,20 +4495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 420 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4518,10 +4516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efe46dc7-1c06-4378-9d88-04e6c922e917 - status: 404 Not Found - code: 404 - duration: 53.345805ms + - c8bf45d2-c220-4004-aad4-bbe178e87e55 + status: 200 OK + code: 200 + duration: 40.586243ms - id: 91 request: proto: HTTP/1.1 @@ -4537,8 +4535,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -4546,20 +4544,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4567,10 +4565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3a5056a-50ea-4598-8f3c-c15c72a901a0 + - 3cdf8296-2674-4875-9596-05b62b72a6c7 status: 200 OK code: 200 - duration: 88.897699ms + duration: 46.59446ms - id: 92 request: proto: HTTP/1.1 @@ -4586,8 +4584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -4595,20 +4593,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2045 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2045" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4616,10 +4614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a15472d-ef23-422a-8187-aa45e29ac8ad + - 4e758565-66b1-4dda-81a5-016cdb4a20b8 status: 200 OK code: 200 - duration: 91.855807ms + duration: 109.677516ms - id: 93 request: proto: HTTP/1.1 @@ -4635,8 +4633,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -4644,22 +4642,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4667,12 +4663,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c40e9247-53af-41b9-98b6-73fe4bf80a5d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 122.295624ms + - 9b228c86-6e1e-4234-b979-fdca64eb5f59 + status: 404 Not Found + code: 404 + duration: 29.40744ms - id: 94 request: proto: HTTP/1.1 @@ -4688,8 +4682,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -4697,20 +4691,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 677 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:01.468613Z","id":"b888cc36-4faa-4862-930b-0b2b07f6018c","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:01.468613Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' headers: Content-Length: - - "655" + - "677" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4718,10 +4712,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1cb23eb-6e4f-4798-86d7-62ebfdca1d86 + - 73cda5db-a0c0-4d66-8a3e-2998d79ae307 status: 200 OK code: 200 - duration: 483.669366ms + duration: 39.151837ms - id: 95 request: proto: HTTP/1.1 @@ -4737,8 +4731,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -4746,20 +4740,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:54.736097Z","id":"34038671-c6fc-41c1-8883-c24973767631","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:54.736097Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","type":"not_found"}' headers: Content-Length: - - "677" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4767,10 +4761,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d367c93-85cd-4d7a-ad5a-cd0e6eb60644 - status: 200 OK - code: 200 - duration: 483.701075ms + - 0fa8556e-9c0c-4cef-b1fb-c4e1a5ff87f1 + status: 404 Not Found + code: 404 + duration: 32.8091ms - id: 96 request: proto: HTTP/1.1 @@ -4786,8 +4780,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -4795,20 +4789,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2125 + content_length: 420 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' headers: Content-Length: - - "2125" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4816,48 +4810,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ad5d844-1117-47d4-a605-5ac073498b7c + - 5d2870b7-c52f-4c58-a5c6-07c03849d94b status: 200 OK code: 200 - duration: 257.137867ms + duration: 44.774309ms - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 264 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-objective-gagarin"},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"},"2":{"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","volume_type":"sbs_volume"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2124 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2124" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4865,10 +4861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22cd4ff9-e38d-4d92-a590-c785156df7b9 - status: 404 Not Found - code: 404 - duration: 69.726565ms + - 97a2c164-1a5e-467f-af77-cdf9311ee87b + status: 200 OK + code: 200 + duration: 366.733926ms - id: 98 request: proto: HTTP/1.1 @@ -4884,8 +4880,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -4893,20 +4889,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 2124 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "2124" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4914,10 +4910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1e4c35d-e05a-451b-a24b-5c2059722eee + - 63dd8045-0a0e-413a-8464-78698128a7cb status: 200 OK code: 200 - duration: 95.038526ms + duration: 117.808222ms - id: 99 request: proto: HTTP/1.1 @@ -4933,8 +4929,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -4942,20 +4938,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2124 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2124" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4963,10 +4959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9076123-82dc-4704-9454-64664399274b + - dc7b9b0f-365a-458a-8afa-3b54f573d673 status: 200 OK code: 200 - duration: 107.482654ms + duration: 108.802475ms - id: 100 request: proto: HTTP/1.1 @@ -4982,8 +4978,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -4991,22 +4987,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5014,12 +5008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6767177-074b-4b9a-85a4-18c2b1f457ea - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.724051ms + - 7c9a5fab-e924-490c-b514-d1d7d15b7f34 + status: 404 Not Found + code: 404 + duration: 35.733867ms - id: 101 request: proto: HTTP/1.1 @@ -5035,8 +5027,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -5044,20 +5036,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2125 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:30:21.515690+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "2125" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5065,10 +5057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c24bbac4-80c6-43b1-8381-132434f11bc6 + - 33c3d98d-0c84-4af9-a8ca-09ca933ab0a9 status: 200 OK code: 200 - duration: 230.367833ms + duration: 42.590414ms - id: 102 request: proto: HTTP/1.1 @@ -5084,8 +5076,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -5093,20 +5085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:14.945678Z","id":"21e04c1c-fb24-4f78-a7ce-2cb4a43ac504","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.945678Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5114,10 +5106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e817e3e-9904-43c4-89d5-750bd78a384f + - b75b3941-de18-4187-aba8-54eadb2ef31a status: 200 OK code: 200 - duration: 133.618619ms + duration: 53.378924ms - id: 103 request: proto: HTTP/1.1 @@ -5133,8 +5125,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -5142,20 +5134,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:30:50.797436Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:54.736097Z","id":"34038671-c6fc-41c1-8883-c24973767631","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:54.736097Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "677" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:07:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5163,10 +5157,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 537b1aa2-3f93-461a-b5bb-5fe1b6d21226 + - 7a134b93-4272-4ebb-9a59-d4dfbed96737 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 106.463903ms + duration: 51.174852ms - id: 104 request: proto: HTTP/1.1 @@ -5182,8 +5178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -5191,20 +5187,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 655 + content_length: 653 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":null,"name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:01.468613Z","id":"b888cc36-4faa-4862-930b-0b2b07f6018c","product_resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:01.468613Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:07:00.885758Z","id":"9efded82-90dd-4a00-a195-c19f6cc55fd4","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:00.885758Z","zone":"fr-par-1"}' headers: Content-Length: - - "655" + - "653" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5212,52 +5208,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4be31c46-f397-4597-83f6-6ef701d66e5a + - 457e0747-ed09-40ae-84cf-52eb34538432 status: 200 OK code: 200 - duration: 127.122365ms + duration: 50.016116ms - id: 105 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 677 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9/action","href_result":"/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","id":"402ceb4d-4f02-461e-a107-7c1571216349","progress":0,"started_at":"2025-06-10T15:31:06.788990+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' headers: Content-Length: - - "352" + - "677" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/402ceb4d-4f02-461e-a107-7c1571216349 + - Wed, 08 Oct 2025 23:07:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5265,10 +5257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eea42061-d491-492a-bde7-c9d5618dbd1f - status: 202 Accepted - code: 202 - duration: 285.133651ms + - df78c4ff-ef6d-4f2c-b76f-d464a5064181 + status: 200 OK + code: 200 + duration: 50.981804ms - id: 106 request: proto: HTTP/1.1 @@ -5284,8 +5276,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -5293,20 +5285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 652 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:07:00.885758Z","id":"9efded82-90dd-4a00-a195-c19f6cc55fd4","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:00.885758Z","zone":"fr-par-1"}' headers: Content-Length: - - "2085" + - "652" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:07:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5314,10 +5306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 111c81a4-9ce2-4634-96af-9393e8b6b776 + - 9be9d1f2-5c53-4856-be09-3efdc620c234 status: 200 OK code: 200 - duration: 191.103346ms + duration: 45.973829ms - id: 107 request: proto: HTTP/1.1 @@ -5333,8 +5325,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -5342,20 +5334,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2085" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Wed, 08 Oct 2025 23:07:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5363,10 +5355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf70aaa1-b4fe-42e7-887b-6ffd3dbd62f9 + - 22deb7ef-7004-4822-8de4-d25b7b04170a status: 200 OK code: 200 - duration: 255.957934ms + duration: 123.139343ms - id: 108 request: proto: HTTP/1.1 @@ -5382,8 +5374,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -5391,20 +5383,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - - "2085" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Wed, 08 Oct 2025 23:07:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5412,10 +5404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45b06698-a58f-4211-87b4-f7541e803bce - status: 200 OK - code: 200 - duration: 209.013394ms + - 33bd5e0a-4b1a-4e47-a860-4e832019f3d7 + status: 404 Not Found + code: 404 + duration: 34.794146ms - id: 109 request: proto: HTTP/1.1 @@ -5431,8 +5423,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -5440,20 +5432,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' headers: Content-Length: - - "2085" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:22 GMT + - Wed, 08 Oct 2025 23:07:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5461,10 +5453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22b37e13-38b3-47fb-8688-13c708c2ee45 + - 9d5f3cc4-8eb1-46ff-b92d-3e28086fd03f status: 200 OK code: 200 - duration: 246.19288ms + duration: 39.69457ms - id: 110 request: proto: HTTP/1.1 @@ -5480,8 +5472,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data method: GET response: proto: HTTP/2.0 @@ -5489,20 +5481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2085" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 23:07:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5510,10 +5502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cadc0552-32d6-4037-8f55-9de6f1c2d014 + - f2c8bb79-8e5a-4726-9563-37e3090cfe0b status: 200 OK code: 200 - duration: 225.490604ms + duration: 66.535015ms - id: 111 request: proto: HTTP/1.1 @@ -5529,8 +5521,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics method: GET response: proto: HTTP/2.0 @@ -5538,20 +5530,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2085" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:07:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5559,10 +5553,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d40f5b14-7164-45d2-be89-e973c4bfb4e0 + - 73ab210a-e426-4ab5-888d-9d117d51a00b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 188.82425ms + duration: 57.323149ms - id: 112 request: proto: HTTP/1.1 @@ -5578,8 +5574,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -5587,20 +5583,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2085 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:06.554048+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2085" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT + - Wed, 08 Oct 2025 23:07:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5608,48 +5604,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f488d00-ce33-45fd-9696-b5dcc3e89daf + - 0dd36f0e-fc63-4d13-b5a2-bad3bc907492 status: 200 OK code: 200 - duration: 179.91465ms + duration: 107.324744ms - id: 113 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:41.464730+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action","href_result":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a","id":"b0530b8d-5ac4-4b2d-80ed-8be1e2077505","progress":0,"started_at":"2025-10-08T23:07:07.885358+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:43 GMT + - Wed, 08 Oct 2025 23:07:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0530b8d-5ac4-4b2d-80ed-8be1e2077505 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5657,10 +5657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5196fd25-3829-4fea-997c-8e7eeea0cb60 - status: 200 OK - code: 200 - duration: 183.31633ms + - e21de530-ca0f-4ccb-9cf5-12f1e2749ccc + status: 202 Accepted + code: 202 + duration: 207.289099ms - id: 114 request: proto: HTTP/1.1 @@ -5676,8 +5676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -5685,20 +5685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 2147 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:30:14.729957+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-mclaren","id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:49","maintenances":[],"modification_date":"2025-06-10T15:31:41.464730+00:00","name":"tf-srv-affectionate-mclaren","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"63222063-fc82-455b-83de-d6893ea2fe3a","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:07:07.737238+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "2147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:43 GMT + - Wed, 08 Oct 2025 23:07:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5706,10 +5706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac7570e6-d9ab-48e8-8741-faae8f8453d6 + - ceb30ec0-4b3b-4c06-9327-e687566d91da status: 200 OK code: 200 - duration: 160.266522ms + duration: 113.923297ms - id: 115 request: proto: HTTP/1.1 @@ -5725,55 +5725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e8fbd01-a559-4042-b871-ea4323b20348 - status: 204 No Content - code: 204 - duration: 428.006148ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -5783,7 +5736,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","type":"not_found"}' headers: Content-Length: - "143" @@ -5792,9 +5745,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5802,11 +5755,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca31ee22-8258-4a63-a56d-4775a7f2910a + - 27b9ac58-28ce-4938-85f6-86949c5aff50 status: 404 Not Found code: 404 - duration: 184.68154ms - - id: 117 + duration: 48.560228ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5821,8 +5774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -5832,7 +5785,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"63222063-fc82-455b-83de-d6893ea2fe3a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' headers: Content-Length: - "143" @@ -5841,9 +5794,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5851,11 +5804,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4da46b63-a28a-4cde-9437-af0ca21b91f5 + - 9ffc8253-8998-4cd1-b7cf-e34adf3800bf status: 404 Not Found code: 404 - duration: 32.346232ms - - id: 118 + duration: 26.879698ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5870,8 +5823,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: GET response: proto: HTTP/2.0 @@ -5881,7 +5834,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:14.945678Z","id":"63222063-fc82-455b-83de-d6893ea2fe3a","last_detached_at":"2025-06-10T15:31:44.025730Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:44.025730Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":"2025-10-08T23:07:09.568839Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:09.568839Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5890,9 +5843,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5900,11 +5853,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37689a46-d464-48ce-b8df-5c4e8eb5cfe5 + - c69e2574-b764-4b19-b764-f6af2c8a11b1 status: 200 OK code: 200 - duration: 122.216924ms - - id: 119 + duration: 38.549579ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5919,8 +5872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/63222063-fc82-455b-83de-d6893ea2fe3a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 method: DELETE response: proto: HTTP/2.0 @@ -5937,9 +5890,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5947,11 +5900,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31a3a2f9-d5a6-4596-9c53-b280b4a65bfb + - 8c3829c1-bfc7-4bd2-94e3-12d29840a4fd status: 204 No Content code: 204 - duration: 162.444437ms - - id: 120 + duration: 67.022027ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5966,8 +5919,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -5977,7 +5930,7 @@ interactions: trailer: {} content_length: 445 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:13.631113Z","id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","last_detached_at":"2025-06-10T15:31:44.101189Z","name":"tf-volume-cranky-mayer","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:44.101189Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:07:09.644850Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:09.644850Z","zone":"fr-par-1"}' headers: Content-Length: - "445" @@ -5986,9 +5939,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5996,11 +5949,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42b941fc-a8ed-435e-932e-2808b95bc760 + - 1e31ed1c-33b7-411c-86a5-715b40a576ee status: 200 OK code: 200 - duration: 81.472402ms - - id: 121 + duration: 41.355045ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6015,8 +5968,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -6024,20 +5977,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 448 + content_length: 445 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:00.325078Z","id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","last_detached_at":"2025-06-10T15:31:44.235914Z","name":"tf-volume-naughty-morse","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-06-10T15:31:44.235914Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":"2025-10-08T23:07:09.733039Z","name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:09.733039Z","zone":"fr-par-1"}' headers: Content-Length: - - "448" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6045,11 +5998,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af6d2ded-e7cd-4389-be35-f4f5b68cab6d + - c62736bb-069f-43ef-ad1c-102474c59da3 status: 200 OK code: 200 - duration: 101.907106ms - - id: 122 + duration: 41.442647ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6064,8 +6017,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: DELETE response: proto: HTTP/2.0 @@ -6082,9 +6035,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6092,11 +6045,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 117f9fb4-bfd8-49db-a93b-5f14fe4fb616 + - f2b952eb-d01f-479a-9a45-9e08f0d50975 status: 204 No Content code: 204 - duration: 140.512676ms - - id: 123 + duration: 66.11121ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6111,8 +6064,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: DELETE response: proto: HTTP/2.0 @@ -6129,9 +6082,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6139,11 +6092,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13cf9470-620e-4ef4-905a-e912d58bb1a8 + - af98c87d-02d3-4d5a-834e-a9fd51517dbe status: 204 No Content code: 204 - duration: 155.929188ms - - id: 124 + duration: 77.691636ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6158,8 +6111,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 method: GET response: proto: HTTP/2.0 @@ -6169,7 +6122,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"cb7d5d1e-394a-4ee5-8b96-01fe2b77f3f7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' headers: Content-Length: - "127" @@ -6178,9 +6131,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6188,11 +6141,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0559cdaa-7257-46a2-9621-d18401523493 + - 23c00072-190c-4c73-8b9b-080a26f339ad status: 404 Not Found code: 404 - duration: 70.742289ms - - id: 125 + duration: 36.100844ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6207,8 +6160,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52117568-a10b-45ce-9c83-ea2dcefb5b07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 method: GET response: proto: HTTP/2.0 @@ -6218,7 +6171,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"52117568-a10b-45ce-9c83-ea2dcefb5b07","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","type":"not_found"}' headers: Content-Length: - "127" @@ -6227,9 +6180,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6237,11 +6190,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9701360f-7ce8-4fe4-bdc9-92b4ea7983af + - dc3bc8e4-acbe-4a56-bddf-466dcff35fcb status: 404 Not Found code: 404 - duration: 109.969866ms - - id: 126 + duration: 45.903387ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6256,8 +6209,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a method: GET response: proto: HTTP/2.0 @@ -6267,7 +6220,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6b9c7c60-5c2f-4145-91d1-f07c9f2a62d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","type":"not_found"}' headers: Content-Length: - "143" @@ -6276,9 +6229,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:07:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6286,7 +6239,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07208f1c-933f-41d1-90fc-6e8a3995600c + - 2422bafc-2ea6-4208-bde0-49ddcaf080b1 status: 404 Not Found code: 404 - duration: 131.049499ms + duration: 41.16378ms diff --git a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml index 683730123..43cdf86d7 100644 --- a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml +++ b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:16 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c1c6f54-af31-4edb-a1db-e50f7bf0c7d3 + - 6d7ed71e-8db3-4166-b2bf-80a946edd8cd X-Total-Count: - "75" status: 200 OK code: 200 - duration: 127.755125ms + duration: 53.017189ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:16 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3f1d8f-76c5-4e20-beff-66aeb3a49a8f + - 4f63e428-dabb-4be5-afa9-6b539813bb94 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 34.20025ms + duration: 80.688773ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:16 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4c031c8-cda7-4c5d-8a9a-d444bce93d1f + - ccd66dc9-7eb5-4f1b-9025-764beee1fbb1 status: 200 OK code: 200 - duration: 60.0045ms + duration: 53.89255ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 277 + content_length: 273 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-nostalgic-keller","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-srv-adoring-ride","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 480e61ae-150a-438c-8c86-8faaddda9ccb + - 80f2c445-6a06-4ce9-8f0c-9bbc7b7177de status: 201 Created code: 201 - duration: 417.248958ms + duration: 371.901998ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32f42540-b266-46c7-aea7-3ff3b043427b + - e311dba6-549d-4635-9897-a717d3e20743 status: 200 OK code: 200 - duration: 103.247ms + duration: 75.333391ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f6ba810-4995-47bc-b8b8-797f8b63c316 + - d6aaa7e2-4d35-4334-9c8c-318e7cd97367 status: 200 OK code: 200 - duration: 95.76725ms + duration: 82.313031ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdce8f87-efe7-4ada-af9e-a7e392462df8 + - df5597f0-512d-4de1-8fec-4dd55a4f0b3a status: 200 OK code: 200 - duration: 107.337458ms + duration: 92.142191ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -380,20 +380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d245dca8-c77c-481f-818c-dbc025bc0f50 + - 753a0de0-2498-4f22-a7ac-6961a6ee79f4 status: 200 OK code: 200 - duration: 79.762917ms + duration: 67.155731ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0df893e-088c-416f-b818-69142ef9dd8b + - 81ba9020-1bd3-47de-8b6a-f85b74b50f57 status: 200 OK code: 200 - duration: 59.608916ms + duration: 62.809069ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,12 +501,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c091c316-51a0-4c60-9aa4-5d9603b29da8 + - ad79778c-fb93-4169-9369-82d7273475d7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 68.223125ms + duration: 1.142634006s - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:17 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7e4aeb-5d3c-4bcf-8c8a-82348f94a01e + - 800da1de-ff45-41db-b726-45033144eaad status: 200 OK code: 200 - duration: 95.427958ms + duration: 90.429016ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0acad74f-0cea-4988-a54d-3d49b8329601 + - 33d5edf9-2475-42fa-b000-7b288cb15302 status: 200 OK code: 200 - duration: 91.215125ms + duration: 86.292042ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 000b2f47-edc5-4d3e-ad50-0ece2a12b0c1 + - ebb0535a-0431-417b-9547-6dd1704fc1d4 status: 200 OK code: 200 - duration: 86.196916ms + duration: 61.8064ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e96defc-d509-45bc-af6a-32b553b78f41 + - 2368953e-89f5-4be8-8508-7cc48e3a7a67 status: 200 OK code: 200 - duration: 61.256166ms + duration: 51.578774ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cc52ab8-4300-4ebb-ba2f-6bb2a8adb27c + - 9f5dfc5c-e1e1-4bd5-a132-ef39eee00402 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.036458ms + duration: 43.155108ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c13e8e3b-ba0e-4d04-992c-0e97ddc24414 + - 3d6e306e-9cb3-4ea3-9e10-57fec4d4b2e0 status: 200 OK code: 200 - duration: 94.442792ms + duration: 86.850176ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ba98e8f-64a3-42cb-b4e5-ba926d39da3d + - 9ac2e729-1b73-4cd1-9dd1-7e159f3ebfdc status: 200 OK code: 200 - duration: 56.952917ms + duration: 48.708666ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81a0b290-95ac-4301-9cd3-10c914df7fb4 + - 7563f20c-ef68-4c0b-a83e-fc5e377778c5 status: 200 OK code: 200 - duration: 59.892166ms + duration: 62.444262ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -938,11 +938,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,12 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52d018b5-7c51-47b1-9c33-f14c499d63b7 + - 277d6098-c0e5-4ff7-8993-7e2727139f18 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 73.383708ms + duration: 63.621723ms - id: 19 request: proto: HTTP/1.1 @@ -971,7 +971,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58584c8e-c43c-468b-90e3-637dbfcee6a8 + - ec8ca855-a3ed-4175-8d8d-5f4e3af31a16 status: 200 OK code: 200 - duration: 59.766208ms + duration: 64.609313ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 701dbe79-ac89-4dda-b55b-c93eab16009a + - a55dbfee-008f-4506-9902-e1a2dbad7f6f status: 200 OK code: 200 - duration: 120.544ms + duration: 94.336375ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fee1661-1080-461b-bed4-3a677ba482e3 + - 99a7ba64-8849-4531-9d7f-a34f2be62272 status: 200 OK code: 200 - duration: 126.849166ms + duration: 55.896152ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 2163 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 233b63b2-f946-41ce-a29b-012a1dd46ee0 + - 46c8fd62-7d51-467e-8929-245631696b98 status: 200 OK code: 200 - duration: 68.210125ms + duration: 88.224582ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca47ea0d-12ba-4058-ac42-9e78c9fa46e8 + - aeae4245-7ddc-468f-abd0-0d23e4f992b2 status: 200 OK code: 200 - duration: 65.131875ms + duration: 53.950788ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a019296-15a1-4a13-8b2c-34b89ea31d33 + - c39f20a7-8ed8-4b90-88a3-a8b92e69d4d7 status: 200 OK code: 200 - duration: 71.761834ms + duration: 61.951209ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c034d56-4646-4489-880f-a0a51ade6469 + - 8198627c-c112-472f-830e-a8fa91dd6100 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.127208ms + duration: 58.316576ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a5fb39-1a3e-4b7d-a082-0491ed03d877 + - 188a72ba-c2a9-471d-803f-0dbed921063b status: 200 OK code: 200 - duration: 65.268209ms + duration: 52.797ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -1387,11 +1387,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,12 +1399,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7027fc0-683a-45e3-a85d-831efbbb97c6 + - d21caf1b-922a-45d7-93d8-a93b4abc4384 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.680708ms + duration: 64.588605ms - id: 28 request: proto: HTTP/1.1 @@ -1420,8 +1420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1429,20 +1429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94f0612-4b75-4b34-9fc0-58955ed60735 + - 90ffd5f4-bb88-46dd-aadd-7394b3062b0a status: 200 OK code: 200 - duration: 91.20575ms + duration: 120.899294ms - id: 29 request: proto: HTTP/1.1 @@ -1469,8 +1469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/5cf1c79e-46b5-40d7-8eaa-51f76f099837 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 387 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' headers: Content-Length: - - "362" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64255cb8-560b-42aa-9b01-069fc0574da4 + - 9dd0a82b-b6de-4175-b1d8-40d494e29fe8 status: 200 OK code: 200 - duration: 62.77925ms + duration: 58.002604ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1527,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d7e936a-aa5c-48b6-9ab0-772fffb94000 + - 978326c9-6d9b-413f-87a7-8ea91c9e4fea status: 200 OK code: 200 - duration: 104.251292ms + duration: 117.712229ms - id: 31 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1576,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aed00740-b804-4d15-8760-277596094fe1 + - 3109b07e-3326-4595-8496-3028b3bb546a status: 200 OK code: 200 - duration: 92.876417ms + duration: 87.260726ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cd95f91-1ef8-4bb0-95d0-d0a96c8782e0 + - 2988d8ef-ab6e-4866-98f3-710028e1fe21 status: 200 OK code: 200 - duration: 134.358208ms + duration: 95.761785ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/5cf1c79e-46b5-40d7-8eaa-51f76f099837 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 method: GET response: proto: HTTP/2.0 @@ -1674,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 387 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' headers: Content-Length: - - "362" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c1f01a8-a4bb-4828-974f-ba968711db29 + - 92d0a7c6-296d-4ec2-b3d3-a01149007307 status: 200 OK code: 200 - duration: 122.609292ms + duration: 43.836901ms - id: 34 request: proto: HTTP/1.1 @@ -1714,8 +1714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1723,20 +1723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6db641f9-a39f-44c0-9068-db6f31a7738e + - 72f6df5a-e914-484d-a722-c94b0780212e status: 200 OK code: 200 - duration: 186.180083ms + duration: 83.801819ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1772,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53ba3afc-a8b8-4cca-9a31-1c2285269ab6 + - 4770d30e-a8fb-43ee-bd13-4f7040a239fb status: 200 OK code: 200 - duration: 120.199667ms + duration: 103.53207ms - id: 36 request: proto: HTTP/1.1 @@ -1812,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1821,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee1605f5-67ae-4914-be29-5889cce4c8ad + - e0568852-3090-47af-8ab7-56116bb5e989 status: 200 OK code: 200 - duration: 110.189167ms + duration: 100.948172ms - id: 37 request: proto: HTTP/1.1 @@ -1861,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1870,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb303d83-f34a-4108-ad67-99075b048499 + - fbb3c9ea-b927-4822-8d0b-fc45d9898694 status: 200 OK code: 200 - duration: 97.769417ms + duration: 103.635802ms - id: 38 request: proto: HTTP/1.1 @@ -1910,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1919,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95d66b5a-0a4d-4f11-b94e-8d9161ad8363 + - 1b12d009-ed0d-4f89-b09a-f2175ab65cca status: 200 OK code: 200 - duration: 115.422417ms + duration: 92.003081ms - id: 39 request: proto: HTTP/1.1 @@ -1959,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -1968,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:19 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b6ecb43-174c-4b86-b4f1-b4dc0bbbcea9 + - 9f9d1916-8deb-47e9-8fdc-14cb108f782f status: 200 OK code: 200 - duration: 114.422416ms + duration: 75.921018ms - id: 40 request: proto: HTTP/1.1 @@ -2008,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 467c4a2a-12e1-45cb-aa4b-d7b5d4e36e15 + - cb179598-1f5a-40bb-93ab-bac1cfb227c1 status: 200 OK code: 200 - duration: 64.523375ms + duration: 53.961637ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c10e6ea1-544e-4e8a-89e9-48b7fdda6c7a + - 9855ed9a-6b27-4828-90b1-93baa0df7ba4 status: 200 OK code: 200 - duration: 77.307792ms + duration: 43.240275ms - id: 42 request: proto: HTTP/1.1 @@ -2106,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -2126,9 +2126,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab5f1e89-7dc0-4790-ba24-53f664b838a7 + - 78b91260-5793-46bb-bc2e-89eb6601b075 status: 200 OK code: 200 - duration: 60.248583ms + duration: 46.856435ms - id: 43 request: proto: HTTP/1.1 @@ -2155,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -2175,9 +2175,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35fbd23b-2c90-41e5-bdc6-0140f57b4752 + - b56f6980-725d-41ac-9fe3-2d5b94389829 status: 200 OK code: 200 - duration: 76.1505ms + duration: 63.093825ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -2224,11 +2224,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,12 +2236,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba5599a6-00b7-4b66-8079-c4cc2e2889e1 + - 26f49724-1792-40fe-8f14-98c40955253f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.741125ms + duration: 56.080983ms - id: 45 request: proto: HTTP/1.1 @@ -2257,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -2277,11 +2277,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,12 +2289,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df737f16-43e5-40a8-ad11-95ed785db230 + - d789f07a-6456-4335-ba36-96c8cbc59783 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.749875ms + duration: 43.519993ms - id: 46 request: proto: HTTP/1.1 @@ -2310,8 +2310,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -2319,20 +2319,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2340,10 +2340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41af0969-6a44-4562-98dc-265ab9702db4 + - e240aa83-a345-48dd-a6d1-28cd785cf126 status: 200 OK code: 200 - duration: 113.937542ms + duration: 84.379297ms - id: 47 request: proto: HTTP/1.1 @@ -2359,8 +2359,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -2368,20 +2368,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,10 +2389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f181fd1-f858-4e50-a1e3-56d339f6083f + - aaf941ff-7530-48a9-882a-3b57e0941170 status: 200 OK code: 200 - duration: 90.327708ms + duration: 83.426773ms - id: 48 request: proto: HTTP/1.1 @@ -2408,7 +2408,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2417,20 +2417,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,10 +2438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa3b660a-28a4-4384-b0fc-9da37ba2a500 + - e34a4741-e843-4223-955b-ba01697da4b1 status: 200 OK code: 200 - duration: 118.998125ms + duration: 41.773768ms - id: 49 request: proto: HTTP/1.1 @@ -2457,7 +2457,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2466,20 +2466,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2487,10 +2487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f888f707-2d12-4009-bfe2-4d53bae78106 + - 419218f7-ab89-434e-8297-d395e44a594c status: 200 OK code: 200 - duration: 116.515417ms + duration: 43.042859ms - id: 50 request: proto: HTTP/1.1 @@ -2506,8 +2506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -2515,20 +2515,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b0f6eec-c587-459f-9e53-820fb760b15a + - d1424923-24aa-426d-88e0-aaa4ebc99779 status: 200 OK code: 200 - duration: 117.773875ms + duration: 93.095124ms - id: 51 request: proto: HTTP/1.1 @@ -2555,8 +2555,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -2564,20 +2564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 2163 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,10 +2585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc00504b-16a1-4d11-b8f7-04793a85d0bd + - d6324bb1-ec3c-43bf-a407-96c131010f1a status: 200 OK code: 200 - duration: 54.166167ms + duration: 88.867252ms - id: 52 request: proto: HTTP/1.1 @@ -2604,8 +2604,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -2613,20 +2613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,10 +2634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9a971a6-ff05-4e74-b878-281069e6ab83 + - afe9bcf8-2f07-4517-95a4-d882a0753afb status: 200 OK code: 200 - duration: 117.311291ms + duration: 61.410626ms - id: 53 request: proto: HTTP/1.1 @@ -2653,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -2662,20 +2662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 523 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93db91ae-a55d-4c4b-8d0c-51ea46c4caa2 + - c2368d93-6d62-40c7-a0e6-baa0e30e0ebf status: 200 OK code: 200 - duration: 65.27425ms + duration: 63.022473ms - id: 54 request: proto: HTTP/1.1 @@ -2702,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -2711,22 +2711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2734,12 +2732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304cfa9b-433e-45bc-9345-273b0a8c0678 - X-Total-Count: - - "0" + - ca83bbd3-5fdc-444b-b92a-e6afd12f4dda status: 200 OK code: 200 - duration: 50.126042ms + duration: 48.62433ms - id: 55 request: proto: HTTP/1.1 @@ -2755,8 +2751,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -2764,20 +2760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "527" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,10 +2781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ce65c9-e34d-44ff-9cab-fb1104fd8719 + - b20f3c3e-b313-465e-aa8c-fae217892a43 status: 200 OK code: 200 - duration: 55.092833ms + duration: 46.652296ms - id: 56 request: proto: HTTP/1.1 @@ -2804,8 +2800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -2813,20 +2809,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,10 +2832,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aec5b73b-d92a-4c0c-a0d5-139b3eb59983 + - 8d14d722-c676-4caa-96de-1b48c89ab202 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 58.221708ms + duration: 55.932789ms - id: 57 request: proto: HTTP/1.1 @@ -2853,8 +2853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -2873,11 +2873,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,12 +2885,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26a92a2a-b95e-48cd-bbe8-6db9db25e5b9 + - 386abed3-d7f4-46de-b6fb-f9a02e0da4df X-Total-Count: - "0" status: 200 OK code: 200 - duration: 69.904083ms + duration: 52.1008ms - id: 58 request: proto: HTTP/1.1 @@ -2906,7 +2906,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2915,20 +2915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,10 +2936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5e74b2b-1a8f-4e93-a786-429471859598 + - 353bd61f-a79a-4de5-9c75-721381cf57bd status: 200 OK code: 200 - duration: 51.694417ms + duration: 46.995392ms - id: 59 request: proto: HTTP/1.1 @@ -2955,8 +2955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -2964,20 +2964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,10 +2985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59769bc9-7983-40ec-a0a9-a81d34aaaa56 + - 1c6208b3-723f-47f6-836d-f3b1d65920eb status: 200 OK code: 200 - duration: 123.754542ms + duration: 84.936329ms - id: 60 request: proto: HTTP/1.1 @@ -3004,8 +3004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3013,20 +3013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddc36e01-aade-4930-a7e6-554fb7e3cf36 + - 5c97b37d-b52b-48c7-a008-788d4657e73f status: 200 OK code: 200 - duration: 107.078375ms + duration: 88.913777ms - id: 61 request: proto: HTTP/1.1 @@ -3053,8 +3053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -3062,20 +3062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,10 +3083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a45891-c5bf-4585-ab5b-e0936b359d7d + - 1ca44cf1-70df-466c-a6c5-a54f9ded6165 status: 200 OK code: 200 - duration: 54.571209ms + duration: 60.984877ms - id: 62 request: proto: HTTP/1.1 @@ -3102,8 +3102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -3111,20 +3111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 523 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,10 +3132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a00f1cb1-332e-4c12-b785-50d1eb51339e + - 842fcb25-008c-4677-bf5a-dadcee9ef213 status: 200 OK code: 200 - duration: 57.129458ms + duration: 59.635217ms - id: 63 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -3171,9 +3171,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,10 +3181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0292a53-db39-4c1a-aa70-ce5aeaabc4c7 + - 95cc41d4-846d-4312-bb0a-72a5dd80d8e8 status: 200 OK code: 200 - duration: 55.173959ms + duration: 53.592774ms - id: 64 request: proto: HTTP/1.1 @@ -3200,8 +3200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -3209,20 +3209,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,10 +3232,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ac9ee75-7084-4955-a378-9db66f616f32 + - 83b85817-0b7e-4e22-98ed-4da3736be820 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 58.932583ms + duration: 47.020618ms - id: 65 request: proto: HTTP/1.1 @@ -3249,8 +3253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -3258,22 +3262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3281,12 +3283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31f04f6b-141e-44e5-ae36-894cd3345c65 - X-Total-Count: - - "0" + - fbabe6cb-4295-43aa-aa3e-3094acce8b25 status: 200 OK code: 200 - duration: 55.148125ms + duration: 55.106257ms - id: 66 request: proto: HTTP/1.1 @@ -3302,8 +3302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -3322,11 +3322,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3334,12 +3334,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c966225e-6e58-4bb4-a3db-c216dc652b2b + - 523062dc-667c-4aba-9ded-3598f3c9beba X-Total-Count: - "0" status: 200 OK code: 200 - duration: 72.747333ms + duration: 65.47171ms - id: 67 request: proto: HTTP/1.1 @@ -3355,8 +3355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3364,20 +3364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:21 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3385,10 +3385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7dcec54-76cf-4d5b-b00b-df65670ab05e + - 61653894-5df3-45ea-9a2a-995bb4313325 status: 200 OK code: 200 - duration: 123.300375ms + duration: 86.456115ms - id: 68 request: proto: HTTP/1.1 @@ -3404,8 +3404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3413,20 +3413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3434,10 +3434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b39e8f5-58c2-40b7-8400-6905359a1856 + - ef6f5e60-b333-46e1-9a0f-47302bfb030d status: 200 OK code: 200 - duration: 189.097958ms + duration: 73.812422ms - id: 69 request: proto: HTTP/1.1 @@ -3453,7 +3453,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -3462,20 +3462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3483,10 +3483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9ef69e9-64b0-4cb7-b4e7-69baaae5ba4a + - 60cca05a-39aa-4c2f-8d7f-62a35d2669e8 status: 200 OK code: 200 - duration: 55.888542ms + duration: 45.004092ms - id: 70 request: proto: HTTP/1.1 @@ -3502,8 +3502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3511,20 +3511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3532,10 +3532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55bd8a7a-b4ac-4025-871e-796e29989593 + - 30dac36e-5f73-4ec8-b82f-34502a3f8c77 status: 200 OK code: 200 - duration: 88.174167ms + duration: 89.115722ms - id: 71 request: proto: HTTP/1.1 @@ -3551,8 +3551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3560,20 +3560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 2163 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,10 +3581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2278e26a-cfd1-42c3-94db-10dac05e7c7a + - f2821887-a08c-4ceb-81a8-26bb293f294b status: 200 OK code: 200 - duration: 68.365959ms + duration: 80.916292ms - id: 72 request: proto: HTTP/1.1 @@ -3600,8 +3600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -3609,20 +3609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3630,10 +3630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdec91ed-186d-4c33-86cd-27ad9475ea88 + - 361fa0df-7759-44d3-b2f5-020a1d87d16b status: 200 OK code: 200 - duration: 110.66325ms + duration: 71.234275ms - id: 73 request: proto: HTTP/1.1 @@ -3649,8 +3649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -3658,20 +3658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 523 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3679,10 +3679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 511cd423-fc4e-4f3d-9e76-76f4e867732f + - 8204c36d-30d7-4a2a-9741-365f7529d8a8 status: 200 OK code: 200 - duration: 55.668ms + duration: 60.699288ms - id: 74 request: proto: HTTP/1.1 @@ -3698,8 +3698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -3707,20 +3707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "527" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,10 +3728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99fbbd0e-a82c-4916-b5e1-57b5fafedca1 + - 69bfffd4-bd17-419e-ac76-91bc5ff851d8 status: 200 OK code: 200 - duration: 66.032ms + duration: 51.153976ms - id: 75 request: proto: HTTP/1.1 @@ -3747,8 +3747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -3756,22 +3756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,12 +3777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e203d2a2-ade7-4a08-97f5-f5401dbd682d - X-Total-Count: - - "0" + - b9716126-abe9-4b2b-9fc7-5b1349b9e3a9 status: 200 OK code: 200 - duration: 61.247042ms + duration: 47.704365ms - id: 76 request: proto: HTTP/1.1 @@ -3800,8 +3796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -3809,20 +3805,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,10 +3828,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f4c64d6-8580-4b81-8cd2-079ec8f26b1e + - e545f46d-4fb1-48f6-a8f1-e12cc538bbdc + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 55.090333ms + duration: 50.078633ms - id: 77 request: proto: HTTP/1.1 @@ -3849,8 +3849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -3869,11 +3869,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3881,12 +3881,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b885c7c0-e373-41d9-b817-517092b41a35 + - 8f01fa55-8f7f-4595-b1c9-444e65e21a08 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.594959ms + duration: 55.357703ms - id: 78 request: proto: HTTP/1.1 @@ -3902,7 +3902,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -3911,20 +3911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3932,10 +3932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 568415b1-ee6b-4e95-b856-9896b297ae05 + - 87af052f-c61d-40fd-b89d-21e69e2de63b status: 200 OK code: 200 - duration: 44.483541ms + duration: 44.22531ms - id: 79 request: proto: HTTP/1.1 @@ -3951,8 +3951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -3960,20 +3960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3981,10 +3981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7ec0645-5108-4c11-aba6-58723bdfcf62 + - 2a3f379f-d2a4-4801-9c12-07d64a46dabc status: 200 OK code: 200 - duration: 93.594959ms + duration: 86.256524ms - id: 80 request: proto: HTTP/1.1 @@ -4000,8 +4000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/5cf1c79e-46b5-40d7-8eaa-51f76f099837 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 method: GET response: proto: HTTP/2.0 @@ -4009,20 +4009,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 387 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' headers: Content-Length: - - "362" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4030,10 +4030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed46c897-83bc-4103-9edc-80015f731068 + - 0b71573f-eb49-410e-bd5c-06c344b6d2c1 status: 200 OK code: 200 - duration: 46.385333ms + duration: 49.750746ms - id: 81 request: proto: HTTP/1.1 @@ -4049,8 +4049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -4058,20 +4058,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2175" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:22 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4079,10 +4079,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb14ad47-e8fe-4382-a667-bcd70b0297f9 + - 0b08e6d3-10a4-4ab4-a5e6-d6e120325f55 status: 200 OK code: 200 - duration: 101.556208ms + duration: 42.373409ms - id: 82 request: proto: HTTP/1.1 @@ -4098,8 +4098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4107,20 +4107,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 2163 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "397" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4128,10 +4128,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba32f10f-8cfa-426d-83ab-b977aa8bb24c + - d8d8c4b4-4882-400f-a944-6daf4c49c5f6 status: 200 OK code: 200 - duration: 122.477666ms + duration: 98.478846ms - id: 83 request: proto: HTTP/1.1 @@ -4147,8 +4147,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4156,20 +4156,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 2163 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "527" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4177,10 +4177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 949b7b6d-5fdc-4726-acb6-f3595b2d536c + - 7611c7d8-c286-422b-8299-6a805cb057db status: 200 OK code: 200 - duration: 57.748791ms + duration: 80.419401ms - id: 84 request: proto: HTTP/1.1 @@ -4196,8 +4196,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -4205,20 +4205,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 523 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4226,10 +4226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47bf5eb3-76da-41c9-aea2-3a6dcee2a79c + - 4f87f7b0-d15e-44e2-8a3a-72ecbfe41f3d status: 200 OK code: 200 - duration: 84.626792ms + duration: 59.678236ms - id: 85 request: proto: HTTP/1.1 @@ -4245,8 +4245,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -4254,20 +4254,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4275,10 +4275,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 497871ff-44d9-453f-baf2-7d3cc79de0fc + - 88f1be4a-37ad-4973-88c5-0269f94e00f7 status: 200 OK code: 200 - duration: 123.284084ms + duration: 59.28036ms - id: 86 request: proto: HTTP/1.1 @@ -4294,8 +4294,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -4303,22 +4303,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4326,12 +4324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66050f63-04c8-4482-9720-aa0e1b1f7f46 - X-Total-Count: - - "0" + - f6e12714-2975-40f9-9abf-4de92ecf8786 status: 200 OK code: 200 - duration: 74.170458ms + duration: 71.141393ms - id: 87 request: proto: HTTP/1.1 @@ -4347,8 +4343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data method: GET response: proto: HTTP/2.0 @@ -4356,20 +4352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 527 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "527" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4377,10 +4373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b3b2655-44f3-445b-b369-1a0f64987dac + - 14b33aaf-228e-4f80-96b3-7a030855d68f status: 200 OK code: 200 - duration: 74.085125ms + duration: 47.7183ms - id: 88 request: proto: HTTP/1.1 @@ -4396,8 +4392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -4405,20 +4401,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4426,10 +4424,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb49d4ff-6656-4872-afca-90677b1ee9c9 + - f281749f-fec4-46cb-bf92-d204e90df30a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 57.484666ms + duration: 52.584666ms - id: 89 request: proto: HTTP/1.1 @@ -4445,8 +4445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics method: GET response: proto: HTTP/2.0 @@ -4465,11 +4465,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4477,12 +4477,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c4b11cc-30ba-476f-ba72-d46175f1c542 + - b12885d3-e1c2-4512-a714-5dd52c3ca1f9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 71.655292ms + duration: 58.321283ms - id: 90 request: proto: HTTP/1.1 @@ -4498,8 +4498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4507,20 +4507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4528,10 +4528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 019ed1fc-e7ca-4dd3-b492-38ff6dc3fa59 + - 8b06e4a6-9208-42f7-9f22-e298955d9864 status: 200 OK code: 200 - duration: 119.818417ms + duration: 76.379597ms - id: 91 request: proto: HTTP/1.1 @@ -4547,8 +4547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/5cf1c79e-46b5-40d7-8eaa-51f76f099837 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 method: GET response: proto: HTTP/2.0 @@ -4556,20 +4556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 387 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' headers: Content-Length: - - "362" + - "387" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4577,10 +4577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3660c3e-3a0e-4ed3-a197-3f34d3ac4b96 + - fc6600a1-79cf-4cc7-abc7-8d1e55ecc7f1 status: 200 OK code: 200 - duration: 46.947208ms + duration: 47.628184ms - id: 92 request: proto: HTTP/1.1 @@ -4596,8 +4596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4605,20 +4605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4626,10 +4626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59b8255d-579e-44ac-a221-9534225171a9 + - 6a038c20-6749-4e47-9726-d59d392aa8ac status: 200 OK code: 200 - duration: 100.503125ms + duration: 64.574006ms - id: 93 request: proto: HTTP/1.1 @@ -4645,8 +4645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4654,20 +4654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 2163 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "2163" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4675,48 +4675,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 898387fb-9193-4b64-bf99-54910a0b0819 + - 54d53231-804c-44b7-8900-58b6e9ff38af status: 200 OK code: 200 - duration: 120.949083ms + duration: 99.81945ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 158 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"help_message":"server should be stopped","message":"precondition is not respected","precondition":"resource_not_usable","type":"precondition_failed"}' headers: Content-Length: - - "2175" + - "158" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4724,48 +4726,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf76e8ab-5aa3-489f-881d-10b8bb60d9d2 - status: 200 OK - code: 200 - duration: 92.015542ms + - b45225a1-d24b-420e-8b6d-ce375b6e5ad4 + status: 400 Bad Request + code: 400 + duration: 98.755369ms - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2175 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:25:16.868798+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-keller","id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:9b","maintenances":[],"modification_date":"2025-09-08T07:25:16.868798+00:00","name":"tf-srv-nostalgic-keller","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:16.868798+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","name":"tf-srv-nostalgic-keller"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action","href_result":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","id":"453c0ce8-e8ea-475b-85ae-75f66f59be2c","progress":0,"started_at":"2025-10-08T23:04:34.965782+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2175" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:23 GMT + - Wed, 08 Oct 2025 23:04:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/453c0ce8-e8ea-475b-85ae-75f66f59be2c Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4773,10 +4779,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dd679d0-76b5-4109-9c8b-adec1bb79aaf - status: 200 OK - code: 200 - duration: 85.325333ms + - 63739ece-838b-4eb3-a8aa-52cbd91c4633 + status: 202 Accepted + code: 202 + duration: 182.494249ms - id: 96 request: proto: HTTP/1.1 @@ -4792,29 +4798,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2185 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4822,10 +4828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 598d1360-31a5-4b11-bb8a-513a7db6edb3 - status: 404 Not Found - code: 404 - duration: 100.747458ms + - 25ac0021-20fa-4386-bd99-a18d8b402d95 + status: 200 OK + code: 200 + duration: 86.331753ms - id: 97 request: proto: HTTP/1.1 @@ -4841,27 +4847,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2288 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4869,10 +4877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23a27cb4-d62a-47d7-a140-024391c76097 - status: 204 No Content - code: 204 - duration: 119.688ms + - c333010c-5b96-4e0f-a556-49127c619c75 + status: 200 OK + code: 200 + duration: 94.142891ms - id: 98 request: proto: HTTP/1.1 @@ -4888,8 +4896,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4897,20 +4905,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2288 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4918,10 +4926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abd86b2e-6bae-4ea6-94e2-ab08654beff9 - status: 404 Not Found - code: 404 - duration: 82.302042ms + - a9807df6-4f9b-4a6d-8edf-27579bb1f9b3 + status: 200 OK + code: 200 + duration: 83.559975ms - id: 99 request: proto: HTTP/1.1 @@ -4937,8 +4945,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4946,20 +4954,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2288 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4967,10 +4975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c1aa7eb-476f-407a-8082-1494404b8524 - status: 404 Not Found - code: 404 - duration: 92.186042ms + - d8d8113e-38b3-465f-bac7-06a91668157c + status: 200 OK + code: 200 + duration: 69.207204ms - id: 100 request: proto: HTTP/1.1 @@ -4986,8 +4994,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 method: GET response: proto: HTTP/2.0 @@ -4995,20 +5003,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 2319 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:23.922938+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:50.767357+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "450" + - "2319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5016,48 +5024,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11d142b0-a672-4f59-87bf-74246ee3bc88 + - 945d0118-04fa-413f-9171-0ba57b9fbfb2 status: 200 OK code: 200 - duration: 49.091334ms + duration: 89.419396ms - id: 101 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 353 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:25:16.868798+00:00","export_uri":null,"id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","modification_date":"2025-09-08T07:25:23.922938+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action","href_result":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","id":"6af5b1e3-8ed7-4f0d-97d7-2c252d6481e0","progress":0,"started_at":"2025-10-08T23:04:55.571460+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "450" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:55 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6af5b1e3-8ed7-4f0d-97d7-2c252d6481e0 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5065,10 +5077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8038681-43d0-42b3-94df-5e7cb42022e5 - status: 200 OK - code: 200 - duration: 65.52925ms + - 355ed0a1-8abd-43a0-b9f3-ba267c1f4963 + status: 202 Accepted + code: 202 + duration: 174.626527ms - id: 102 request: proto: HTTP/1.1 @@ -5084,29 +5096,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2282 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3be40061-5eae-46aa-ba45-b3f89ce8a4e0","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:55.443358+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5114,10 +5126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33d22778-e742-4c44-97a8-318da429b097 - status: 404 Not Found - code: 404 - duration: 82.680959ms + - 876d1e59-b615-4411-906a-1849583f8217 + status: 200 OK + code: 200 + duration: 90.63712ms - id: 103 request: proto: HTTP/1.1 @@ -5133,27 +5145,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3be40061-5eae-46aa-ba45-b3f89ce8a4e0 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5161,10 +5175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35c766d8-5470-47d5-a298-623f6339ee9f - status: 204 No Content - code: 204 - duration: 85.97125ms + - 87646788-daee-4e24-894a-b1b4de3b723e + status: 404 Not Found + code: 404 + duration: 42.462258ms - id: 104 request: proto: HTTP/1.1 @@ -5180,8 +5194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -5191,7 +5205,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","type":"not_found"}' headers: Content-Length: - "143" @@ -5200,9 +5214,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5210,10 +5224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37972fc7-31dc-4065-8961-a2a098bcf94c + - b9e53322-2ca5-4259-a02d-06c26b9e5dd5 status: 404 Not Found code: 404 - duration: 75.047584ms + duration: 45.349126ms - id: 105 request: proto: HTTP/1.1 @@ -5229,8 +5243,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a39703a0-6903-4e07-972b-33d34f8cbe5e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 method: GET response: proto: HTTP/2.0 @@ -5238,20 +5252,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a39703a0-6903-4e07-972b-33d34f8cbe5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","type":"not_found"}' headers: Content-Length: - - "143" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:24 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5259,7 +5273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 335d5c29-db79-469a-b8c1-e4aeabd28f1a + - 3e1104e6-135c-4ce4-bf39-55a36794afee status: 404 Not Found code: 404 - duration: 78.238167ms + duration: 18.388052ms diff --git a/internal/services/instance/testdata/server-ip-removed.cassette.yaml b/internal/services/instance/testdata/server-ip-removed.cassette.yaml index 908105973..e3c390af1 100644 --- a/internal/services/instance/testdata/server-ip-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ip-removed.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d9a5b74-49d7-44b3-b68a-c719c1fb3944 + - dd055943-bf41-471c-a9d2-e99f1884fdfe status: 201 Created code: 201 - duration: 575.415899ms + duration: 2.07484945s - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 566c6447-73e0-4b33-a4ca-3fc327156d5e + - 304e20f0-614f-4fc9-87ee-64839a448e91 status: 200 OK code: 200 - duration: 102.813619ms + duration: 71.552356ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06d6c41a-c2cd-4834-8517-67d1a481038c + - 13c4f162-e700-43e7-9b52-d5279f183c6c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 124.701899ms + duration: 59.554609ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb5c4d59-5954-4067-827c-5efdca2f3ea5 + - ba065137-6e9e-4992-9ae1-3c0483bc0614 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 61.849334ms + duration: 45.792624ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","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"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93fd26f1-e162-43df-960f-2a89cb04e703 + - 9e7902ff-045c-4cec-aba2-ec2192f32798 status: 200 OK code: 200 - duration: 146.931058ms + duration: 43.936455ms - id: 5 request: proto: HTTP/1.1 @@ -269,13 +269,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ip-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"public_ip":"aa32a17f-7ff6-43c7-843d-039ac411383a","boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-server-ip-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ip":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bc476ba-086c-4114-b746-d4792a9b16e4 + - 07e053eb-0842-4f70-8734-3ef0915ca75d status: 201 Created code: 201 - duration: 1.119349254s + duration: 832.106726ms - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b59473b5-fda5-44ae-9ae9-ecb9527317ad + - 9b2e2773-d260-43a2-8792-13955206e5e8 status: 200 OK code: 200 - duration: 224.772193ms + duration: 100.642256ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f41a00cc-5b80-468c-a9df-3d401606de7a + - f0c01e6b-5e8d-4f5c-806c-75ea83c34902 status: 200 OK code: 200 - duration: 182.10296ms + duration: 94.965089ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d9a7755-5268-47aa-8e4f-a53b152423f0 + - 3ceef03b-b51c-4a1a-b8c6-e82e6c75b147 status: 200 OK code: 200 - duration: 319.203933ms + duration: 114.362835ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea912fab-cf99-41b6-98ad-4e4cda1fb19a + - a8ca4628-3bec-40cf-838f-a54bc872314c status: 404 Not Found code: 404 - duration: 60.237902ms + duration: 35.482895ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.704036Z","id":"f90c6ced-e74c-4dc1-a63f-d6e5c31d89d8","product_resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.704036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 531c854d-513f-47a4-a8c9-28c43cac9b57 + - 00963b91-0720-40a3-abb3-67662b2189c1 status: 200 OK code: 200 - duration: 148.731925ms + duration: 36.019618ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b1b0b16-1adf-4462-81f9-a0b925f35e79 + - 401c717f-aaa5-44c9-b658-12d1dfac8cb0 status: 200 OK code: 200 - duration: 152.654983ms + duration: 63.043893ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8e36efa-4b63-4871-a32e-4385d7a55587 + - f038e926-6893-44f5-ae0f-3503696bf2e4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 157.90579ms + duration: 65.193455ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2d1d5fc-41a9-4879-9af4-1c90c435c0ba + - eba5bed0-470b-42b2-8cd5-a46988658a5a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 177.15988ms + duration: 45.568889ms - id: 14 request: proto: HTTP/1.1 @@ -726,8 +726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 453 + content_length: 455 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "453" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7692bd39-bb41-43cd-a0bd-fe97127c0a73 + - 2d74bb4e-f655-431c-920f-8eb6f90ea652 status: 200 OK code: 200 - duration: 94.577402ms + duration: 77.894685ms - id: 15 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfe2251c-09a1-46f9-bfa4-022b17a93c0c + - 4b1f1393-da67-40bb-90d6-435efe223254 status: 200 OK code: 200 - duration: 225.258013ms + duration: 95.328111ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 996b8473-49b8-4b25-9358-b87d55bd05ba + - cdabc715-202b-44ec-9fdb-2fe25816b59e status: 404 Not Found code: 404 - duration: 47.767925ms + duration: 34.887691ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.704036Z","id":"f90c6ced-e74c-4dc1-a63f-d6e5c31d89d8","product_resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.704036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a3f309d-95b6-4339-877f-be505602a190 + - 60fdf7ca-5309-4d5a-8ec3-cc88b1aa9d59 status: 200 OK code: 200 - duration: 114.44893ms + duration: 45.270386ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23b57ca5-56ed-45e8-b2ef-c3d06906d0ae + - d8f3fa8d-b68d-495c-882a-bee073ea742f status: 200 OK code: 200 - duration: 111.90542ms + duration: 47.339479ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96821e41-4afc-45d3-aa21-873745d5676e + - f9fbcd7f-b88e-4643-a239-12bc3a923444 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 134.917988ms + duration: 60.843426ms - id: 20 request: proto: HTTP/1.1 @@ -1024,8 +1024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 453 + content_length: 455 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "453" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21e0f9d3-dfbb-47f0-afee-555471f4fe05 + - ce85168f-b56f-437c-8b63-86fb9bce3fd0 status: 200 OK code: 200 - duration: 459.166891ms + duration: 78.688966ms - id: 21 request: proto: HTTP/1.1 @@ -1073,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ee3e2ac-9cc7-4d1a-8794-8d1038e9f629 + - 3655690b-1439-42b8-90e4-167c66312fac status: 200 OK code: 200 - duration: 459.043239ms + duration: 120.247165ms - id: 22 request: proto: HTTP/1.1 @@ -1122,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66514e50-438d-44a7-af03-21472ab3161f + - 1a8a1235-094e-4c4e-97a2-19e65564764e status: 404 Not Found code: 404 - duration: 46.998672ms + duration: 22.260159ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.704036Z","id":"f90c6ced-e74c-4dc1-a63f-d6e5c31d89d8","product_resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.704036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c60bb8-7ad8-479c-8804-f86256386e3f + - 9d443014-3506-4584-911f-15ffd59c0dd7 status: 200 OK code: 200 - duration: 128.097838ms + duration: 41.988075ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5af0fc4-d422-46f6-8c67-c80fb911796d + - 96236be3-72e4-4768-bcc4-5a2afed5a582 status: 200 OK code: 200 - duration: 87.474061ms + duration: 56.990569ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0b9f3d0-237f-40c1-8835-b8f6db4c7ad2 + - 1fd99c9c-25f6-4837-8285-861a5378abd8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.798345ms + duration: 54.668487ms - id: 26 request: proto: HTTP/1.1 @@ -1322,8 +1322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb9ae59a-6c05-4f5b-86e9-ec38467c1b28 + - 0423a774-86dc-4bb6-a8b4-8948f941115f status: 200 OK code: 200 - duration: 304.766154ms + duration: 102.837582ms - id: 27 request: proto: HTTP/1.1 @@ -1371,8 +1371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e25f80f1-bc77-40fe-ae47-3e454b7b63fe + - e53c628a-b067-4713-a98c-a5b35c10ce0b status: 200 OK code: 200 - duration: 234.545261ms + duration: 95.039605ms - id: 28 request: proto: HTTP/1.1 @@ -1422,8 +1422,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: PATCH response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,10 +1452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3051154c-643a-4b1b-9eb7-121c1813541a + - e4538099-3874-47dc-888d-f7616f19e4a9 status: 200 OK code: 200 - duration: 423.403609ms + duration: 332.095926ms - id: 29 request: proto: HTTP/1.1 @@ -1471,8 +1471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1480,20 +1480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1501,10 +1501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14e8d211-b4a2-46c8-b042-c5538a5a0cd3 + - 33bf7587-f9ff-497e-8c4d-b51078cc58a5 status: 200 OK code: 200 - duration: 210.21972ms + duration: 101.165926ms - id: 30 request: proto: HTTP/1.1 @@ -1520,8 +1520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1529,20 +1529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 423fa8ea-deed-4dfa-8e26-e8b37436e228 + - 0df38f9d-d280-44b3-a2a2-e35fa731c6b4 status: 200 OK code: 200 - duration: 269.09688ms + duration: 107.860978ms - id: 31 request: proto: HTTP/1.1 @@ -1569,8 +1569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1578,20 +1578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef91dd4f-b192-47da-a06b-cd3d27338d5c + - 91b25324-4fa6-4f1d-957c-ea7dacf548f2 status: 200 OK code: 200 - duration: 277.535024ms + duration: 97.503461ms - id: 32 request: proto: HTTP/1.1 @@ -1618,8 +1618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -1629,7 +1629,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -1638,9 +1638,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a19d7c61-3c37-4548-8edc-24ad3d2402db + - 226cdaf3-983f-41ba-894e-adda01117692 status: 404 Not Found code: 404 - duration: 71.980654ms + duration: 32.027643ms - id: 33 request: proto: HTTP/1.1 @@ -1667,8 +1667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -1678,7 +1678,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.704036Z","id":"f90c6ced-e74c-4dc1-a63f-d6e5c31d89d8","product_resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.704036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04bf7d92-542f-4051-8a6a-138e3c936195 + - 7ea62fb2-533e-4cf3-afda-84c2816716d9 status: 200 OK code: 200 - duration: 104.036382ms + duration: 41.786822ms - id: 34 request: proto: HTTP/1.1 @@ -1716,8 +1716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data method: GET response: proto: HTTP/2.0 @@ -1736,9 +1736,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87b1d8af-c827-41de-abd8-9c9e21ac0414 + - 4861ba93-7389-4b74-8d59-fc36abe0d445 status: 200 OK code: 200 - duration: 158.815606ms + duration: 69.362138ms - id: 35 request: proto: HTTP/1.1 @@ -1765,8 +1765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -1785,11 +1785,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,12 +1797,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd217fd8-d79a-4d34-a8c7-aca2e1651d9c + - acf35b2d-2537-42f5-8a5c-52c420a81414 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 113.397869ms + duration: 54.674458ms - id: 36 request: proto: HTTP/1.1 @@ -1818,8 +1818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -1838,11 +1838,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,12 +1850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bfeaefc-a419-4feb-b7b3-160350f59f67 + - 440ccf8e-22b8-4029-acc6-d0ff299fce4e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 157.98047ms + duration: 65.40702ms - id: 37 request: proto: HTTP/1.1 @@ -1871,8 +1871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1880,20 +1880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1901,10 +1901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2af09876-9dac-48cb-8ca8-7de076e27078 + - e3ecceb1-50a0-486a-921d-19861e4770bf status: 200 OK code: 200 - duration: 199.851826ms + duration: 97.717717ms - id: 38 request: proto: HTTP/1.1 @@ -1920,8 +1920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: GET response: proto: HTTP/2.0 @@ -1929,20 +1929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.221.49","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"cf903c9f-7fb6-4243-8ffc-a4e43022c2b8","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1950,10 +1950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d2429d4-bc37-453f-a09c-a35aa0c07b24 + - 724a2e4c-f200-400b-9c50-f89f9fcad0ff status: 200 OK code: 200 - duration: 115.992144ms + duration: 92.082057ms - id: 39 request: proto: HTTP/1.1 @@ -1969,8 +1969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -1978,20 +1978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1999,10 +1999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e30c6f32-227d-4564-a4cf-993999949fc6 + - a1a4b040-1e5b-4c2b-98d7-5ea448aedb47 status: 200 OK code: 200 - duration: 159.971804ms + duration: 100.747139ms - id: 40 request: proto: HTTP/1.1 @@ -2018,8 +2018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -2029,7 +2029,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -2038,9 +2038,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,10 +2048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd8b3fd1-e8b5-4b8a-a90f-21e48d45035b + - bbeaf5b4-357e-4e3f-a3b6-6181aa23c926 status: 404 Not Found code: 404 - duration: 57.572041ms + duration: 32.797128ms - id: 41 request: proto: HTTP/1.1 @@ -2067,8 +2067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -2078,7 +2078,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.704036Z","id":"f90c6ced-e74c-4dc1-a63f-d6e5c31d89d8","product_resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.704036Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08e35d0a-23b2-4466-8073-d6fdb1eb665d + - 4ac429d8-fc0c-4dc8-825b-fe5403b79f7e status: 200 OK code: 200 - duration: 93.010463ms + duration: 40.165408ms - id: 42 request: proto: HTTP/1.1 @@ -2116,8 +2116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data method: GET response: proto: HTTP/2.0 @@ -2136,9 +2136,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,10 +2146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f567cb0-4566-46a4-b10c-8580e269ad12 + - 898af3e1-c2a2-4bd2-9686-9c6dd77841d5 status: 200 OK code: 200 - duration: 126.139243ms + duration: 48.553548ms - id: 43 request: proto: HTTP/1.1 @@ -2165,8 +2165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics method: GET response: proto: HTTP/2.0 @@ -2185,11 +2185,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2197,12 +2197,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3f55b5d-1009-42e7-96eb-30d294bf473f + - b8bb959b-1a2f-4d8f-8599-be2e8f8e6bb1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 161.546747ms + duration: 44.360209ms - id: 44 request: proto: HTTP/1.1 @@ -2218,8 +2218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -2227,20 +2227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,10 +2248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7e1a5de-b179-489c-a652-835269fbb88a + - daa1a04d-8d5f-4412-bbdb-53947e98c19d status: 200 OK code: 200 - duration: 170.113804ms + duration: 101.867385ms - id: 45 request: proto: HTTP/1.1 @@ -2267,8 +2267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -2276,20 +2276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.508446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4f","maintenances":[],"modification_date":"2025-06-10T15:30:17.508446+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"65769b16-c798-4139-a65a-57a231d040c3","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' headers: Content-Length: - - "1750" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,10 +2297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4792653f-311f-460f-8349-a52e7da47c20 + - 2b878fa0-f943-4244-99df-88e6f8d3f4c2 status: 200 OK code: 200 - duration: 254.774849ms + duration: 37.161664ms - id: 46 request: proto: HTTP/1.1 @@ -2316,8 +2316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aa32a17f-7ff6-43c7-843d-039ac411383a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 method: DELETE response: proto: HTTP/2.0 @@ -2334,9 +2334,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,11 +2344,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 059f40ed-3a6b-4038-93b7-f1f0dab33d7a + - 950ab2c2-bff5-4883-a293-89859a2a46a2 status: 204 No Content code: 204 - duration: 538.395216ms + duration: 315.509617ms - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action","href_result":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","id":"a6b159b2-dd53-4014-aa6d-09e01f8b94b9","progress":0,"started_at":"2025-10-08T23:04:34.285763+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a6b159b2-dd53-4014-aa6d-09e01f8b94b9 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9946487b-5fca-4ab6-8871-34084bc9849a + status: 202 Accepted + code: 202 + duration: 194.892398ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2363,27 +2416,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1794 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:34.137130+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1794" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a581d41a-64ec-4ead-8545-970c1bef51d0 + status: 200 OK + code: 200 + duration: 158.16631ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1928 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"601","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:36.716883+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1928" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04abcd8c-74ea-4be1-a20a-9f4f096a937f + status: 200 OK + code: 200 + duration: 104.161782ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action","href_result":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","id":"304356ab-05a7-401c-84ee-bcd116eed1a5","progress":0,"started_at":"2025-10-08T23:04:39.730574+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:39 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/304356ab-05a7-401c-84ee-bcd116eed1a5 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 52bff9e2-b067-4d24-a171-72183d6b2dfa + status: 202 Accepted + code: 202 + duration: 175.866838ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1891 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"601","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:39.602252+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc782cf0-7729-4784-9196-1c3dcd7824b1 - status: 204 No Content - code: 204 - duration: 330.865251ms - - id: 48 + - 0cbba559-c796-40aa-b69c-9ab2809f93f5 + status: 200 OK + code: 200 + duration: 103.894957ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2410,8 +2616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -2421,7 +2627,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","type":"not_found"}' headers: Content-Length: - "143" @@ -2430,9 +2636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2440,11 +2646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99e11680-75df-4eb2-b79b-3f72d91db4e0 + - e2abdfdc-5511-4360-8b7a-9bd3e6c74849 status: 404 Not Found code: 404 - duration: 93.589469ms - - id: 49 + duration: 57.821774ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2459,8 +2665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -2470,7 +2676,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"65769b16-c798-4139-a65a-57a231d040c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' headers: Content-Length: - "143" @@ -2479,9 +2685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2489,11 +2695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38cfa5d4-caa1-499a-944f-6c9565022723 + - fe0200bd-b65b-472d-b46d-ebd42dd53d14 status: 404 Not Found code: 404 - duration: 89.352073ms - - id: 50 + duration: 31.013012ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2508,8 +2714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: GET response: proto: HTTP/2.0 @@ -2519,7 +2725,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.704036Z","id":"65769b16-c798-4139-a65a-57a231d040c3","last_detached_at":"2025-06-10T15:30:32.395662Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:32.395662Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":"2025-10-08T23:04:40.952846Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:40.952846Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -2528,9 +2734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2538,11 +2744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2acfb28a-ae90-4e9a-9b71-b184d739d734 + - f4be66c9-6a6a-42b4-b2c1-cef8bd16b83d status: 200 OK code: 200 - duration: 86.942864ms - - id: 51 + duration: 34.188203ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2557,8 +2763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/65769b16-c798-4139-a65a-57a231d040c3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af method: DELETE response: proto: HTTP/2.0 @@ -2575,9 +2781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,11 +2791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0b63f23-5527-4099-ba78-3f45bb1f0d16 + - ef5e3480-224c-49f7-b299-28067b3bc09e status: 204 No Content code: 204 - duration: 138.966029ms - - id: 52 + duration: 73.825331ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2604,8 +2810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c42eb26f-87ac-46a0-add7-15920d6b0b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 method: GET response: proto: HTTP/2.0 @@ -2615,7 +2821,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c42eb26f-87ac-46a0-add7-15920d6b0b8c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","type":"not_found"}' headers: Content-Length: - "143" @@ -2624,9 +2830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,7 +2840,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87f17310-064d-41d6-a2ad-e15d78ee35ad + - 919d5986-7723-4ede-a9f6-15b66c9e6e5a status: 404 Not Found code: 404 - duration: 93.639784ms + duration: 38.543141ms diff --git a/internal/services/instance/testdata/server-ips-removed.cassette.yaml b/internal/services/instance/testdata/server-ips-removed.cassette.yaml index 2c4099c58..1651ac2f4 100644 --- a/internal/services/instance/testdata/server-ips-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ips-removed.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f35545b-2916-4e2a-baf0-83e98997d039 + - c78258c7-161d-4834-9f92-f9f52ad27c8a status: 201 Created code: 201 - duration: 613.739011ms + duration: 307.73111ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f82d9cae-af69-4c90-a381-e5458e64b45b + - fc8c2be4-83af-4e00-b48e-fcd95d894c87 status: 200 OK code: 200 - duration: 164.462256ms + duration: 64.212591ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a13f0986-ac27-440b-935c-34c92be2138d + - 256c0a7a-34ea-4f79-8530-d9860ef3e08f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 97.421857ms + duration: 82.282889ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62ac7786-1df2-4470-8a99-a2b90db00246 + - fb1be9aa-b759-41a3-b721-473ced341555 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 83.929643ms + duration: 39.755362ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","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"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f379544-c712-448e-b85e-a06a4faa8a57 + - 02c18732-7455-461f-98ab-f946234f9897 status: 200 OK code: 200 - duration: 85.509236ms + duration: 52.089106ms - id: 5 request: proto: HTTP/1.1 @@ -269,13 +269,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"public_ips":["24d12111-e484-4cba-aca8-1984cca2cf55"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-server-ips-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["c429e36b-083d-4ad8-9f47-1a6edc00f1b9"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75af4ed6-c621-4688-97f7-61bb28fbf83b + - 3a72dc8a-fb79-4899-9157-4b135ee4c5ff status: 201 Created code: 201 - duration: 1.218566868s + duration: 872.791546ms - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c10c439f-80e7-4217-ac64-03929352bbbd + - 0c49389e-50cd-45ec-927c-5ec30aedf095 status: 200 OK code: 200 - duration: 246.98435ms + duration: 92.130268ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e719f02e-2869-4dd9-8105-0079af9371ce + - 24e2d6f7-848b-4492-8bb5-c5c70e82b0a6 status: 200 OK code: 200 - duration: 217.700901ms + duration: 97.292528ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8014137c-f569-4e87-ba53-e5796934729b + - 368696cf-b31b-4bc0-b24d-bb8fdf2e6615 status: 200 OK code: 200 - duration: 260.071795ms + duration: 94.257376ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fec467cf-4641-4086-861e-a4226e9c3c00 + - 9e8d0c24-399c-4db6-b677-1d13f01c697a status: 404 Not Found code: 404 - duration: 76.386157ms + duration: 39.443725ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.700266Z","id":"80fee123-394b-4522-9392-8f2e4a6a045c","product_resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.700266Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81610f3c-e2b3-445d-b14d-79af4ab90d72 + - 595ee5bf-b5e1-4605-95d7-6db2118fd9f9 status: 200 OK code: 200 - duration: 95.037075ms + duration: 40.673292ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0fc600d-420a-4608-b1a8-f23f00fed954 + - 386c45cd-4977-4db0-b93a-0980c1a885ba status: 200 OK code: 200 - duration: 102.429779ms + duration: 49.712784ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dfd7228-4d35-4523-b9dc-6eea794a640e + - 53c7c1e5-8fc9-4f9d-95dc-ea29f7f1e66c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 207.976794ms + duration: 52.993511ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ade8e0bf-eae9-4043-b164-ef90da629506 + - 48bad170-f76c-45a8-9b08-9a0184a8e413 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 125.762608ms + duration: 53.904739ms - id: 14 request: proto: HTTP/1.1 @@ -726,8 +726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 454 + content_length: 456 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"968c7554-8f6e-4762-9986-759c4556b08e","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "454" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f997b6-7156-457f-8eaa-528319f14e64 + - a809be36-dfde-4823-b447-fb0a5cbc3d15 status: 200 OK code: 200 - duration: 109.117351ms + duration: 79.695155ms - id: 15 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fee0a33a-468e-479e-8f76-2ba5661103ea + - 7c0aadde-18a9-488a-a28e-7eba350c419b status: 200 OK code: 200 - duration: 229.910349ms + duration: 115.506874ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14ef682d-c39e-4800-84de-7e790402a946 + - 0604623c-9760-476d-9852-80f7613813fb status: 404 Not Found code: 404 - duration: 60.55184ms + duration: 25.65169ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.700266Z","id":"80fee123-394b-4522-9392-8f2e4a6a045c","product_resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.700266Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b811397-2763-45cd-b0f5-65c14a65fcdd + - 3d1f195f-331e-4017-a99f-27b7c72f224e status: 200 OK code: 200 - duration: 99.456933ms + duration: 74.332494ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90fcffe2-272d-4462-8fcc-f493b485b935 + - 4743edcf-8a6e-4878-9287-d4f822fe2410 status: 200 OK code: 200 - duration: 130.528997ms + duration: 48.142116ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc7495c6-3989-42eb-96b9-7935accfe083 + - 203234a0-c9b8-43f7-8a8f-32d79536d2cf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 129.878396ms + duration: 49.610074ms - id: 20 request: proto: HTTP/1.1 @@ -1024,8 +1024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 454 + content_length: 456 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"968c7554-8f6e-4762-9986-759c4556b08e","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "454" + - "456" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe5b13f8-9b4f-4f57-8ae3-ea789e4fe0cf + - 83556173-3f83-4701-8209-c40b8f5ffde7 status: 200 OK code: 200 - duration: 546.809528ms + duration: 81.469111ms - id: 21 request: proto: HTTP/1.1 @@ -1073,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1e7c388-3fa9-4e89-8d76-11a194689692 + - 68ea0550-0994-465e-b193-8f4e6064863d status: 200 OK code: 200 - duration: 544.190275ms + duration: 112.423653ms - id: 22 request: proto: HTTP/1.1 @@ -1122,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1eb1493a-760d-4c83-b145-a3f18a2c8aac + - b67f5e16-776e-4b2e-aee2-1d9982aa250e status: 404 Not Found code: 404 - duration: 48.846157ms + duration: 26.949313ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.700266Z","id":"80fee123-394b-4522-9392-8f2e4a6a045c","product_resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.700266Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99ee4c3f-a097-44de-a10c-195cccf0627f + - 73dfc198-99c4-4f67-801a-e8ef469d11aa status: 200 OK code: 200 - duration: 152.476067ms + duration: 45.09414ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcb094d7-aba8-411b-800f-392d1e5ce894 + - 1e73b703-9706-44a6-af73-c8273708d550 status: 200 OK code: 200 - duration: 152.089051ms + duration: 44.815774ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1d50793-718a-4458-9af7-24c60a4bb708 + - a948c62f-797c-4940-880a-c610672615ca X-Total-Count: - "0" status: 200 OK code: 200 - duration: 120.534473ms + duration: 70.220978ms - id: 26 request: proto: HTTP/1.1 @@ -1322,8 +1322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c20eef33-2e66-43e9-908d-de339a30ed00 + - 8b74148e-7f30-4a59-9892-8515e9854741 status: 200 OK code: 200 - duration: 228.589842ms + duration: 101.170229ms - id: 27 request: proto: HTTP/1.1 @@ -1371,8 +1371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.135.95","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e1dd26d-cbf9-41a1-b0b4-bc57582f3252 + - a22d6e9e-f786-4070-8ab3-4b1252a1c65b status: 200 OK code: 200 - duration: 292.925598ms + duration: 107.602192ms - id: 28 request: proto: HTTP/1.1 @@ -1422,8 +1422,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: PATCH response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,10 +1452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15c39a98-e180-4946-a692-36fd0c7e900a + - f316edba-9d51-4a3b-955d-74934fbbd951 status: 200 OK code: 200 - duration: 418.105744ms + duration: 349.38331ms - id: 29 request: proto: HTTP/1.1 @@ -1471,8 +1471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1480,20 +1480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1501,10 +1501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99cadbeb-ad80-464e-bf61-efde195b252e + - a706de1e-f1cf-4aa9-a63b-9a88ebe25cc6 status: 200 OK code: 200 - duration: 205.235032ms + duration: 128.073257ms - id: 30 request: proto: HTTP/1.1 @@ -1520,8 +1520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1529,20 +1529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86309b47-833b-44e8-b25f-7f2f26e95560 + - e8a1b539-ed9a-48a4-8a9e-8faba1cea634 status: 200 OK code: 200 - duration: 255.429067ms + duration: 111.181762ms - id: 31 request: proto: HTTP/1.1 @@ -1569,8 +1569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -1580,7 +1580,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -1589,9 +1589,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c969c05-35fe-4286-87b9-c3ec289880b2 + - e5cf89c7-e7ab-4158-9b6e-e1761000c913 status: 404 Not Found code: 404 - duration: 55.250498ms + duration: 35.495021ms - id: 32 request: proto: HTTP/1.1 @@ -1618,8 +1618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -1629,7 +1629,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.700266Z","id":"80fee123-394b-4522-9392-8f2e4a6a045c","product_resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.700266Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1638,9 +1638,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4389b7-4baf-4e70-9a05-0b498962d92a + - 508b5783-1a5f-489d-ba10-e4ff0e15b70c status: 200 OK code: 200 - duration: 83.168095ms + duration: 67.536546ms - id: 33 request: proto: HTTP/1.1 @@ -1667,8 +1667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data method: GET response: proto: HTTP/2.0 @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f603ce34-4ca8-4d7b-9366-8e92d72cbd3f + - 5591c09a-dbc1-4487-a7a9-f8ccb9b1c42a status: 200 OK code: 200 - duration: 186.339785ms + duration: 54.346456ms - id: 34 request: proto: HTTP/1.1 @@ -1716,8 +1716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -1736,11 +1736,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,12 +1748,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5989c95-631c-4b29-82c8-0b90c05d1a03 + - 343e00c6-6eb8-456c-90d6-32032be78352 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 162.298087ms + duration: 71.405151ms - id: 35 request: proto: HTTP/1.1 @@ -1769,8 +1769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -1789,11 +1789,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,12 +1801,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b538e3c2-efe1-4842-bf82-b8270c256b71 + - 1d1d0d18-d45e-4714-9d8a-3144b7321698 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 135.163549ms + duration: 61.602535ms - id: 36 request: proto: HTTP/1.1 @@ -1822,8 +1822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1831,20 +1831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1852,10 +1852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba034124-6850-4710-b119-90e8b2914d11 + - 3c3747d3-4654-419f-85b7-048a376036ea status: 200 OK code: 200 - duration: 205.800983ms + duration: 97.10493ms - id: 37 request: proto: HTTP/1.1 @@ -1871,8 +1871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -1880,20 +1880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"a5966370-5f32-483f-9a5e-b41337c03a3c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1901,10 +1901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6c2fef5-2692-4b53-8513-1731193ca2f6 + - 7d8e31e5-8baf-489d-8842-e960411abea6 status: 200 OK code: 200 - duration: 88.293507ms + duration: 75.074847ms - id: 38 request: proto: HTTP/1.1 @@ -1920,8 +1920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -1929,20 +1929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1950,10 +1950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c1ced3a-f801-461d-a153-37ca7264f53a + - 49b52152-909b-4977-8f4e-cc03e68a48bd status: 200 OK code: 200 - duration: 256.973293ms + duration: 92.858034ms - id: 39 request: proto: HTTP/1.1 @@ -1969,8 +1969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -1980,7 +1980,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -1989,9 +1989,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1999,10 +1999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e7e65cf-0a19-40fe-ba3d-0bd0dd7b98e9 + - 9f478a86-286b-46f5-a853-14a9dfd58ca9 status: 404 Not Found code: 404 - duration: 46.838972ms + duration: 27.183457ms - id: 40 request: proto: HTTP/1.1 @@ -2018,8 +2018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -2029,7 +2029,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:17.700266Z","id":"80fee123-394b-4522-9392-8f2e4a6a045c","product_resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:17.700266Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2038,9 +2038,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,10 +2048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f99db4b-25f3-4625-afb6-f22ee05e556f + - ad2f7fce-e99e-4a71-9c5e-2c0f2d8a22c0 status: 200 OK code: 200 - duration: 131.23994ms + duration: 35.967205ms - id: 41 request: proto: HTTP/1.1 @@ -2067,8 +2067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data method: GET response: proto: HTTP/2.0 @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ef02c3f-7748-4e8e-8315-6ba95b56e44a + - 4d926818-98e4-48d8-8847-f3512da963ba status: 200 OK code: 200 - duration: 143.113678ms + duration: 43.348907ms - id: 42 request: proto: HTTP/1.1 @@ -2116,8 +2116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics method: GET response: proto: HTTP/2.0 @@ -2136,11 +2136,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:06:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2148,12 +2148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce0dece-301f-4931-8a26-232803f2eba2 + - 98bac303-0d3f-4b6b-a4e7-482539157433 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 125.293268ms + duration: 52.238482ms - id: 43 request: proto: HTTP/1.1 @@ -2169,8 +2169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -2178,20 +2178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1752" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5643107-8dc4-46f7-a37a-a68e737223ca + - 9e96370b-91cb-45ab-9f4b-acc88bd1f429 status: 200 OK code: 200 - duration: 232.976388ms + duration: 103.342903ms - id: 44 request: proto: HTTP/1.1 @@ -2218,8 +2218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -2227,20 +2227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1752 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:30:17.503175+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:4d","maintenances":[],"modification_date":"2025-06-10T15:30:17.503175+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' headers: Content-Length: - - "1752" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,10 +2248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36fc37da-11db-4694-9b5e-739aa8de43ff + - 8b324be3-651f-4e08-a231-a5c80d1f2a6a status: 200 OK code: 200 - duration: 212.071964ms + duration: 45.328504ms - id: 45 request: proto: HTTP/1.1 @@ -2267,8 +2267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: DELETE response: proto: HTTP/2.0 @@ -2285,9 +2285,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2295,11 +2295,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 950f79c7-ce7e-411e-9b00-6b14c0fb55bb + - d6547160-a42c-43d1-89a6-0a3be4933239 status: 204 No Content code: 204 - duration: 499.828016ms + duration: 252.253352ms - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/968c7554-8f6e-4762-9986-759c4556b08e/action","href_result":"/servers/968c7554-8f6e-4762-9986-759c4556b08e","id":"60dd485b-4318-4ac9-add9-1ab1379c2ffd","progress":0,"started_at":"2025-10-08T23:06:12.557078+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:06:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/60dd485b-4318-4ac9-add9-1ab1379c2ffd + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e5486c1f-3bc6-4f7a-a75e-14cbee00a9db + status: 202 Accepted + code: 202 + duration: 195.224879ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2314,27 +2367,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1796 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:12.401304+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1796" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:06:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91664dd3-36ed-49f4-be6a-8000cfd47923 + status: 200 OK + code: 200 + duration: 114.555921ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1930 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"301","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:14.486178+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1930" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:06:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39faf20b-89f7-4487-b5b7-7c5f6325cb0a + status: 200 OK + code: 200 + duration: 114.165125ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/968c7554-8f6e-4762-9986-759c4556b08e/action","href_result":"/servers/968c7554-8f6e-4762-9986-759c4556b08e","id":"0b79e105-b7d6-4dd0-ac9b-7b7eec9deacf","progress":0,"started_at":"2025-10-08T23:06:18.217168+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:06:18 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b79e105-b7d6-4dd0-ac9b-7b7eec9deacf + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c30455b-3c2f-424d-b264-4cd9beb25026 + status: 202 Accepted + code: 202 + duration: 452.397031ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1893 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"301","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:17.834859+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2342,11 +2548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76738ffb-b6e4-4677-9132-18682bd8d4b6 - status: 204 No Content - code: 204 - duration: 319.223467ms - - id: 47 + - 869bff58-c8b9-4e33-9e06-78cb7e38ff2a + status: 200 OK + code: 200 + duration: 117.139322ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2361,8 +2567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -2372,7 +2578,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","type":"not_found"}' headers: Content-Length: - "143" @@ -2381,9 +2587,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2177e0fd-4654-4998-9212-555796002264 + - 477f34fc-85d3-4423-9e98-0a1f3fcac512 status: 404 Not Found code: 404 - duration: 101.966209ms - - id: 48 + duration: 54.861327ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2410,8 +2616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -2421,7 +2627,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' headers: Content-Length: - "143" @@ -2430,9 +2636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2440,11 +2646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03f6435e-33f3-4535-83bc-aefdca22a2b9 + - 239c16ec-1195-45cd-b5fc-2b1b7851e322 status: 404 Not Found code: 404 - duration: 89.617921ms - - id: 49 + duration: 32.562108ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2459,8 +2665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: GET response: proto: HTTP/2.0 @@ -2470,7 +2676,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:17.700266Z","id":"c2b26cf8-1375-414c-b364-2f05f83bfbaf","last_detached_at":"2025-06-10T15:30:32.395057Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:32.395057Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":"2025-10-08T23:06:19.446322Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:19.446322Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -2479,9 +2685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2489,11 +2695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed6036d8-7476-4888-aa0d-257f15af122e + - 57ddedc5-1138-481b-8fa7-ee3cc16b73cc status: 200 OK code: 200 - duration: 125.040683ms - - id: 50 + duration: 38.097519ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2508,8 +2714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2b26cf8-1375-414c-b364-2f05f83bfbaf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 method: DELETE response: proto: HTTP/2.0 @@ -2526,9 +2732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,11 +2742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad099810-bb67-4b1d-85fd-56b00d3f9b69 + - 5e43406f-6b3e-4bb7-b46d-d8f870e932b9 status: 204 No Content code: 204 - duration: 179.757951ms - - id: 51 + duration: 85.685305ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2555,8 +2761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3e143cb9-31e6-478a-854a-4a2b4254e79d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e method: GET response: proto: HTTP/2.0 @@ -2566,7 +2772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3e143cb9-31e6-478a-854a-4a2b4254e79d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","type":"not_found"}' headers: Content-Length: - "143" @@ -2575,9 +2781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,7 +2791,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bae2b5e6-fc32-44a9-9bd2-d50736f6c7a5 + - 4f79d658-bbeb-4f21-9d78-ee1e0ce7156a status: 404 Not Found code: 404 - duration: 110.853577ms + duration: 52.463737ms diff --git a/internal/services/instance/testdata/server-ips.cassette.yaml b/internal/services/instance/testdata/server-ips.cassette.yaml index 6844ab0ea..24805f62a 100644 --- a/internal/services/instance/testdata/server-ips.cassette.yaml +++ b/internal/services/instance/testdata/server-ips.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"routed_ipv4"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:45 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd578ba3-5393-4f83-a95e-1f924f924164 + - 960f2fb3-3012-4222-8570-4b84f8824383 status: 201 Created code: 201 - duration: 443.742158ms + duration: 465.544069ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:45 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3501c8ad-cc85-417c-86bc-b7270e1154f5 + - a8eec280-94d6-490d-8d88-a8a64ac2a4f2 status: 200 OK code: 200 - duration: 87.23098ms + duration: 83.447113ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:45 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b74d9d9-d526-46ba-9a11-95531baa3b55 + - c0e576bd-30a0-4ce0-b746-f0ce209b44e4 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.24457ms + duration: 66.303463ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:45 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55ddc7ac-e91a-44f0-8bb7-6cad0a03cdf8 + - 3086c7a7-e9ae-49b9-879a-d818955bdfa7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 40.895131ms + duration: 47.611123ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:45 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be943772-26fa-499e-939c-667e8e858f95 + - 05c1df95-0d28-4fd1-884b-c736a3068137 status: 200 OK code: 200 - duration: 99.840188ms + duration: 52.288288ms - id: 5 request: proto: HTTP/1.1 @@ -269,13 +269,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"public_ips":["4edebbd5-3cf5-4456-a7bc-5740fd941af6"],"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["f6f5181d-2547-47dc-b75a-42b2934e949c"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:46 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb23440b-21a9-458d-94d7-5497f7dcbec3 + - 6805b6d3-f23c-4f4b-9457-1a57d567bd08 status: 201 Created code: 201 - duration: 963.656882ms + duration: 1.174330396s - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:46 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565bad46-ebd6-4278-8966-6bad94d9abaa + - 99644886-59bd-46dd-af9e-ba1f00b3ba4f status: 200 OK code: 200 - duration: 152.725575ms + duration: 130.398684ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72161574-04df-49ac-a626-e93624f3d643 + - 28809171-2b2b-450c-a5bd-0a1f6718a649 status: 200 OK code: 200 - duration: 168.179734ms + duration: 95.102184ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcd396e8-b72d-4996-b7ef-90e4a69c9f79 + - b01a10b2-4421-49e2-9eed-18978d05972d status: 200 OK code: 200 - duration: 122.065621ms + duration: 90.390284ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbde0201-d49c-4359-8ce3-241b8e45ffb9 + - 5886d908-a8e2-42d6-9a0c-c606eb835d94 status: 404 Not Found code: 404 - duration: 32.600777ms + duration: 32.288106ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0396b88-485f-4bda-964f-482e7df637d3 + - b32132f3-ccb9-4030-a582-8427657f82e1 status: 200 OK code: 200 - duration: 47.875399ms + duration: 40.202728ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c28e3db6-197d-454f-8644-d6753deb634c + - 9cecc290-27ad-4ee4-87f4-b4de3c09a9c3 status: 200 OK code: 200 - duration: 74.1834ms + duration: 57.7035ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 513ec39f-e668-4538-ab05-49be7c119a29 + - aa56b008-b247-4002-9059-4f7a45a053ba X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.487521ms + duration: 49.862073ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9537b9b8-7bbf-4760-ae97-87228ac2a979 + - ce34e361-a443-4418-b8d1-8699f8c74fc5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.691835ms + duration: 61.076488ms - id: 14 request: proto: HTTP/1.1 @@ -726,8 +726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 445 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "447" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cd0e41a-72e8-4aa5-bbc2-9bc2af248d43 + - 9d79a26a-7518-4a65-a9a0-45e6cbe2728d status: 200 OK code: 200 - duration: 110.15134ms + duration: 77.514471ms - id: 15 request: proto: HTTP/1.1 @@ -775,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d533bd70-223c-4067-bf8c-db2ef7b6cce8 + - fc300840-f2f4-4570-b44a-493abd432633 status: 200 OK code: 200 - duration: 138.578609ms + duration: 110.027554ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 979b7cf8-0eef-4a83-95af-45696d2a56eb + - 7d642140-de9a-4591-b01c-a235a733d9a4 status: 404 Not Found code: 404 - duration: 30.123936ms + duration: 32.320897ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db2f2ba2-0a04-43d9-8868-7a9a77a13bfb + - 052662a2-6fae-4731-b7bb-a7d3e599a354 status: 200 OK code: 200 - duration: 45.988006ms + duration: 46.382207ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acc251f0-e3cf-4353-93ad-38c64e6ad742 + - f0bbcde4-0847-4ce0-a60c-5edbeaf6ea1a status: 200 OK code: 200 - duration: 52.149866ms + duration: 55.132847ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3230fe00-5413-48c4-a015-faa2f434ee6d + - 4b1aeba7-4642-495b-b06b-4ebfc334f752 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.645867ms + duration: 49.441343ms - id: 20 request: proto: HTTP/1.1 @@ -1024,8 +1024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 445 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "447" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51ddb7c9-0ae6-48b0-9da1-758a7e0d87c9 + - 01cbb110-da3e-4bd6-baa4-17b71cedc683 status: 200 OK code: 200 - duration: 90.870735ms + duration: 72.674534ms - id: 21 request: proto: HTTP/1.1 @@ -1073,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdaae8dd-bd97-404c-a3c1-cae0dfdea424 + - bb2de712-1680-4fcd-985b-1d9b24e8f46c status: 200 OK code: 200 - duration: 115.412629ms + duration: 99.684172ms - id: 22 request: proto: HTTP/1.1 @@ -1122,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0434aaac-9aff-4b01-af66-5370b55df05d + - 87d336da-3c55-4b5e-811b-137214f767f5 status: 404 Not Found code: 404 - duration: 31.881316ms + duration: 35.36175ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -1180,20 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d2580a4-ba64-4147-9401-97c28222216a + - 9242a09a-e5f6-4b3c-8a61-79c9b2a9d71e status: 200 OK code: 200 - duration: 37.111597ms + duration: 50.220467ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a750b60-0792-4544-b644-91ae977dbef8 + - 384c03f2-584d-4f99-a718-771d2dc47cea status: 200 OK code: 200 - duration: 63.623862ms + duration: 56.002388ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:48 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e06e8b9-6167-4994-bd3f-f54306a12d5d + - 49f96650-eded-46d5-b37e-1269d662ee80 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.037879ms + duration: 66.264218ms - id: 26 request: proto: HTTP/1.1 @@ -1318,13 +1318,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","type":"routed_ipv4"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -1333,22 +1333,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:49 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd9b3157-19d3-40f9-b2c0-7daa495d3ee9 + - 15ae7949-d688-4172-80c3-b74d574b067b status: 201 Created code: 201 - duration: 364.713451ms + duration: 978.963921ms - id: 27 request: proto: HTTP/1.1 @@ -1375,8 +1375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: GET response: proto: HTTP/2.0 @@ -1384,20 +1384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:49 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76bd9b7d-15cf-46a6-b79e-89e30d415bc4 + - bdfb1b68-37c5-4cc0-a191-a2b1721d8d33 status: 200 OK code: 200 - duration: 84.214386ms + duration: 78.102961ms - id: 28 request: proto: HTTP/1.1 @@ -1424,8 +1424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -1433,20 +1433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:49 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fe0e177-8e39-44a6-8fca-da8d3848fe19 + - 353b1c8a-c8fd-4730-bfcc-a247b102a72c status: 200 OK code: 200 - duration: 120.078962ms + duration: 93.241406ms - id: 29 request: proto: HTTP/1.1 @@ -1473,8 +1473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -1482,20 +1482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2262 + content_length: 2280 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2262" + - "2280" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:49 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ceff530-de88-42d5-86ec-7115f5436069 + - 709cefed-faa1-49e7-be46-4e5ff03e98f5 status: 200 OK code: 200 - duration: 138.944557ms + duration: 115.423609ms - id: 30 request: proto: HTTP/1.1 @@ -1518,14 +1518,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b"}' + body: '{"server":"b16d235b-ae02-4c0d-ad23-49d8e569190d"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: PATCH response: proto: HTTP/2.0 @@ -1533,20 +1533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 449 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1554,10 +1554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cbde141-29bb-49a5-a4d9-892bcbca6edc + - cc7fc077-359a-47c8-8eaf-be913d3f6262 status: 200 OK code: 200 - duration: 449.74477ms + duration: 374.499622ms - id: 31 request: proto: HTTP/1.1 @@ -1573,8 +1573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -1582,20 +1582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,10 +1603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d098c0cf-fa75-471e-9f93-e160f8cc8e79 + - 26f77dbd-6fc5-4691-9d5b-393434096496 status: 200 OK code: 200 - duration: 136.032569ms + duration: 91.705059ms - id: 32 request: proto: HTTP/1.1 @@ -1622,8 +1622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -1631,20 +1631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1652,10 +1652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 897d3aea-b937-427b-b48e-fbd5fd90b396 + - 42ad6cf7-23b4-4936-8eab-d895d464b025 status: 200 OK code: 200 - duration: 137.754783ms + duration: 102.25344ms - id: 33 request: proto: HTTP/1.1 @@ -1671,8 +1671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -1682,7 +1682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -1691,9 +1691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,10 +1701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34b6eb03-9f4a-4082-ad51-3aae495a643f + - 1644f25e-9eb9-4465-99a2-dfb7c01762ff status: 404 Not Found code: 404 - duration: 27.907364ms + duration: 36.402117ms - id: 34 request: proto: HTTP/1.1 @@ -1720,8 +1720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -1729,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 695ccf40-821a-4bce-bf33-090b6fdd044d + - 480c20dd-db28-4925-a851-361a9e3f5d78 status: 200 OK code: 200 - duration: 36.48989ms + duration: 43.704645ms - id: 35 request: proto: HTTP/1.1 @@ -1769,8 +1769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -1789,9 +1789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,10 +1799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa7697bf-b484-47b6-92b7-a257096380e5 + - b21c559d-f310-4737-86d8-daad7aa5d15d status: 200 OK code: 200 - duration: 67.524897ms + duration: 48.314636ms - id: 36 request: proto: HTTP/1.1 @@ -1818,8 +1818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -1838,11 +1838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,12 +1850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2761c541-d5bd-465d-b948-27b83322645f + - 59fc4fe5-9736-4a4e-9958-f0dcbc65ac24 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.956496ms + duration: 63.740062ms - id: 37 request: proto: HTTP/1.1 @@ -1871,8 +1871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -1891,11 +1891,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:50 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1903,12 +1903,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7f79543-de02-4340-b7b4-183dcaf05c74 + - 98ea926a-5237-4f6f-9b9b-6a87cc1b2748 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.498368ms + duration: 48.652431ms - id: 38 request: proto: HTTP/1.1 @@ -1924,8 +1924,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -1933,20 +1933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 445 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "447" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1954,10 +1954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 559595cf-254d-4c0d-ac07-db07f6ca96e3 + - 4c2cbb16-3900-4619-a728-bedd9dcd9a3a status: 200 OK code: 200 - duration: 84.453836ms + duration: 76.601709ms - id: 39 request: proto: HTTP/1.1 @@ -1973,8 +1973,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: GET response: proto: HTTP/2.0 @@ -1982,20 +1982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 449 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2003,10 +2003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e808328-98df-4623-b4cb-807aec3a0e89 + - d584a62f-902d-4b39-8718-679da21bd917 status: 200 OK code: 200 - duration: 115.741457ms + duration: 84.211817ms - id: 40 request: proto: HTTP/1.1 @@ -2022,8 +2022,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2031,20 +2031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2052,10 +2052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f98eab-74c6-4e35-a942-46afa990e2f3 + - 1a0f2ef2-0262-4cf5-97c7-93db760aff23 status: 200 OK code: 200 - duration: 115.986136ms + duration: 98.409999ms - id: 41 request: proto: HTTP/1.1 @@ -2071,8 +2071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2082,7 +2082,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -2091,9 +2091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,10 +2101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26242c1b-5e62-49b4-8b68-61ccba63c6ee + - 4670a10d-5bb4-463c-bbd5-008cf42c6408 status: 404 Not Found code: 404 - duration: 31.230153ms + duration: 35.987799ms - id: 42 request: proto: HTTP/1.1 @@ -2120,8 +2120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2129,20 +2129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2150,10 +2150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 758781ce-e7b9-4943-9c4a-256df24c0e13 + - af4e05da-f2ff-43da-965e-6726ee3ab89a status: 200 OK code: 200 - duration: 42.148706ms + duration: 41.90397ms - id: 43 request: proto: HTTP/1.1 @@ -2169,8 +2169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -2189,9 +2189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15003153-d813-4efd-ad84-284fa1d5637a + - a2d99d39-1863-457d-86e3-e74126a355c0 status: 200 OK code: 200 - duration: 62.300246ms + duration: 53.392242ms - id: 44 request: proto: HTTP/1.1 @@ -2218,8 +2218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -2238,11 +2238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2250,12 +2250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99e62f72-afe6-4fc2-8e0c-847c41f3a902 + - a2028a8c-7187-4a4f-aa6f-5382d3fa41a8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.407812ms + duration: 56.169717ms - id: 45 request: proto: HTTP/1.1 @@ -2271,8 +2271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: GET response: proto: HTTP/2.0 @@ -2280,20 +2280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 449 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2301,10 +2301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d957092-8734-4e16-9716-6074a76da641 + - 137c201e-c96a-4d8d-928d-3931bb5dc4c2 status: 200 OK code: 200 - duration: 107.463223ms + duration: 60.522491ms - id: 46 request: proto: HTTP/1.1 @@ -2320,8 +2320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -2329,20 +2329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 447 + content_length: 445 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "447" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2350,10 +2350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37a3f1fa-7766-4e75-a320-59492f855cb1 + - 88c382d8-a53d-409b-a4fe-cfa117479d21 status: 200 OK code: 200 - duration: 114.939712ms + duration: 88.508676ms - id: 47 request: proto: HTTP/1.1 @@ -2369,8 +2369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2378,20 +2378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,10 +2399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdcc0aef-0171-4aa3-9118-30e0663e4d28 + - 4f8b7e92-e066-4ff9-8a63-b0feb2e8a869 status: 200 OK code: 200 - duration: 122.008946ms + duration: 115.381521ms - id: 48 request: proto: HTTP/1.1 @@ -2418,8 +2418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2429,7 +2429,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -2438,9 +2438,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,10 +2448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f73f034-70ea-415c-b37c-00c64b333562 + - 8f2f1b24-529b-42d8-a0a5-06d4e25d36f1 status: 404 Not Found code: 404 - duration: 33.599102ms + duration: 27.673396ms - id: 49 request: proto: HTTP/1.1 @@ -2467,8 +2467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2476,20 +2476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,10 +2497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fee4746-1089-4da4-b1d7-204e2e93bae0 + - 393c445d-c5b2-4e2d-b566-a2df5bde6b99 status: 200 OK code: 200 - duration: 63.600568ms + duration: 44.855677ms - id: 50 request: proto: HTTP/1.1 @@ -2516,8 +2516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -2536,9 +2536,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:51 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,10 +2546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6bdc766-bf04-4a4e-aa15-0b83d90e3604 + - 61e52402-b84d-4d99-aac2-d2f42eaaadae status: 200 OK code: 200 - duration: 59.744147ms + duration: 54.308159ms - id: 51 request: proto: HTTP/1.1 @@ -2565,8 +2565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -2585,11 +2585,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:52 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,12 +2597,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bd769e9-b992-49e7-86b4-ddb723370811 + - 110d0094-6845-48a1-8625-3543a3710c0b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.994387ms + duration: 49.275485ms - id: 52 request: proto: HTTP/1.1 @@ -2618,8 +2618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2627,20 +2627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:52 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,10 +2648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5b0e04d-a99d-4438-a75f-c13c95be4e3c + - 57f4ac79-40ec-4e45-82e1-5b98b93d2358 status: 200 OK code: 200 - duration: 137.41784ms + duration: 115.325256ms - id: 53 request: proto: HTTP/1.1 @@ -2667,8 +2667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2676,20 +2676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2530 + content_length: 2551 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.231.168","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2530" + - "2551" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:52 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2697,10 +2697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9299293-96b0-4b45-a89f-96b700d971d3 + - 3deec4e9-0c1f-4a31-a912-6b909795e2fe status: 200 OK code: 200 - duration: 120.053154ms + duration: 140.152068ms - id: 54 request: proto: HTTP/1.1 @@ -2718,8 +2718,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: PATCH response: proto: HTTP/2.0 @@ -2727,20 +2727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:52 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2748,10 +2748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c787697c-3c88-4c33-a90a-8bfe3c02e959 + - 91ee8a75-ea20-467a-97e5-a5d4cef799b0 status: 200 OK code: 200 - duration: 368.701579ms + duration: 330.084307ms - id: 55 request: proto: HTTP/1.1 @@ -2767,8 +2767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2776,20 +2776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2260 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2260" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,10 +2797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e560d2ed-8b04-42b4-8be9-bde4828953b8 + - 52311f57-81d8-4e88-af87-1bc7ce6cadf6 status: 200 OK code: 200 - duration: 113.120335ms + duration: 112.5263ms - id: 56 request: proto: HTTP/1.1 @@ -2816,8 +2816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -2825,20 +2825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2260 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2260" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,10 +2846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81d3d8c8-c687-4759-b264-1a8d55629852 + - 13352b73-ac41-455b-922c-35c3a738f97b status: 200 OK code: 200 - duration: 124.820045ms + duration: 103.256668ms - id: 57 request: proto: HTTP/1.1 @@ -2865,8 +2865,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2876,7 +2876,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -2885,9 +2885,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2895,10 +2895,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff3f1f9f-37f5-433d-b8cc-d8f1482ed740 + - d3012258-9525-4d01-8e04-7f6c1b99a682 status: 404 Not Found code: 404 - duration: 26.359026ms + duration: 32.132578ms - id: 58 request: proto: HTTP/1.1 @@ -2914,8 +2914,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -2923,20 +2923,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2944,10 +2944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 902e135e-74b9-43ad-ae9f-eeebbe23ef5f + - 711f890c-e9fd-4bda-bbc6-24d027393810 status: 200 OK code: 200 - duration: 41.736602ms + duration: 45.411917ms - id: 59 request: proto: HTTP/1.1 @@ -2963,8 +2963,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -2983,9 +2983,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2993,10 +2993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69de20a0-6039-4093-854f-15715bf32765 + - e3888432-1b62-4bc6-a935-f4edc35d3138 status: 200 OK code: 200 - duration: 52.499061ms + duration: 69.660789ms - id: 60 request: proto: HTTP/1.1 @@ -3012,8 +3012,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -3032,11 +3032,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3044,12 +3044,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 299542dd-5141-462a-a9ef-2153de73b30d + - e621ce4d-fa6f-4609-b88d-78f9a5b14b9f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.621642ms + duration: 55.58845ms - id: 61 request: proto: HTTP/1.1 @@ -3065,8 +3065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -3085,11 +3085,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3097,12 +3097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87108cb6-7e7b-41a9-911b-894ec63de7dc + - eb158e5c-4e80-4a9c-9a7f-22c2350b0cb8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.426383ms + duration: 58.902469ms - id: 62 request: proto: HTTP/1.1 @@ -3118,8 +3118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: GET response: proto: HTTP/2.0 @@ -3127,20 +3127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 449 uncompressed: false - body: '{"ip":{"address":"51.15.231.168","id":"4edebbd5-3cf5-4456-a7bc-5740fd941af6","ipam_id":"0493c16a-c031-4f71-927f-fbdf1306312f","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "449" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,10 +3148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a3109dd-8b7d-46ad-87c2-6a29f9067f39 + - 5d3bbb80-97e7-4e9c-8673-2f4c54e59200 status: 200 OK code: 200 - duration: 75.790568ms + duration: 90.617934ms - id: 63 request: proto: HTTP/1.1 @@ -3167,8 +3167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -3176,20 +3176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.232.22","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":null,"server":{"id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3197,10 +3197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61556d91-6793-438a-8631-a8bf1c67b27e + - 47c65b8b-950d-4ef5-845e-7a02383ac249 status: 200 OK code: 200 - duration: 77.407774ms + duration: 90.620679ms - id: 64 request: proto: HTTP/1.1 @@ -3216,8 +3216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -3225,20 +3225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2260 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2260" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3246,10 +3246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61d8295e-06ac-4c6b-a488-3cc0188a6b8c + - a9b965af-d2b8-4d58-9850-abb00acadb8c status: 200 OK code: 200 - duration: 125.835121ms + duration: 81.898902ms - id: 65 request: proto: HTTP/1.1 @@ -3265,8 +3265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -3276,7 +3276,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -3285,9 +3285,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,10 +3295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7950b25a-a940-4f06-b5ae-1f038cc93edb + - 1515976d-d3b6-4341-881a-4e24cee24569 status: 404 Not Found code: 404 - duration: 37.638697ms + duration: 31.166557ms - id: 66 request: proto: HTTP/1.1 @@ -3314,8 +3314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -3323,20 +3323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-08-20T15:39:46.055925Z","id":"186e1717-0461-46c2-ac9c-6ea31ea50a76","product_resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:46.055925Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:53 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,10 +3344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bce7960-7c1a-4768-99a9-29d1641c3075 + - 1006554e-bed4-4444-8d20-21c71ed09354 status: 200 OK code: 200 - duration: 41.48514ms + duration: 50.05042ms - id: 67 request: proto: HTTP/1.1 @@ -3363,8 +3363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data method: GET response: proto: HTTP/2.0 @@ -3383,9 +3383,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3393,10 +3393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b544c15e-2ed6-4c79-ac04-818bf7ab65f9 + - 28853b3a-fff5-4128-894d-50aba948bd18 status: 200 OK code: 200 - duration: 63.608142ms + duration: 52.024777ms - id: 68 request: proto: HTTP/1.1 @@ -3412,8 +3412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics method: GET response: proto: HTTP/2.0 @@ -3432,11 +3432,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3444,12 +3444,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d753ad8-8639-4d23-a2e7-1aae4c5aea2a + - dfe1efe8-d8af-4b22-97a0-440115c4b48f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.684735ms + duration: 56.208318ms - id: 69 request: proto: HTTP/1.1 @@ -3465,8 +3465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -3474,20 +3474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2260 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2260" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3495,10 +3495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2c15f14-7602-44c1-91c6-f4637e274174 + - e6c37e0f-4fec-4a08-8f39-a6ad7f7bcfc6 status: 200 OK code: 200 - duration: 113.212107ms + duration: 93.784639ms - id: 70 request: proto: HTTP/1.1 @@ -3514,8 +3514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -3523,20 +3523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2260 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-08-20T15:39:45.922683+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c4:84:51","maintenances":[],"modification_date":"2025-08-20T15:39:45.922683+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.232.22","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"4f11e3e4-1919-4c30-8d42-73a94e1cd657","ipam_id":"062206ed-fac5-4d34-84dd-83125736fd08","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"da505169-540e-4c2b-b0da-c854139224e0","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' headers: Content-Length: - - "2260" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3544,10 +3544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdbd7c66-fefd-4416-a17e-75e576888519 + - b5220fc9-d908-46d2-a501-0758016e6f41 status: 200 OK code: 200 - duration: 134.059976ms + duration: 42.607923ms - id: 71 request: proto: HTTP/1.1 @@ -3563,8 +3563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4edebbd5-3cf5-4456-a7bc-5740fd941af6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: DELETE response: proto: HTTP/2.0 @@ -3581,9 +3581,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3591,11 +3591,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50f14276-b056-4c22-8a7d-917965348e1c + - 4b05b0ce-5898-4ef5-a759-54f01c0280a9 status: 204 No Content code: 204 - duration: 254.200743ms + duration: 281.490141ms - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action","href_result":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d","id":"380b5a3d-8ed3-4b0e-9357-8fd5642788ce","progress":0,"started_at":"2025-10-08T23:04:36.672083+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/380b5a3d-8ed3-4b0e-9357-8fd5642788ce + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 704c7019-6ecb-44cd-ade3-5081839f54a7 + status: 202 Accepted + code: 202 + duration: 165.654692ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3610,27 +3663,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 2310 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:36.552642+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2310" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b59818e4-484f-4581-a261-dd75e264aed4 + status: 200 OK + code: 200 + duration: 157.188327ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2443 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:38.477887+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2443" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbab9b6a-2022-47c6-90eb-2fe509a06435 + status: 200 OK + code: 200 + duration: 116.767965ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action","href_result":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d","id":"90421ed7-1b7f-41c2-876c-7825657d6406","progress":0,"started_at":"2025-10-08T23:04:42.135707+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:42 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90421ed7-1b7f-41c2-876c-7825657d6406 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cc73f27-1e32-4687-9dae-06aa39e7a7b6 + status: 202 Accepted + code: 202 + duration: 186.583748ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2406 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:41.997562+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:54 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3638,11 +3844,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5548d82a-4ed7-419a-bafc-5fb5fb059bb2 - status: 204 No Content - code: 204 - duration: 354.125068ms - - id: 73 + - a18363bd-fa65-475d-b229-3ac84c639103 + status: 200 OK + code: 200 + duration: 106.711564ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3657,8 +3863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -3668,7 +3874,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","type":"not_found"}' headers: Content-Length: - "143" @@ -3677,9 +3883,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3687,11 +3893,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 124c0b49-c63f-40be-8024-12bee381ee22 + - f9b105bb-d47e-4d54-b24a-742395e526dd status: 404 Not Found code: 404 - duration: 72.614124ms - - id: 74 + duration: 51.352159ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3706,8 +3912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -3717,7 +3923,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' headers: Content-Length: - "143" @@ -3726,9 +3932,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3736,11 +3942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd4306f9-cfb2-4848-bae4-c865901f17b6 + - 7deafb06-68ca-468a-9569-71ab111e5c15 status: 404 Not Found code: 404 - duration: 38.118678ms - - id: 75 + duration: 31.839241ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3755,8 +3961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: GET response: proto: HTTP/2.0 @@ -3764,20 +3970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 498 uncompressed: false - body: '{"created_at":"2025-08-20T15:39:46.055925Z","id":"e45eda4e-4d69-4be8-92bc-40e67bf87348","last_detached_at":"2025-08-20T15:39:55.017738Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-20T15:39:55.017738Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":"2025-10-08T23:04:43.458799Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.458799Z","zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3785,11 +3991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869fe7bf-cba4-4b64-8d28-fb02888d8a20 + - 5c193fec-4bbf-4e24-bb43-6f9cc621e8d5 status: 200 OK code: 200 - duration: 51.361276ms - - id: 76 + duration: 51.571515ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3804,8 +4010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e45eda4e-4d69-4be8-92bc-40e67bf87348 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 method: DELETE response: proto: HTTP/2.0 @@ -3822,9 +4028,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3832,11 +4038,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82c3b4e8-9b7b-4cd1-829e-f2df2afb6392 + - 6eb2dd2f-793c-4178-8bf6-d9862cc321fe status: 204 No Content code: 204 - duration: 82.005739ms - - id: 77 + duration: 87.270578ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3851,8 +4057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/4f11e3e4-1919-4c30-8d42-73a94e1cd657 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c method: DELETE response: proto: HTTP/2.0 @@ -3869,9 +4075,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,11 +4085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c598aefb-53ba-4b5c-b02c-91de1ce6bb0e + - 99089cc4-9338-46ae-852d-e8d48b13cae1 status: 204 No Content code: 204 - duration: 356.563529ms - - id: 78 + duration: 293.596984ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3898,8 +4104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9db5e826-2b13-47b5-a7b6-b1cfcf93226b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d method: GET response: proto: HTTP/2.0 @@ -3909,7 +4115,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9db5e826-2b13-47b5-a7b6-b1cfcf93226b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","type":"not_found"}' headers: Content-Length: - "143" @@ -3918,9 +4124,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 20 Aug 2025 15:39:55 GMT + - Wed, 08 Oct 2025 23:04:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,7 +4134,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20d6554-4913-4329-b8a3-c91c6973399f + - 0e9ab25c-d135-43eb-a047-cfb8f78abe35 status: 404 Not Found code: 404 - duration: 87.028639ms + duration: 1.08302323s diff --git a/internal/services/instance/testdata/server-ipv6.cassette.yaml b/internal/services/instance/testdata/server-ipv6.cassette.yaml index e2349cbde..f6c3c15e3 100644 --- a/internal/services/instance/testdata/server-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/server-ipv6.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv6"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv6"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc31eb3e-aeb2-48e3-abab-55785dea0016 + - e4390914-cfa4-407c-a25a-c04c7642c46e status: 201 Created code: 201 - duration: 600.951951ms + duration: 454.992838ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a1ae485-8c6c-4bd4-89c3-98cc6a9e11e6 + - 6b889466-1216-4e8f-a943-92c7d0e2d0da status: 200 OK code: 200 - duration: 109.954545ms + duration: 73.418974ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1197b7ec-e64e-4fae-89b2-f9bddfad9b16 + - ea3bfa91-07c7-42f2-9c28-b46325ddb76b X-Total-Count: - "75" status: 200 OK code: 200 - duration: 91.809034ms + duration: 51.65228ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e00938d6-43f9-436f-958a-8a2f0f1ed363 + - 21b24d10-4dad-49e5-bdb0-d4e6460cfd1a X-Total-Count: - "75" status: 200 OK code: 200 - duration: 77.0903ms + duration: 52.939505ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,28 +254,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1282565d-7955-4b33-aa95-63908d81e43d + - 2e78f7a6-e6fd-4b9a-8882-282b61029fb7 status: 200 OK code: 200 - duration: 112.409249ms + duration: 49.943183ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 294 + content_length: 298 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-recursing-banach","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"public_ips":["b0a149f5-38d7-40f1-bc76-a707a9eb92c0"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-dazzling-stonebraker","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["c8efb627-e95e-4803-b88a-9dc5775f35e4"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2320 + content_length: 2354 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:28:57.220142+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2320" + - "2354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf710c20-3346-442c-a11e-fc018b7f39cc + - 741d8f9d-c62e-4383-84e5-4963b0195fb1 status: 201 Created code: 201 - duration: 1.416562396s + duration: 1.193939045s - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2320 + content_length: 2354 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:28:57.220142+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2320" + - "2354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff34e594-ab11-4e52-a305-88188fae743f + - d3a07714-9c40-4ad3-b3b1-5a559d75fb62 status: 200 OK code: 200 - duration: 199.344322ms + duration: 100.359633ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2320 + content_length: 2354 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:28:57.220142+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2320" + - "2354" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec25bfbd-6564-4b82-bf9e-0c611ddbc5a8 + - a72c3349-6892-4286-852a-d8bc866c4748 status: 200 OK code: 200 - duration: 234.248824ms + duration: 101.565567ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70cda67-c33d-4c2e-93f3-284b07f9ea5d + - c3cce500-e1a8-4ebc-88aa-437ef4f7e3c9 status: 200 OK code: 200 - duration: 114.441421ms + duration: 63.353336ms - id: 9 request: proto: HTTP/1.1 @@ -475,8 +475,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/action","href_result":"/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9","id":"8412c67e-9183-4d87-b76f-ff01e0d17058","progress":0,"started_at":"2025-06-10T15:28:59.185760+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action","href_result":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c","id":"3456ebbe-da40-464e-95f6-fb06a4544207","progress":0,"started_at":"2025-10-08T23:04:30.722849+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8412c67e-9183-4d87-b76f-ff01e0d17058 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3456ebbe-da40-464e-95f6-fb06a4544207 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1336006b-e30a-4426-a351-f21505993a0f + - d3131d9d-65f8-4b98-b744-2584a91e42df status: 202 Accepted code: 202 - duration: 263.286403ms + duration: 225.061651ms - id: 10 request: proto: HTTP/1.1 @@ -526,8 +526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -535,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2342 + content_length: 2376 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:28:58.983670+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:30.550970+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2342" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 926649f0-3001-4964-b1a5-84923de77f6c + - ac517bb4-8a04-42a9-966c-e0a8e2862aa0 status: 200 OK code: 200 - duration: 181.438912ms + duration: 81.373289ms - id: 11 request: proto: HTTP/1.1 @@ -575,8 +575,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -584,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2477 + content_length: 2510 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2477" + - "2510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 122f5eb3-384a-4191-b506-49d9c9a7b7df + - e73336b5-1740-447b-83a2-d2b530177047 status: 200 OK code: 200 - duration: 199.459437ms + duration: 96.924998ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2477 + content_length: 2510 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2477" + - "2510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7015502c-b46b-48b7-912a-51670028fdcc + - 5fce7f10-0869-4974-b34c-6a7a0b3e0421 status: 200 OK code: 200 - duration: 188.084094ms + duration: 99.946255ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d9ef48-9f20-4425-9607-9b67a73bee23 + - 2629a35c-7f78-45a5-a5f9-ae9493641968 status: 404 Not Found code: 404 - duration: 100.988549ms + duration: 33.62425ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd927ba0-32b3-48a3-9dc1-3204eafd12ee + - 0b952625-5805-4fa9-937e-3b91bca18bc3 status: 200 OK code: 200 - duration: 103.391517ms + duration: 46.729027ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7f6ba38-dc51-4650-b667-850f337f2b8a + - 049f0ff4-4bb8-4fa1-9ecf-2d63862adfc0 status: 200 OK code: 200 - duration: 102.050902ms + duration: 61.398853ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9c3e320-f1c6-4c37-a6dc-bd92f4461cba + - 5f6c5352-e7f4-48a7-bbf7-f5a77a468a72 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.4457ms + duration: 43.647328ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2477 + content_length: 2510 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2477" + - "2510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d3ce3b-63f4-49fe-9f84-e8cb18a3dc23 + - c9a1c545-ee69-4df2-abc6-c4d2be067fe7 status: 200 OK code: 200 - duration: 166.799585ms + duration: 96.198632ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 451 + content_length: 455 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","name":"tf-srv-recursing-banach"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","name":"tf-srv-dazzling-stonebraker"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - - "451" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - def7a155-8295-4921-ba9a-d5a8a1845c4d + - d20755d0-c02a-4231-aa33-b0e6ca5ef328 status: 200 OK code: 200 - duration: 105.434197ms + duration: 69.322883ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2477 + content_length: 2510 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2477" + - "2510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fb4a41a-7c71-4cbd-be9a-c94436621ac0 + - a037171b-2784-4fcb-833d-12c62be0a487 status: 200 OK code: 200 - duration: 221.42911ms + duration: 108.026012ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 236f4a67-53f5-480d-ba97-6d4296307156 + - 2b2abc4c-efa0-4c97-81e5-def5eb00e922 status: 404 Not Found code: 404 - duration: 54.389766ms + duration: 34.081427ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1724c8a7-44b0-4b27-b639-7be0cd7684f9 + - c6f590c6-783b-4f2f-b61f-6a8b789a55f5 status: 200 OK code: 200 - duration: 103.95303ms + duration: 52.116388ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2e4e84f-1403-4671-abec-cca19c45ee1b + - 951df9e3-c4a7-4b33-bb7d-ce43665a8f64 status: 200 OK code: 200 - duration: 98.636678ms + duration: 66.214775ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 302826e4-06f7-45c9-9fd2-2aba937c6756 + - 06b79581-e44c-41b1-8f4f-4a602929980d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 127.97422ms + duration: 65.069243ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 451 + content_length: 455 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","name":"tf-srv-recursing-banach"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","name":"tf-srv-dazzling-stonebraker"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - - "451" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fcbb891-657b-4e36-b158-93a721dde0c5 + - a3065d5c-dae4-4422-bb04-a246c5c61f95 status: 200 OK code: 200 - duration: 219.566847ms + duration: 70.655601ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2477 + content_length: 2510 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:2883:dc00:ff:feb5:aef","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:af0","id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"1b834114-7de8-4e7c-a3a4-87711c102b81","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2477" + - "2510" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39a0264e-b690-4ce4-ba22-dfc553f26f97 + - 198d8fc6-9c2d-478c-b936-5359a6e5d704 status: 200 OK code: 200 - duration: 332.238167ms + duration: 95.116336ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a8bf2dc-5f0b-414c-bea7-fdd2aed2d941 + - 1e950ba1-5911-438c-81b2-d82c0bd3174b status: 404 Not Found code: 404 - duration: 66.211607ms + duration: 27.801624ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 447c8afc-7439-4631-ade5-803f67095dde + - 519f35ec-2474-48e7-9fef-ce1137bdb30d status: 200 OK code: 200 - duration: 134.232237ms + duration: 41.695663ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a129d2-62e4-4a9c-8a72-dc18795bc510 + - ec00bed8-302e-48c5-a169-81915a21fcdb status: 200 OK code: 200 - duration: 115.68908ms + duration: 53.668884ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2310e7b2-0b57-475c-be5e-63e71616f54a + - 72183ab8-dd49-4459-8421-044bc2bf6c6d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 140.843476ms + duration: 55.930062ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 method: DELETE response: proto: HTTP/2.0 @@ -1536,9 +1536,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d9d66c9-29f9-4864-9299-923a968a252b + - 8118235b-b519-4535-8f1d-1fa23f51625a status: 204 No Content code: 204 - duration: 743.06276ms + duration: 494.638012ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6623780-4ec3-440f-9e55-3d389162ff52 + - 3cee06e2-dec5-423f-b8eb-3f60392f5712 status: 200 OK code: 200 - duration: 227.34269ms + duration: 90.214133ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1623,20 +1623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 324bdf9d-12e4-4c5c-91a2-e7d7c265a215 + - 5b0b9aa2-28b2-4509-86de-e4cc6be0c16d status: 200 OK code: 200 - duration: 202.814288ms + duration: 113.991573ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1672,20 +1672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47d7144-a9af-4079-bbaf-355fd37e4e3f + - ef68fb6c-939b-4d5d-99ae-9b21ce905408 status: 200 OK code: 200 - duration: 184.114048ms + duration: 99.462917ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1721,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa13693-9378-4cab-9d22-e3c414701f66 + - 88939e5a-117c-421d-a922-86285c48f2b6 status: 200 OK code: 200 - duration: 222.3247ms + duration: 113.999997ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1772,7 +1772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -1781,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7facc988-7ca0-4c71-86f4-1849558b8dea + - e395256b-c171-4136-83b8-d06481dbce7c status: 404 Not Found code: 404 - duration: 77.859943ms + duration: 42.301585ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -1821,7 +1821,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1830,9 +1830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9763f7b2-0eb1-411a-989e-f018bcd5563e + - 08009915-c2e8-4876-be24-d98017ba0f30 status: 200 OK code: 200 - duration: 152.121216ms + duration: 39.994631ms - id: 37 request: proto: HTTP/1.1 @@ -1859,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data method: GET response: proto: HTTP/2.0 @@ -1879,9 +1879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8fe7235-89ae-4f52-9c91-6345d2169161 + - 1de85de3-fa82-49a6-aabc-4da52a79f5c2 status: 200 OK code: 200 - duration: 96.123004ms + duration: 59.770286ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics method: GET response: proto: HTTP/2.0 @@ -1928,11 +1928,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,12 +1940,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31452104-d105-4aa7-bf5f-c2e6feaba4f2 + - 049f7e8d-e4f9-4081-994b-5916a6c970a6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 141.161932ms + duration: 59.192436ms - id: 39 request: proto: HTTP/1.1 @@ -1961,8 +1961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -1970,20 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 372a2b86-d63f-4442-b37f-2e01b18dc60f + - d09fc84e-1579-4bb2-aa83-6342292874d6 status: 200 OK code: 200 - duration: 174.353773ms + duration: 103.22096ms - id: 40 request: proto: HTTP/1.1 @@ -2010,8 +2010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -2019,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f2b61a1-7e2a-44a0-8fac-7807d2b139a2 + - 740ab788-8676-4ad8-ae9b-20ea69df7413 status: 200 OK code: 200 - duration: 230.868223ms + duration: 111.838944ms - id: 41 request: proto: HTTP/1.1 @@ -2059,8 +2059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -2070,7 +2070,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -2079,9 +2079,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afd19758-7275-44c8-86d8-2a64cb775b39 + - 98762eb7-f815-4980-83ee-e5fb6007fff8 status: 404 Not Found code: 404 - duration: 82.866412ms + duration: 26.235412ms - id: 42 request: proto: HTTP/1.1 @@ -2108,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -2119,7 +2119,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2128,9 +2128,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ac036d7-ac1f-4748-8a10-d5701b6ddf07 + - 53b0fc3d-0ce1-44b2-bd38-9ef043329157 status: 200 OK code: 200 - duration: 70.646154ms + duration: 44.401915ms - id: 43 request: proto: HTTP/1.1 @@ -2157,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data method: GET response: proto: HTTP/2.0 @@ -2177,9 +2177,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8be3c667-9207-48cb-aa63-6a1ea0d80bbf + - 51dc9273-97ae-4951-9c59-080fa07a3c7d status: 200 OK code: 200 - duration: 141.495037ms + duration: 60.866717ms - id: 44 request: proto: HTTP/1.1 @@ -2206,8 +2206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics method: GET response: proto: HTTP/2.0 @@ -2226,11 +2226,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,12 +2238,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff020e5b-c3c3-4d37-b327-3ebbe84e4b8b + - 36b3470c-7f6f-49bd-9f05-a839c9618ea4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.356842ms + duration: 53.225642ms - id: 45 request: proto: HTTP/1.1 @@ -2259,8 +2259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -2268,20 +2268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:01.505501+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,78 +2289,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2311ea6f-30c8-4eb5-8c5d-f59ec2b1b5b7 + - fce5acae-f2b4-440e-9d80-5de83c3e49f9 status: 200 OK code: 200 - duration: 208.069635ms + duration: 115.378542ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:57.476503Z","id":"a9bcc30b-9450-4ae6-a794-398f3f534927","product_resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:57.476503Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 92dc52cd-d12f-4400-810b-21ecd5143091 - status: 200 OK - code: 200 - duration: 131.93656ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action method: POST response: proto: HTTP/2.0 @@ -2368,22 +2319,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9/action","href_result":"/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9","id":"88eb5bc4-6bff-4d39-a7d3-5415bb5c60c8","progress":0,"started_at":"2025-06-10T15:29:15.432594+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action","href_result":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c","id":"44bd5d5f-d152-481f-b75e-3b26834764c3","progress":0,"started_at":"2025-10-08T23:04:40.058191+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/88eb5bc4-6bff-4d39-a7d3-5415bb5c60c8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/44bd5d5f-d152-481f-b75e-3b26834764c3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,501 +2342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea05ef32-f6b5-4c9f-a9f8-b744d7add76b + - 03d0c9f1-bb45-4211-8751-517462b21b3c status: 202 Accepted code: 202 - duration: 297.205905ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6cbbabbe-a8c1-47bf-b638-982e76fd6ef8 - status: 200 OK - code: 200 - duration: 173.619745ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0428b93c-e535-4ef8-bf1d-8f782e3419c4 - status: 200 OK - code: 200 - duration: 189.384411ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7d12d4b-e312-438c-b0e5-7a28180eae92 - status: 200 OK - code: 200 - duration: 198.65171ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:31 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eee3f5ec-9b32-4ef7-8371-6296978c0a17 - status: 200 OK - code: 200 - duration: 252.942169ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b19573e-9673-465a-821a-fcebdb0e5354 - status: 200 OK - code: 200 - duration: 216.521904ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8992c396-c60e-41c5-b593-dfe784e2d759 - status: 200 OK - code: 200 - duration: 448.808523ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5641134e-f45c-4fb0-a9db-1561f1250d9d - status: 200 OK - code: 200 - duration: 226.88093ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f26fe21-ef3d-4fb5-9531-249176d2a131 - status: 200 OK - code: 200 - duration: 171.421079ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8ad3242-6340-4e3b-8341-4f68ab8c4616 - status: 200 OK - code: 200 - duration: 236.774976ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1841 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1841" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9122ca01-4e15-4684-84c0-68fb0fe110a6 - status: 200 OK - code: 200 - duration: 155.751641ms - - id: 58 + duration: 174.334729ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2900,8 +2361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -2909,20 +2370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1873 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:29:15.188678+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1873" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2930,11 +2391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e16b37f-13f8-40c1-941e-3560f0429c54 + - 770b4016-0864-4810-88e5-81347036ce54 status: 200 OK code: 200 - duration: 195.021118ms - - id: 59 + duration: 110.383257ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2949,8 +2410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -2958,20 +2419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1724 + content_length: 1873 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:30:11.031910+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1724" + - "1873" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2979,11 +2440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30a94bab-c63e-4815-b919-4d8b36f0414a + - 4fdaaf9d-1c4e-4716-bb19-25e99260f8d3 status: 200 OK code: 200 - duration: 193.458978ms - - id: 60 + duration: 111.655812ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2998,8 +2459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -3007,20 +2468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1724 + content_length: 1873 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:57.220142+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-recursing-banach","id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:ef","maintenances":[],"modification_date":"2025-06-10T15:30:11.031910+00:00","name":"tf-srv-recursing-banach","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1724" + - "1873" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3028,58 +2489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e26d05-e541-4455-a6c4-1fe29901ef0e + - 97fa6a4f-4373-4eb7-ba44-09cf9589ea8f status: 200 OK code: 200 - duration: 240.926339ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 910a9bb7-e97f-41e7-bd9c-f0e7124c9219 - status: 204 No Content - code: 204 - duration: 482.341846ms - - id: 62 + duration: 95.139994ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3094,8 +2508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -3105,7 +2519,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","type":"not_found"}' headers: Content-Length: - "143" @@ -3114,9 +2528,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3124,11 +2538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7139764e-c041-4ce3-ac66-0c047e74bc26 + - 1c74923d-5c00-44aa-b628-e8db0f01a7f6 status: 404 Not Found code: 404 - duration: 165.916885ms - - id: 63 + duration: 41.8261ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3143,8 +2557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -3154,7 +2568,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' headers: Content-Length: - "143" @@ -3163,9 +2577,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3173,11 +2587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b59368-d282-4a39-8d3f-7c1fb571b5ab + - fccc2533-9e27-4e40-ad77-5e1e5ec9d4bc status: 404 Not Found code: 404 - duration: 57.694622ms - - id: 64 + duration: 35.890325ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3192,8 +2606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: GET response: proto: HTTP/2.0 @@ -3203,7 +2617,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:57.476503Z","id":"5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e","last_detached_at":"2025-06-10T15:30:13.916276Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:13.916276Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":"2025-10-08T23:04:52.908376Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:52.908376Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3212,9 +2626,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3222,11 +2636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65cb893e-79be-44b9-843d-b243aedf0d2d + - 41422517-96f0-4e54-96f4-dac7b2ef73f4 status: 200 OK code: 200 - duration: 103.364191ms - - id: 65 + duration: 39.596751ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3241,8 +2655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5c85cd2d-2bf0-4cf4-b1d9-6bc415cff24e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 method: DELETE response: proto: HTTP/2.0 @@ -3259,9 +2673,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3269,11 +2683,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aac8162-6bbf-4b46-b337-4ef052bc7dbc + - 12d2cb7f-510c-4a25-a590-0d6d195fe2a9 status: 204 No Content code: 204 - duration: 166.130676ms - - id: 66 + duration: 76.917726ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3288,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/89a27368-d46a-4a0c-9396-b2eeeb29a6b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c method: GET response: proto: HTTP/2.0 @@ -3299,7 +2713,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"89a27368-d46a-4a0c-9396-b2eeeb29a6b9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","type":"not_found"}' headers: Content-Length: - "143" @@ -3308,9 +2722,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3318,7 +2732,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dff60fa-92d6-4a9e-b374-725e144c487f + - eb306cc5-f8a8-4a6c-b670-f22402d8e4ae status: 404 Not Found code: 404 - duration: 212.435917ms + duration: 50.170008ms diff --git a/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml b/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml index 7acfea450..0a155c1c9 100644 --- a/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a514ef-5c31-471a-bd0c-7654dd7b7d06 + - 1936205d-90ac-4582-9d0b-aac120e4d614 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 154.979125ms + duration: 41.149342ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeb8aa40-f7b4-465c-a90e-0b00acda3882 + - e2ed0e9a-a2aa-4870-ab18-a5deef913b86 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 54.31ms + duration: 53.016006ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc1b1e12-63d8-48e0-9ac1-f6b823931549 + - d2a326c2-5845-46b1-964d-a9e58c766f24 status: 200 OK code: 200 - duration: 49.091166ms + duration: 56.418199ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 276 + content_length: 274 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-zealous-galileo","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","volumes":{"0":{"boot":false,"size":80000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-srv-vibrant-raman","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":80000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2172 + content_length: 2166 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:54.920283+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2172" + - "2166" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6c73d83-b971-4d1c-aaff-3a0a19602926 + - 28c7b083-0d99-48d3-a989-8d0458a80ab4 status: 201 Created code: 201 - duration: 432.34775ms + duration: 340.603525ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2172 + content_length: 2166 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:54.920283+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2172" + - "2166" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34e2bf4a-23d5-4e85-9507-3d200120f04e + - 9904fc67-a573-4841-827c-edcbc40a95f0 status: 200 OK code: 200 - duration: 107.580167ms + duration: 83.712043ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2172 + content_length: 2166 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:54.920283+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2172" + - "2166" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a73cc24-8a68-488f-9c97-312b722dc41b + - 0c7d1926-f5ad-4e47-9a81-8a0a29f0391f status: 200 OK code: 200 - duration: 98.24075ms + duration: 77.833403ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/action","href_result":"/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a","id":"bbe40a19-1ae1-4c41-a66e-ef482ba3279c","progress":0,"started_at":"2025-09-08T07:23:55.597582+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action","href_result":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca","id":"1d92b0fb-bf5e-4f02-bb36-ead34d115708","progress":0,"started_at":"2025-10-08T23:04:28.092700+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bbe40a19-1ae1-4c41-a66e-ef482ba3279c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d92b0fb-bf5e-4f02-bb36-ead34d115708 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dda2cc85-0df2-4210-8def-44c10a8cc5e7 + - bdfbd82d-ccf8-4166-a679-9783adcc509b status: 202 Accepted code: 202 - duration: 231.1985ms + duration: 424.233296ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2194 + content_length: 2188 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:55.419335+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2194" + - "2188" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11acfaaa-a07e-4b55-a9e6-567ad6adacc3 + - fb592db7-5782-4898-9dc5-0e24534eb318 status: 200 OK code: 200 - duration: 123.005708ms + duration: 84.333824ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2291 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:55.419335+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:00 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c41bdd9b-25bc-4ea2-9149-b6218f044c13 + - 2904a70d-734e-45ec-9454-4430e07fae30 status: 200 OK code: 200 - duration: 91.004416ms + duration: 83.040096ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2291 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:23:55.419335+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2291" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:05 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8b3539c-0277-4286-9e46-ef6f2dddb1e0 + - 5458aef8-4e92-48df-abfe-4d4d7f77c6b1 status: 200 OK code: 200 - duration: 119.34ms + duration: 95.22132ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2322 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:05.908652+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 067b535b-0955-4a1b-a93b-1a1c3019dc82 + - b8224a58-d3cc-4f5e-90e7-2085624473d5 status: 200 OK code: 200 - duration: 119.285875ms + duration: 101.485702ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2322 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:05.908652+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eae9d759-1381-4b71-9a18-5409c8b08a34 + - 909a4a71-f2a3-438d-b55b-4ada0d362a72 status: 200 OK code: 200 - duration: 172.203791ms + duration: 94.1701ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/66324d94-42a9-4c07-8d04-0b19e1901993 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "526" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35094058-c2a5-4f37-b08f-8303b6b9c58d + - 858db127-980e-4a66-929a-7da507188f66 status: 200 OK code: 200 - duration: 73.198042ms + duration: 68.735002ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d50ef884-1cf7-47b3-b88d-b9590c73d584 + - f70b1e8b-f0c9-483c-8d45-92ba15b37995 status: 200 OK code: 200 - duration: 68.030042ms + duration: 56.984223ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adde4611-1abd-499e-8e9d-eac32c836b19 + - 70be8578-5ff4-40bb-a594-4cfb5f4d7907 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.090375ms + duration: 55.033991ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics method: GET response: proto: HTTP/2.0 @@ -791,11 +791,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,12 +803,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 414dda2f-e83b-456c-b27b-252a3cd16490 + - f2e95668-4c12-4d6e-b278-88d97a2195c3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.868ms + duration: 53.432775ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -833,20 +833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2322 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:05.908652+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcb3efc0-9573-4119-b879-93b34ad698f7 + - ef8a01b4-e8f6-4d65-9b17-bf0ee21152b2 status: 200 OK code: 200 - duration: 119.374167ms + duration: 94.604625ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/66324d94-42a9-4c07-8d04-0b19e1901993 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "526" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:11 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6705c1a-350c-4219-b5c7-0c217c5f9540 + - d9c4032b-8140-4b8d-a105-150b49fabcbf status: 200 OK code: 200 - duration: 63.666458ms + duration: 53.548358ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e171282-d5fa-426b-b36d-84f797fcecea + - 6d9e7859-bbec-4141-b40e-57fe67fc95cd status: 200 OK code: 200 - duration: 66.744875ms + duration: 63.781525ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3af4d8e1-d515-4982-9998-95e796938209 + - 8913d2d7-ae18-457c-baa8-55c1f2b275b4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 69.386167ms + duration: 71.156167ms - id: 20 request: proto: HTTP/1.1 @@ -1024,8 +1024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2322 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:05.908652+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6e2b9d0-934e-4592-a1b5-d159fab9c3a4 + - dfbfd799-2bfc-4028-b003-a19fad6c34ff status: 200 OK code: 200 - duration: 124.933208ms + duration: 74.290673ms - id: 21 request: proto: HTTP/1.1 @@ -1073,7 +1073,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1093,11 +1093,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1105,12 +1105,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cf07f1b-f9d3-462f-b60a-af374d20ec0c + - f8a66502-730f-4215-ade5-2f22cb7769e9 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.097667ms + duration: 45.553729ms - id: 22 request: proto: HTTP/1.1 @@ -1126,7 +1126,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1146,11 +1146,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1158,12 +1158,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25e82153-cf1a-4d57-ac7c-d03b4847ba79 + - f8804ac3-1047-47fa-b31c-37e5f1d12a99 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 52.788375ms + duration: 40.778753ms - id: 23 request: proto: HTTP/1.1 @@ -1179,8 +1179,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -1188,20 +1188,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2322 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:05.908652+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1209,29 +1209,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9913209a-d210-4a88-a9af-1d204a79cb9a + - 757809f8-adba-4889-8196-3f1c0e95a192 status: 200 OK code: 200 - duration: 120.682042ms + duration: 86.625193ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action method: POST response: proto: HTTP/2.0 @@ -1239,22 +1239,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a/action","href_result":"/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a","id":"9182a995-c5c1-454e-9182-e76c25009d4d","progress":0,"started_at":"2025-09-08T07:24:12.815793+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action","href_result":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca","id":"a2b0e947-4590-4dc8-9bc5-ca4112099fa0","progress":0,"started_at":"2025-10-08T23:04:45.178876+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9182a995-c5c1-454e-9182-e76c25009d4d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a2b0e947-4590-4dc8-9bc5-ca4112099fa0 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1262,10 +1262,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec05fa8f-4d73-4d9a-9a0f-f81d87cf226f + - 91a801f1-bd3a-4124-bf72-a0b1300cef5b status: 202 Accepted code: 202 - duration: 169.733125ms + duration: 171.158029ms - id: 25 request: proto: HTTP/1.1 @@ -1281,8 +1281,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -1290,20 +1290,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2285 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:45.046279+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:12 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1311,10 +1311,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de7eb0f5-9829-49d0-a8dd-87ccbd2f5cc3 + - 6d08db91-89ae-4e40-9dd0-c0f302fd0f57 status: 200 OK code: 200 - duration: 124.272084ms + duration: 79.962851ms - id: 26 request: proto: HTTP/1.1 @@ -1330,8 +1330,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -1339,20 +1339,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"287e94f8-cae8-40f3-bd81-8687b148ffca","type":"not_found"}' headers: Content-Length: - - "2288" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:18 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1360,10 +1360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7145c910-5afa-44b7-9537-03b307ea4ff5 - status: 200 OK - code: 200 - duration: 104.557833ms + - 6df40c18-d75d-4fe0-b4e7-94c1e8d5d0cb + status: 404 Not Found + code: 404 + duration: 50.153918ms - id: 27 request: proto: HTTP/1.1 @@ -1379,545 +1379,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f56527d-a64a-4deb-8801-4cd70a8f2f49 - status: 200 OK - code: 200 - duration: 108.530375ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 138fbe87-34ef-4ac9-b059-ea098309ee9d - status: 200 OK - code: 200 - duration: 132.54ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87595202-2ce7-4478-9f8a-f64581a3c860 - status: 200 OK - code: 200 - duration: 95.01275ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f17907ca-d047-498c-b58e-bb40b2e3ab71 - status: 200 OK - code: 200 - duration: 118.901583ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:43 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb6bc6e4-795a-4576-9735-d172db80062d - status: 200 OK - code: 200 - duration: 109.556875ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:48 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9547d2ec-015c-4296-87fa-f6860f2c2ab6 - status: 200 OK - code: 200 - duration: 113.458042ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:53 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c819060-9532-4d3d-92fe-de562519de39 - status: 200 OK - code: 200 - duration: 98.86275ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2288 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"702","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:12.696015+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2288" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b5672c2-4d4d-470d-8091-c5e073d115ea - status: 200 OK - code: 200 - duration: 102.030792ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2172 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:59.727070+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2172" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4dce4c9f-69aa-413e-a516-5dc9f7eb64af - status: 200 OK - code: 200 - duration: 95.272042ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2172 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-09-08T07:23:54.920283+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-zealous-galileo","id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:42.795139+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5cf1c79e-46b5-40d7-8eaa-51f76f099837","modification_date":"2025-06-25T15:22:42.795139+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"2973ed60-b18f-46a0-8be5-671a5345ee7b","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:81","maintenances":[],"modification_date":"2025-09-08T07:24:59.727070+00:00","name":"tf-srv-zealous-galileo","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:23:54.920283+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","name":"tf-srv-zealous-galileo"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2172" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0de73ae9-0843-47ec-862e-76b7fa3c33cf - status: 200 OK - code: 200 - duration: 107.785958ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4c50777-6a04-4eec-aa78-987524c8020b - status: 204 No Content - code: 204 - duration: 144.006542ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 method: GET response: proto: HTTP/2.0 @@ -1927,7 +1390,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","type":"not_found"}' headers: Content-Length: - "143" @@ -1936,9 +1399,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:04 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,11 +1409,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d28cbe14-ec5f-4307-9114-1b949c852f13 + - 26258726-55cd-4379-9063-e361c7947164 status: 404 Not Found code: 404 - duration: 91.736042ms - - id: 39 + duration: 34.700091ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1965,8 +1428,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/66324d94-42a9-4c07-8d04-0b19e1901993 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 method: GET response: proto: HTTP/2.0 @@ -1974,20 +1437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 450 + content_length: 127 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:54.920283+00:00","export_uri":null,"id":"66324d94-42a9-4c07-8d04-0b19e1901993","modification_date":"2025-09-08T07:25:04.205432+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","type":"not_found"}' headers: Content-Length: - - "450" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:04 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,58 +1458,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5902d96a-afcf-4e0e-acb8-f20df03ef3a0 - status: 200 OK - code: 200 - duration: 77.318459ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/66324d94-42a9-4c07-8d04-0b19e1901993 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae5d1fc9-1288-41aa-b57b-ed34976a4535 - status: 204 No Content - code: 204 - duration: 135.328084ms - - id: 41 + - 837f29c9-1303-4363-a098-d64f54262b49 + status: 404 Not Found + code: 404 + duration: 18.63988ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -2061,8 +1477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13dd3f5b-2799-4ff8-9c96-404077f7758a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca method: GET response: proto: HTTP/2.0 @@ -2072,7 +1488,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13dd3f5b-2799-4ff8-9c96-404077f7758a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"287e94f8-cae8-40f3-bd81-8687b148ffca","type":"not_found"}' headers: Content-Length: - "143" @@ -2081,9 +1497,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:04 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,7 +1507,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97f33ca3-bd34-4a5b-81ed-2e601083c10b + - 766ab877-6c5e-4fcc-881f-e25eeb7ca1f7 status: 404 Not Found code: 404 - duration: 66.808833ms + duration: 39.269005ms diff --git a/internal/services/instance/testdata/server-migrate.cassette.yaml b/internal/services/instance/testdata/server-migrate.cassette.yaml index 980cfabd8..04ba0c6b8 100644 --- a/internal/services/instance/testdata/server-migrate.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7f429a1-bc54-4bc9-82b3-48170d840160 + - 49900446-95ec-4ff8-aad3-24607f2496a2 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 156.089625ms + duration: 47.916118ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 432e9a21-f8ed-48a2-9886-08a8e92ea88f + - 39763fc6-8c39-461b-b34c-aae2aeb91fe7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 39.278459ms + duration: 53.112265ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1185" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:54 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cd9e2d0-e890-463e-a13c-a388efa1f84a + - 5ae934d9-dce4-4010-9937-3f25bb724751 status: 200 OK code: 200 - duration: 66.871458ms + duration: 72.947601ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 238 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-agitated-wescoff","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-srv-fervent-noyce","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:54.930801+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6179327-535c-4595-aaa5-79aa7dbf5118 + - a803fbb1-82ea-4f4e-b29f-7d38ce81f73b status: 201 Created code: 201 - duration: 586.85775ms + duration: 652.94855ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:54.930801+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a9775b1-f6c4-4571-8c59-9fb56a423580 + - 06e60187-d671-455e-8cda-78c50a6725f0 status: 200 OK code: 200 - duration: 126.982375ms + duration: 109.033624ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:54.930801+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9048d2ed-080b-48d2-8c68-06ac018aab9e + - 7897e872-db27-4f1d-82f2-09a35d8e3e66 status: 200 OK code: 200 - duration: 108.712041ms + duration: 90.991148ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4302f03f-64a2-4053-9667-99a4d452dc42 + - 16625419-1407-49a7-a02b-c8c0ce84dca2 status: 200 OK code: 200 - duration: 54.3735ms + duration: 46.747443ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"e6ad816d-96c2-4eaa-b79a-63bce744bfb6","progress":0,"started_at":"2025-09-08T07:23:55.806700+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"7e384088-2603-42a6-bf45-073519b9a6c0","progress":0,"started_at":"2025-10-08T23:04:28.263588+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e6ad816d-96c2-4eaa-b79a-63bce744bfb6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7e384088-2603-42a6-bf45-073519b9a6c0 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21bc552e-dceb-413f-92b2-747c407cc3f5 + - f3b196e4-8b3e-4bad-a2a2-973c7ebc7618 status: 202 Accepted code: 202 - duration: 190.319083ms + duration: 209.496699ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 1764 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:55.664677+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:28.104121+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1748" + - "1764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:55 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70b74afe-1982-4137-827e-a275cc88b329 + - cc9c3186-8c35-4257-a1fc-42825339da1f status: 200 OK code: 200 - duration: 148.742958ms + duration: 107.333934ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34717bc9-a73f-4634-aafb-d629da2a600e + - 9d9f4a2f-c7eb-4f75-bedc-1fe7515ffc15 status: 200 OK code: 200 - duration: 199.043125ms + duration: 117.057755ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed4c59a5-ce14-4450-accd-817a6dfe99fe + - 4b1e775b-affd-4f62-b672-48d2599605a3 status: 200 OK code: 200 - duration: 131.629375ms + duration: 112.468443ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b358508a-5de8-4138-8e78-55ee49c09d97 + - 68eb3617-5c9f-4426-9fbc-921790f6a33a status: 404 Not Found code: 404 - duration: 38.142167ms + duration: 45.539915ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85b28da9-56d9-4b7b-8744-8bf8f56a2c3b + - 771323a9-c6c9-4957-9414-8cd63ca41e59 status: 200 OK code: 200 - duration: 58.641042ms + duration: 47.364515ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dfc3eb6-fd31-43ec-b56c-c4c50b457890 + - 78b42d90-d913-4602-bbb6-1828d978b77d status: 200 OK code: 200 - duration: 61.142125ms + duration: 56.085992ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dd61ede-c796-4698-9524-c25ed92aa9d0 + - 263ecef9-34b8-4538-b0d4-e6be4efd5933 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.751625ms + duration: 50.612332ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -791,11 +791,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,12 +803,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5547eb5c-fd5a-460d-a6dd-b8738a9dfbf0 + - 862473bd-b07f-4dd6-80aa-85dfa88bded3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.086625ms + duration: 52.115627ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -833,20 +833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a84d2c9-b0e2-47f7-a192-82378367fc4c + - 02e6341a-ff0c-4ff1-84a5-520e0226318f status: 200 OK code: 200 - duration: 154.491916ms + duration: 113.814036ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfa0cc62-0d81-412b-a1f9-247a6865435c + - a3a87039-8c7d-46d1-8683-77164078b122 status: 404 Not Found code: 404 - duration: 36.592833ms + duration: 26.716744ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe2d0a29-809c-4e16-92e3-1dd570309166 + - 78414028-71ed-4a24-91ba-e98af8643291 status: 200 OK code: 200 - duration: 43.762666ms + duration: 50.324278ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -991,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae59bccb-93b7-4df8-82d4-e7628996ae8a + - 0c088bd5-5eab-48aa-8cc1-d97f8eb6c95a status: 200 OK code: 200 - duration: 63.294083ms + duration: 56.326417ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -1040,11 +1040,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,12 +1052,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f9c9374-bef8-45d0-9049-ea6dd858de27 + - 8f1ba5c7-c9b8-4cca-82cc-26567c85ff56 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.49425ms + duration: 58.948244ms - id: 21 request: proto: HTTP/1.1 @@ -1073,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbfe752f-709d-4a5a-afe9-9f4db581c589 + - 4f6a31e8-5c1f-41ae-9933-1fc9e2edc776 status: 200 OK code: 200 - duration: 122.317459ms + duration: 91.131776ms - id: 22 request: proto: HTTP/1.1 @@ -1122,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeacdc08-01e3-4f76-8170-030b79ac6391 + - a81833ad-9907-4710-a32d-c35858f1e6d6 status: 404 Not Found code: 404 - duration: 31.937458ms + duration: 24.991959ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -1180,20 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 617b8490-1e36-4f0d-8aa4-75aa800172d8 + - ad45e7d3-0a3a-4a8a-95fd-23802691aae7 status: 200 OK code: 200 - duration: 39.840209ms + duration: 37.030331ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 172ac84f-7419-4cd2-a73d-aa3aed63c6a3 + - a01c5e38-7ef6-4b7e-bc13-b4961e09e662 status: 200 OK code: 200 - duration: 63.680292ms + duration: 52.023275ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfda9b7c-79d2-4819-9ea2-d90a9343c230 + - 2aa7a010-5834-4428-8476-0299deceb29d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.39025ms + duration: 47.987829ms - id: 26 request: proto: HTTP/1.1 @@ -1322,8 +1322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbf09a5d-6783-4039-a5e8-bc2e388c1de6 + - 0144bb57-f638-45ac-9b9a-47f3736d9578 status: 200 OK code: 200 - duration: 154.01975ms + duration: 103.331426ms - id: 27 request: proto: HTTP/1.1 @@ -1371,7 +1371,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1391,11 +1391,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,12 +1403,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30f64d01-c4b7-49f5-a90f-4c37a6412ef0 + - 339fe75a-61dd-410a-8dcd-88e61671d771 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 39.539791ms + duration: 44.076073ms - id: 28 request: proto: HTTP/1.1 @@ -1424,7 +1424,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1444,11 +1444,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1456,12 +1456,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1249eb4c-180f-4914-8276-709cc5402ded + - 8995c68b-ee11-4f78-8ae3-d8675d628355 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 37.853ms + duration: 114.967413ms - id: 29 request: proto: HTTP/1.1 @@ -1477,8 +1477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1486,20 +1486,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1507,10 +1507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba834ff-ab7e-4382-8067-7d5185730283 + - cc7c8305-d08f-462e-8c3d-96adab78a9c5 status: 200 OK code: 200 - duration: 127.063084ms + duration: 106.055812ms - id: 30 request: proto: HTTP/1.1 @@ -1526,7 +1526,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1546,11 +1546,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1558,12 +1558,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df7fa341-9cc6-4a7e-bf6d-6e8062992ca2 + - c0cf2f56-24e1-4af5-bd50-4e26d9c74304 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 44.313584ms + duration: 45.319456ms - id: 31 request: proto: HTTP/1.1 @@ -1579,7 +1579,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -1599,11 +1599,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1611,12 +1611,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b0d7372-b1a1-44a1-b481-06a31c5e6769 + - 3c2eee99-691d-47ad-a7e1-9cae73774b8c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 48.505666ms + duration: 49.248164ms - id: 32 request: proto: HTTP/1.1 @@ -1632,8 +1632,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1641,20 +1641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1662,10 +1662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b8e1230-aafc-412f-a764-beb5abc83904 + - 388fb781-7b32-403f-b0e9-4cf6ec4fd667 status: 200 OK code: 200 - duration: 130.062417ms + duration: 129.851114ms - id: 33 request: proto: HTTP/1.1 @@ -1681,8 +1681,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1690,20 +1690,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1711,10 +1711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1887b7-68d7-4979-a1fe-3db4b10d8319 + - 456dc7b9-8776-4680-bea6-ea02d620a848 status: 200 OK code: 200 - duration: 151.395833ms + duration: 102.242338ms - id: 34 request: proto: HTTP/1.1 @@ -1730,8 +1730,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1739,20 +1739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1760,10 +1760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f70b364-c94b-41bb-a1ff-80167ba0df9e + - 41282bb2-dd18-4811-bbad-50aa61c7c6f5 status: 200 OK code: 200 - duration: 122.646666ms + duration: 103.427684ms - id: 35 request: proto: HTTP/1.1 @@ -1779,8 +1779,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1788,20 +1788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:23:57.796736+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,10 +1809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7ea928b-392c-4dd5-8c85-ee9d9d7d8b35 + - f7ab6d82-160a-49d4-aa9e-0b881087a5ae status: 200 OK code: 200 - duration: 145.683167ms + duration: 90.50298ms - id: 36 request: proto: HTTP/1.1 @@ -1828,8 +1828,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -1837,20 +1837,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:03 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1858,10 +1858,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ba7bae-4c0c-4a7f-a7bb-e7ae10e5d06d + - 404956a3-442c-4838-b236-d5eeee8ad849 status: 200 OK code: 200 - duration: 39.508209ms + duration: 49.801529ms - id: 37 request: proto: HTTP/1.1 @@ -1879,8 +1879,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action method: POST response: proto: HTTP/2.0 @@ -1890,7 +1890,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"2732c071-996d-42e6-9b5d-607db85e26a5","progress":0,"started_at":"2025-09-08T07:24:04.021274+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"f1797688-7d48-4737-b298-871f073bf0a2","progress":0,"started_at":"2025-10-08T23:04:36.227956+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -1899,11 +1899,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:04 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2732c071-996d-42e6-9b5d-607db85e26a5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f1797688-7d48-4737-b298-871f073bf0a2 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1911,10 +1911,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 232dbc49-b495-4d2b-8c06-1b6646688fd3 + - 11cd23bb-ed76-4bae-a586-c9d1102dfac6 status: 202 Accepted code: 202 - duration: 221.98775ms + duration: 178.737047ms - id: 38 request: proto: HTTP/1.1 @@ -1930,8 +1930,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1939,20 +1939,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:04 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1960,10 +1960,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52f0ad20-3908-43d5-bd99-34586c649a6c + - 8d5d2867-3cc3-4e72-8641-deac38d65997 status: 200 OK code: 200 - duration: 169.619584ms + duration: 89.364301ms - id: 39 request: proto: HTTP/1.1 @@ -1979,8 +1979,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -1988,20 +1988,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:09 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2009,10 +2009,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28adb096-bfaf-49f0-b8e7-6c692968ebd7 + - a8d14331-0f7f-4f2e-8f02-844e589666f7 status: 200 OK code: 200 - duration: 225.026208ms + duration: 106.140887ms - id: 40 request: proto: HTTP/1.1 @@ -2028,8 +2028,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2037,20 +2037,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:14 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2058,10 +2058,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d9d1b4-f525-4194-ad94-017edb4542f4 + - f8616b6d-36b0-4144-bc0e-54af4c484849 status: 200 OK code: 200 - duration: 129.687041ms + duration: 98.99637ms - id: 41 request: proto: HTTP/1.1 @@ -2077,8 +2077,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2086,20 +2086,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2107,10 +2107,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6287f63-7653-4345-9a20-cd24167d81c2 + - 807a5bac-4362-433b-82bc-b882202f2140 status: 200 OK code: 200 - duration: 150.947458ms + duration: 105.976548ms - id: 42 request: proto: HTTP/1.1 @@ -2126,8 +2126,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2135,20 +2135,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:24 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2156,10 +2156,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d25e0f-b435-4b4e-8429-6a1e3a8df853 + - 7466cac4-0675-42d8-a2cf-748eb8c53f2a status: 200 OK code: 200 - duration: 127.821291ms + duration: 94.837882ms - id: 43 request: proto: HTTP/1.1 @@ -2175,8 +2175,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2184,20 +2184,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:29 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2205,10 +2205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f8d393c-f7da-436c-ae0b-904ed7a70765 + - 0d23b7f7-00f1-473e-ba6a-71c8865d0cfd status: 200 OK code: 200 - duration: 188.384917ms + duration: 105.72123ms - id: 44 request: proto: HTTP/1.1 @@ -2224,8 +2224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2233,20 +2233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"201","node_id":"8","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:03.877921+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:35 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2254,10 +2254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cf0f66d-39b2-48d1-a8ec-753910769219 + - 5e82ea3e-269f-41ce-bb77-ab7bce76bbdd status: 200 OK code: 200 - duration: 176.683ms + duration: 121.37752ms - id: 45 request: proto: HTTP/1.1 @@ -2273,8 +2273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2282,20 +2282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:36.974467+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:40 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2303,11 +2303,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16644d96-5836-42cf-9190-eb8a91acf6eb + - 9ce361f9-770e-49c5-92f9-0a43b5d6976d status: 200 OK code: 200 - duration: 127.254625ms + duration: 105.673496ms - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1859 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1859" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 564850f5-e7f1-4db2-a37d-7db73eeb34da + status: 200 OK + code: 200 + duration: 97.026367ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1742 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:19.140994+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1742" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8444217-f76a-4d36-9d8c-091602884fa4 + status: 200 OK + code: 200 + duration: 115.169381ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2324,8 +2422,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: PATCH response: proto: HTTP/2.0 @@ -2333,20 +2431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1725 + content_length: 1741 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:40.432864+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.393086+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1725" + - "1741" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:40 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2354,11 +2452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92966998-e141-4d5d-9e96-a5f974a35082 + - 9acf56a5-bd79-4fa4-8300-8a70c6f24de4 status: 200 OK code: 200 - duration: 382.963542ms - - id: 47 + duration: 269.863906ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2373,8 +2471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2382,20 +2480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1725 + content_length: 1741 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:40.432864+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.393086+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1725" + - "1741" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:40 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2403,11 +2501,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 379002a2-6fcb-437e-8812-ac212ee8d539 + - 171991a8-244a-4be2-aff5-687d2a02efee status: 200 OK code: 200 - duration: 245.158833ms - - id: 48 + duration: 109.466948ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2422,8 +2520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -2431,20 +2529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:41 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2452,11 +2550,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30dd4ef5-821c-4fd5-8eca-a83cb2ede8b9 + - e6dde849-e12b-4174-981e-4d6b727d2d26 status: 200 OK code: 200 - duration: 46.324041ms - - id: 49 + duration: 43.397727ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2473,8 +2571,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action method: POST response: proto: HTTP/2.0 @@ -2484,7 +2582,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"c82cca8b-d746-4490-89dc-fabe61cb029a","progress":0,"started_at":"2025-09-08T07:24:41.202984+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"3b17283d-567b-461a-9561-4d0e2f228f74","progress":0,"started_at":"2025-10-08T23:05:22.906167+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2493,11 +2591,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:41 GMT + - Wed, 08 Oct 2025 23:05:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c82cca8b-d746-4490-89dc-fabe61cb029a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3b17283d-567b-461a-9561-4d0e2f228f74 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2505,11 +2603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3497ea7a-d6c5-4c6b-b65f-1adeb967ebe7 + - 877fc7e9-0e22-4544-9996-7471a0493c6f status: 202 Accepted code: 202 - duration: 184.273667ms - - id: 50 + duration: 193.569794ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2524,8 +2622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2533,20 +2631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1747 + content_length: 1763 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:41.066806+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.752971+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1747" + - "1763" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:41 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2554,11 +2652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc2822c-de85-40d3-985f-46157acbb94e + - cb687257-1cd7-4558-b3bf-d840aa27faa7 status: 200 OK code: 200 - duration: 138.553958ms - - id: 51 + duration: 362.22126ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2573,8 +2671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2582,20 +2680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2603,11 +2701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b194acd-f12f-4c7e-8f26-86c25131449e + - 228e6200-4882-4422-b7eb-2c477b751d5c status: 200 OK code: 200 - duration: 154.622958ms - - id: 52 + duration: 104.555067ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2622,8 +2720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2631,20 +2729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2652,11 +2750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03dd2c89-0b20-4299-826d-4b2f4ad13244 + - 6d5f9903-52cf-404e-ac51-6913da6c306f status: 200 OK code: 200 - duration: 174.082959ms - - id: 53 + duration: 101.726167ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2671,8 +2769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -2682,7 +2780,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -2691,9 +2789,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2701,11 +2799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d019d2ca-a2e8-40c4-80dc-f4f569fb8708 + - f2e61df1-3682-41ce-8787-c4b05960fe21 status: 404 Not Found code: 404 - duration: 34.312458ms - - id: 54 + duration: 24.63977ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2720,8 +2818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -2729,20 +2827,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2750,11 +2848,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dbb2bf7-fd9e-4d0b-ae82-e4328dd11af5 + - 77287378-d8f0-410f-b8e2-2a0ae9472b04 status: 200 OK code: 200 - duration: 44.498333ms - - id: 55 + duration: 42.393545ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2769,8 +2867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -2789,9 +2887,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2799,11 +2897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac07e59c-66f1-4632-b27c-bf83faa9b20e + - 6b50df0b-2415-4874-b823-23cf6473b212 status: 200 OK code: 200 - duration: 59.810042ms - - id: 56 + duration: 58.964971ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2818,8 +2916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -2838,11 +2936,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:46 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2850,13 +2948,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c8b63e-587b-4598-b5a2-225a76f94c43 + - 170de70f-f018-4709-abc9-7d4525544ee1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.5915ms - - id: 57 + duration: 51.214825ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2871,8 +2969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -2891,11 +2989,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2903,13 +3001,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b1d3d37-226f-4562-bad5-baa62e250da2 + - a6fd4eaf-bbed-4beb-882d-a40d8283e7c5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.142666ms - - id: 58 + duration: 49.754831ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2924,8 +3022,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -2933,20 +3031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2954,11 +3052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 661f43a1-8606-4162-84bf-a62da511431e + - 99afaf24-9170-4d75-a874-489986e17651 status: 200 OK code: 200 - duration: 138.946375ms - - id: 59 + duration: 117.654961ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2973,8 +3071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -2984,7 +3082,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -2993,9 +3091,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3003,11 +3101,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b486173-bb99-4368-aaab-85fa44812b4e + - 6dde2876-2a8e-4b66-97e5-01236acde5b7 status: 404 Not Found code: 404 - duration: 34.920167ms - - id: 60 + duration: 31.547315ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3022,8 +3120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -3031,20 +3129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3052,11 +3150,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90250d34-0b55-4878-b5df-f2c4cc20f144 + - cb5dba70-9a05-4a40-bc2b-6286f8eecea9 status: 200 OK code: 200 - duration: 53.34775ms - - id: 61 + duration: 51.861673ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3071,8 +3169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -3091,9 +3189,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3101,11 +3199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 477b9aa9-5be9-40f3-8afd-2bc9e7d9e1b8 + - 16f87e91-912d-454e-a0c2-b62692438a82 status: 200 OK code: 200 - duration: 68.613708ms - - id: 62 + duration: 56.980594ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3120,8 +3218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -3140,11 +3238,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3152,13 +3250,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e6750af-68b8-4851-b29b-745be16440f4 + - ceb8779b-9e64-4c14-89e9-b812a971224a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 83.976833ms - - id: 63 + duration: 52.992428ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3173,8 +3271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3182,20 +3280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3203,11 +3301,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecdb4519-9798-493f-b209-303d6151ee17 + - 0237d1e4-b1a7-4bc9-8f89-6829dc7a9f16 status: 200 OK code: 200 - duration: 166.482417ms - - id: 64 + duration: 97.31711ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3222,8 +3320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -3233,7 +3331,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -3242,9 +3340,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3252,11 +3350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 816504af-0622-4ee4-9bc2-683a18fce153 + - 62f7a8a0-fdbd-4c57-9024-40252cc6601a status: 404 Not Found code: 404 - duration: 29.64525ms - - id: 65 + duration: 29.897469ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3271,8 +3369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -3280,20 +3378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:47 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3301,11 +3399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eea4efc-73ba-4002-838d-431d7f343708 + - 0b04d422-d3f2-46d2-aade-397fe76418a9 status: 200 OK code: 200 - duration: 42.891708ms - - id: 66 + duration: 48.333758ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3320,8 +3418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -3340,9 +3438,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3350,11 +3448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e637b204-f02e-4936-ad64-dc381901f2c4 + - cd0dc80b-2a1a-4278-b9da-279ded9a1a79 status: 200 OK code: 200 - duration: 59.521541ms - - id: 67 + duration: 50.939285ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3369,8 +3467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -3389,11 +3487,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3401,13 +3499,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c91810c-6117-418b-9e6a-56a3dd7163fa + - 2a405911-c349-4753-bc8c-ecd53c19cf38 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.707958ms - - id: 68 + duration: 62.075562ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3422,8 +3520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3431,20 +3529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3452,11 +3550,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d178a2fc-51c8-4b60-aa3f-906f8eea6ef1 + - f5ba958b-d1bb-4993-b4f7-1e444b980aca status: 200 OK code: 200 - duration: 136.6355ms - - id: 69 + duration: 111.852834ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3471,7 +3569,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -3491,11 +3589,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3503,13 +3601,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6834eb4-8cd3-4ea0-bdf2-abd7bcd30fb7 + - eb21551d-de05-4b89-8ad9-d5a53afdae15 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 51.983333ms - - id: 70 + duration: 53.082925ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3524,7 +3622,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -3544,11 +3642,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3556,13 +3654,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65d3447e-bf2e-4fc1-8150-ccc1494d5826 + - 2a8daf4e-fdda-4fa8-a57a-120be0ae979f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 58.471375ms - - id: 71 + duration: 75.857129ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3577,8 +3675,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3586,20 +3684,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3607,11 +3705,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cbe1968-57a3-4763-831f-cad6f452eb9a + - 74dc511a-ccf1-4348-b0e5-09a77e453dda status: 200 OK code: 200 - duration: 157.673958ms - - id: 72 + duration: 95.20609ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3626,7 +3724,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -3646,11 +3744,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3658,13 +3756,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2247cda3-f679-4cfd-a166-8676872a4caf + - 8b627776-466f-4064-b7fe-873cd3bd8dbd X-Total-Count: - "75" status: 200 OK code: 200 - duration: 37.101542ms - - id: 73 + duration: 48.383581ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3679,7 +3777,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -3699,11 +3797,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3711,13 +3809,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 191cac82-ed27-4e8d-af46-b932c80ad4c9 + - 525fdd74-294a-447d-abda-5d23ac7b29ff X-Total-Count: - "75" status: 200 OK code: 200 - duration: 41.761584ms - - id: 74 + duration: 51.393365ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3732,8 +3830,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3741,20 +3839,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3762,11 +3860,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7441d6e7-91ee-412c-a67f-6822946d271e + - 3ca40408-9f6e-4df7-bf78-ff843d4bab10 status: 200 OK code: 200 - duration: 118.356667ms - - id: 75 + duration: 109.228052ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3781,8 +3879,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3790,20 +3888,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:48 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3811,11 +3909,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b376825-35e5-47bf-9ea2-283b422e7464 + - e66ab28a-7e61-4bae-800e-95323ea5815c status: 200 OK code: 200 - duration: 146.077208ms - - id: 76 + duration: 97.04236ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3830,8 +3928,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3839,20 +3937,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:49 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3860,11 +3958,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 189bcb84-ef55-4fe5-aad0-4d89d3642dbd + - 259691c4-bb1f-4a3b-acfc-5a0ed2ccb312 status: 200 OK code: 200 - duration: 125.341167ms - - id: 77 + duration: 99.961738ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3879,8 +3977,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -3888,20 +3986,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1881 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:43.296339+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1881" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:49 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3909,11 +4007,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 242c03f3-eb7d-4cd2-8506-5178ab6702c9 + - 3e14ee96-c975-4a23-ab00-0f78a8ea73cc status: 200 OK code: 200 - duration: 109.538667ms - - id: 78 + duration: 132.174055ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3928,8 +4026,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -3937,20 +4035,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:49 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3958,11 +4056,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f092bb76-9b26-44e4-b64d-037e4fda6f58 + - 0e51b1b1-aa32-4ca5-b1e9-c0c8998499c3 status: 200 OK code: 200 - duration: 54.942333ms - - id: 79 + duration: 50.257852ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3979,8 +4077,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action method: POST response: proto: HTTP/2.0 @@ -3990,7 +4088,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"77443e19-3205-451c-ac53-e6844f3a4f88","progress":0,"started_at":"2025-09-08T07:24:49.418189+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"0b00b9cc-625c-4f57-9136-942049786030","progress":0,"started_at":"2025-10-08T23:05:31.054501+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3999,11 +4097,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:49 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/77443e19-3205-451c-ac53-e6844f3a4f88 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b00b9cc-625c-4f57-9136-942049786030 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4011,11 +4109,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9ab125-3826-48a8-9163-f970c9a93306 + - 7f959aeb-8bd7-415d-a85b-1cdeb4d1b6d8 status: 202 Accepted code: 202 - duration: 169.836958ms - - id: 80 + duration: 165.458918ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4030,8 +4128,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4039,20 +4137,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:49 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4060,11 +4158,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 939951b2-4068-403e-8f4e-32c05bfdd9c9 + - 320eeeda-d583-4d25-a442-8cbe8d40c2a1 status: 200 OK code: 200 - duration: 147.454166ms - - id: 81 + duration: 102.441011ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4079,8 +4177,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4088,20 +4186,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:54 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4109,11 +4207,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c17c78-fe82-4e52-9c23-da903a224be0 + - d79ae277-a882-49d5-9f72-0fc46fbc1222 status: 200 OK code: 200 - duration: 143.911791ms - - id: 82 + duration: 109.761808ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4128,8 +4226,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4137,20 +4235,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:59 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4158,11 +4256,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f5fb303-8984-490b-ba26-17988cc9ee2d + - 41769b17-ed47-460d-8fdb-e52f8020bb62 status: 200 OK code: 200 - duration: 128.562917ms - - id: 83 + duration: 127.870376ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4177,8 +4275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4186,20 +4284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:04 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4207,11 +4305,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1613a821-8077-4a2d-b2cc-adacb735fbf9 + - 4d34b356-a770-471c-b1a2-fdf28ce42b34 status: 200 OK code: 200 - duration: 123.58925ms - - id: 84 + duration: 93.807873ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4226,8 +4324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4235,20 +4333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:10 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4256,11 +4354,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b066f5b2-27c9-4537-8b76-f2e1929b3cc0 + - 18486393-91af-40a1-9b38-5fe264eb51d9 status: 200 OK code: 200 - duration: 157.495458ms - - id: 85 + duration: 97.876137ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4275,8 +4373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4284,20 +4382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:15 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4305,11 +4403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b87f557d-46a2-4de7-b8e3-02d442294b47 + - 370c6eb4-11f2-41a8-b3e0-36a0ab83c072 status: 200 OK code: 200 - duration: 140.035333ms - - id: 86 + duration: 104.086577ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4324,8 +4422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4333,20 +4431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"901","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:24:49.301804+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1841" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:20 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4354,11 +4452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54b43059-bbe1-48f5-9747-e1431394d2d4 + - 9aae7007-a628-46cb-8a88-693dfad18f30 status: 200 OK code: 200 - duration: 142.265333ms - - id: 87 + duration: 134.241066ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4373,8 +4471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4382,20 +4480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1725 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:22.330066+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1725" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:25 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4403,50 +4501,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1354a1f6-9eb7-4029-bc0f-2dc3dc942587 + - 170454df-c8ac-4b73-972b-145daed5004a status: 200 OK code: 200 - duration: 138.970708ms - - id: 88 + duration: 101.379068ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 30 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"commercial_type":"PRO2-XXS"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1856 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:25.654664+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1856" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:25 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4454,11 +4550,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b63c2655-3d39-4d15-824a-6ba9001402d5 + - e9ab7e80-9a67-42cb-b0a6-5c4dad034ac0 status: 200 OK code: 200 - duration: 384.170083ms - - id: 89 + duration: 112.194818ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4473,8 +4569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4482,20 +4578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1741 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:25.654664+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:13.858887+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1741" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:26 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4503,48 +4599,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79589ddd-db8b-4d91-a67d-e5cb6982a5f5 + - cfa25f99-bd36-4d5d-b3f0-5ec7c9f71790 status: 200 OK code: 200 - duration: 121.400333ms - - id: 90 + duration: 108.001619ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 30 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"commercial_type":"PRO2-XXS"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1742 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.254751+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:26 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4552,52 +4650,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 139055ce-973c-4661-9508-a35dab80c4e9 + - 25ae38aa-636d-4dee-b896-fc13050eb77f status: 200 OK code: 200 - duration: 40.391083ms - - id: 91 + duration: 240.175518ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1742 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"0cedb142-cdff-4db6-b02c-1301249ae49a","progress":0,"started_at":"2025-09-08T07:25:26.294065+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.254751+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:26 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0cedb142-cdff-4db6-b02c-1301249ae49a + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4605,11 +4699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6ec50e3-3009-4c00-9026-00e9c7bfc21a - status: 202 Accepted - code: 202 - duration: 186.210167ms - - id: 92 + - 563feb39-d7cc-4890-93ad-e8dcda6f285d + status: 200 OK + code: 200 + duration: 93.130005ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4624,8 +4718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -4633,20 +4727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:26.154839+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "1748" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:26 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4654,48 +4748,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 036b0cc9-dcac-4679-a3e7-b9324174962c + - b9312880-6b78-46c4-94f5-f5b0a2a62817 status: 200 OK code: 200 - duration: 265.899542ms - - id: 93 + duration: 58.803469ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:28.252937+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"c66cd492-d7fe-4307-b219-3ccf86649c11","progress":0,"started_at":"2025-10-08T23:06:17.728302+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:31 GMT + - Wed, 08 Oct 2025 23:06:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c66cd492-d7fe-4307-b219-3ccf86649c11 Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4703,11 +4801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 078b5b72-4442-4372-a9df-1e5c4e2afdb7 - status: 200 OK - code: 200 - duration: 121.763875ms - - id: 94 + - a2001155-a1c9-417e-9420-3992d7d68561 + status: 202 Accepted + code: 202 + duration: 174.965733ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4722,8 +4820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4731,20 +4829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1882 + content_length: 1764 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:28.252937+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.593158+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1882" + - "1764" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:31 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4752,11 +4850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54199ef8-9a61-47cb-a5ad-97020fdad6fe + - f2dd5754-1752-43f8-908b-d91d9ce4f188 status: 200 OK code: 200 - duration: 130.550583ms - - id: 95 + duration: 103.233929ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4771,8 +4869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4780,20 +4878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1898 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:31 GMT + - Wed, 08 Oct 2025 23:06:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4801,11 +4899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11380662-31ec-4cee-9bbd-0ad85d78ff77 - status: 404 Not Found - code: 404 - duration: 40.298ms - - id: 96 + - a8eb60e0-842d-442a-8a5c-13a0b004ce27 + status: 200 OK + code: 200 + duration: 114.463705ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4820,8 +4918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -4829,20 +4927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1898 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:31 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4850,11 +4948,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18b1f95a-3e7d-459f-ad0b-286f7f83a417 + - ccd5bbc9-884b-4c8d-ad7e-da009d3933dc status: 200 OK code: 200 - duration: 48.577292ms - - id: 97 + duration: 81.577898ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4869,8 +4967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -4878,20 +4976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:31 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4899,11 +4997,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1af1106f-d4f7-419f-aa35-23aeb2f469dc - status: 200 OK - code: 200 - duration: 64.086375ms - - id: 98 + - 972cd4c6-e4ff-4c3b-afff-189ba7f779f9 + status: 404 Not Found + code: 404 + duration: 25.390756ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4918,8 +5016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -4927,22 +5025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 705 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:32 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4950,13 +5046,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b97624b3-2a7e-4bc5-a96d-23540ee94f41 - X-Total-Count: - - "0" + - a8d3e99f-82c4-49ee-ad4c-7924fba2621b status: 200 OK code: 200 - duration: 60.247584ms - - id: 99 + duration: 45.308615ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4971,8 +5065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -4980,207 +5074,7 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:32 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8434ebb1-987c-4cd7-b50e-9cb2340e7094 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 49.490291ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1882 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:28.252937+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d90098b7-473d-4f82-b175-fced78d036b5 - status: 200 OK - code: 200 - duration: 160.782042ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1d689493-8995-4a8c-b062-b6e6e2dc9ff1 - status: 404 Not Found - code: 404 - duration: 29.961042ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 686 - uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "686" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ad395ea3-687e-4f5b-a19c-b07984b3b77e - status: 200 OK - code: 200 - duration: 44.098625ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 + content_length: 17 uncompressed: false body: '{"user_data":[]}' headers: @@ -5191,9 +5085,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5201,11 +5095,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f81016a4-5094-4399-9beb-a8e34859a697 + - fc3f78b6-66c8-44be-b858-1e6758acac4f status: 200 OK code: 200 - duration: 70.907125ms - - id: 104 + duration: 67.082071ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5220,8 +5114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -5240,11 +5134,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:32 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5252,62 +5146,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eab6e2b1-440d-45d0-a389-fbffd8385f7b + - b792114a-1ec9-4655-a4ec-22e428e22474 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 88.831583ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1882 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:28.252937+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1882" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - df72ba2e-63f5-411d-94c2-42bb52d9ffa4 - status: 200 OK - code: 200 - duration: 155.393875ms - - id: 106 + duration: 62.802835ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5322,8 +5167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -5331,20 +5176,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-09-08T07:23:55.061518Z","id":"ac6e5c6a-0a6e-44dc-9bb6-176fb7ae32ec","product_resource_id":"6885203a-5f71-4642-b1c5-53b912459244","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:23:55.061518Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "686" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:33 GMT + - Wed, 08 Oct 2025 23:06:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5352,64 +5199,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecee49d9-c828-46fe-ae34-2ae8b6349dda + - 7a3d951e-5372-4b4d-a475-8f6d80c460b8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 39.392708ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6885203a-5f71-4642-b1c5-53b912459244/action","href_result":"/servers/6885203a-5f71-4642-b1c5-53b912459244","id":"988ad27b-0f22-4933-bc53-4570b9925512","progress":0,"started_at":"2025-09-08T07:25:33.275245+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:25:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/988ad27b-0f22-4933-bc53-4570b9925512 - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1dc4ed2-4548-4010-9121-841b3d2a80b0 - status: 202 Accepted - code: 202 - duration: 172.285625ms - - id: 108 + duration: 57.705064ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5424,8 +5220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -5433,20 +5229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1842" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:33 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5454,11 +5250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef30739f-8b77-4fce-b25d-bcb02d1cf570 + - b687cfec-2916-4f1e-a2ad-94b20c7c071f status: 200 OK code: 200 - duration: 137.283125ms - - id: 109 + duration: 74.925727ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5473,8 +5269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -5482,20 +5278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - - "1842" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:38 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5503,11 +5299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f48dbf71-0d66-4c51-a396-6d5b1dafe635 - status: 200 OK - code: 200 - duration: 162.38ms - - id: 110 + - 2c89a0c0-3bec-4cf8-a224-bff8542ee16e + status: 404 Not Found + code: 404 + duration: 23.050461ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5522,8 +5318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -5531,20 +5327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' headers: Content-Length: - - "1842" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:43 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5552,11 +5348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a63b8fc-2e53-489c-a5fe-b705f3dde5f0 + - e18822c1-5adc-44f8-b2e6-d2e034f39920 status: 200 OK code: 200 - duration: 95.526667ms - - id: 111 + duration: 40.852972ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5571,8 +5367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data method: GET response: proto: HTTP/2.0 @@ -5580,20 +5376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1842" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:48 GMT + - Wed, 08 Oct 2025 23:06:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5601,11 +5397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1a0de2f-46a9-4ee8-a401-2fd6d0f5dce8 + - 6daee41f-c17d-4a66-bdb3-33d2462be8c6 status: 200 OK code: 200 - duration: 140.812708ms - - id: 112 + duration: 52.60022ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5620,8 +5416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics method: GET response: proto: HTTP/2.0 @@ -5629,20 +5425,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1842" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:53 GMT + - Wed, 08 Oct 2025 23:06:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5650,11 +5448,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b766410-402a-41e8-90f3-7e67f4139b63 + - 77a1416f-336a-4ee8-94eb-7dae33cade32 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 146.709167ms - - id: 113 + duration: 49.725666ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5669,8 +5469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -5678,20 +5478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1842 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1842" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:25:59 GMT + - Wed, 08 Oct 2025 23:06:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5699,97 +5499,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1e060f8-05b9-4520-989d-5155dee202ec + - 91958a15-eeaa-460c-97f0-e14eff381191 status: 200 OK code: 200 - duration: 147.135875ms - - id: 114 + duration: 108.855618ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1842 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"301","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:25:33.158447+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1842" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Mon, 08 Sep 2025 07:26:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - beaa1768-16f1-41f5-942a-fe89b6a4d114 - status: 200 OK - code: 200 - duration: 134.746625ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:26:06.168093+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"2351f836-2f0e-4525-9a11-460f8b0bc19e","progress":0,"started_at":"2025-10-08T23:06:24.278180+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:09 GMT + - Wed, 08 Oct 2025 23:06:24 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2351f836-2f0e-4525-9a11-460f8b0bc19e Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5797,11 +5552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68c0c896-65f8-4586-85e7-c191448b25c3 - status: 200 OK - code: 200 - duration: 124.966083ms - - id: 116 + - 1a817516-2d8d-4af7-8d06-42a633375c1e + status: 202 Accepted + code: 202 + duration: 179.798599ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5816,8 +5571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -5825,20 +5580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1726 + content_length: 1861 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-09-08T07:23:54.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-agitated-wescoff","id":"6885203a-5f71-4642-b1c5-53b912459244","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:83","maintenances":[],"modification_date":"2025-09-08T07:26:06.168093+00:00","name":"tf-srv-agitated-wescoff","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"70140494-3f2e-436c-b554-3e9649693eda","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:24.139781+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1726" + - "1861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:09 GMT + - Wed, 08 Oct 2025 23:06:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5846,58 +5601,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3865a985-e8ba-44f5-b03a-9bdeb89775c4 + - b5e3ff80-772e-46e7-938b-fb0384476631 status: 200 OK code: 200 - duration: 177.34325ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:26:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ca19490-34c2-4ec7-88bd-d027981f34a4 - status: 204 No Content - code: 204 - duration: 245.132166ms - - id: 118 + duration: 112.524433ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5912,8 +5620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -5923,7 +5631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6885203a-5f71-4642-b1c5-53b912459244","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","type":"not_found"}' headers: Content-Length: - "143" @@ -5932,9 +5640,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:09 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5942,11 +5650,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f0794cc-3b2e-434e-9ef5-cb3a63690f16 + - 8f97962b-54f8-4468-bd5f-4ac6bdb95ce9 status: 404 Not Found code: 404 - duration: 87.929125ms - - id: 119 + duration: 48.33588ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5961,8 +5669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -5972,7 +5680,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"70140494-3f2e-436c-b554-3e9649693eda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' headers: Content-Length: - "143" @@ -5981,9 +5689,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:09 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5991,11 +5699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d00da09-ab39-4716-823a-58e036d307d3 + - 9d345aa6-b248-47fc-8a9c-a28803530a65 status: 404 Not Found code: 404 - duration: 29.2815ms - - id: 120 + duration: 39.169434ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -6010,8 +5718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: GET response: proto: HTTP/2.0 @@ -6019,20 +5727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 498 uncompressed: false - body: '{"created_at":"2025-09-08T07:23:55.061518Z","id":"70140494-3f2e-436c-b554-3e9649693eda","last_detached_at":"2025-09-08T07:26:09.842948Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-08T07:26:09.842948Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":"2025-10-08T23:06:25.487706Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:25.487706Z","zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:09 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6040,11 +5748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cfb8ed4-81dc-49e7-bb67-83882c44b1bc + - 088d42b2-7f05-4779-b8fa-6e740ca6d7ef status: 200 OK code: 200 - duration: 39.30025ms - - id: 121 + duration: 46.676036ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -6059,8 +5767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/70140494-3f2e-436c-b554-3e9649693eda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 method: DELETE response: proto: HTTP/2.0 @@ -6077,9 +5785,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:10 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6087,11 +5795,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01238573-2d2e-4eee-aca9-497a9319369d + - 717578fa-0faf-48e3-a651-d822f0de9a56 status: 204 No Content code: 204 - duration: 114.776209ms - - id: 122 + duration: 92.418744ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -6106,8 +5814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6885203a-5f71-4642-b1c5-53b912459244 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d method: GET response: proto: HTTP/2.0 @@ -6117,7 +5825,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6885203a-5f71-4642-b1c5-53b912459244","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","type":"not_found"}' headers: Content-Length: - "143" @@ -6126,9 +5834,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:26:10 GMT + - Wed, 08 Oct 2025 23:06:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6136,7 +5844,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 572c2558-d8f1-4d06-b3b1-1de2ab2af0ec + - 96833c07-69fe-48fc-bcf4-282112b277be status: 404 Not Found code: 404 - duration: 92.92725ms + duration: 52.200287ms diff --git a/internal/services/instance/testdata/server-minimal1.cassette.yaml b/internal/services/instance/testdata/server-minimal1.cassette.yaml index dedcbdde7..11893e6ba 100644 --- a/internal/services/instance/testdata/server-minimal1.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal1.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d42b0e0c-227b-4512-a6fc-0d3e62b151b9 + - ed89a647-f380-4a7e-96d0-170c3314e119 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 72.148983ms + duration: 55.789618ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6649f627-c385-49c4-b1ba-71bea642691e + - c10f3817-50ad-48e7-895c-9ec1dc35f696 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 65.076939ms + duration: 137.789067ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 888a230f-00b3-4a9a-b6d4-7336f9917d92 + - d2e45e62-c54c-4346-834f-1b5f219f23c7 status: 200 OK code: 200 - duration: 112.777149ms + duration: 49.395933ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 301 + content_length: 296 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-determined-khayyam","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","minimal"]}' + body: '{"name":"tf-srv-bold-rosalind","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","minimal"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1779 + content_length: 1791 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:51.211150+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1779" + - "1791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de23920c-883e-4910-b983-e58b95565837 + - a4789354-9186-47ab-96e3-37cd51fed4d4 status: 201 Created code: 201 - duration: 1.658018112s + duration: 523.994971ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1779 + content_length: 1791 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:51.211150+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1779" + - "1791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d67556f0-0315-4f00-8ee3-3bf1748b6196 + - 2ffb6cb1-b1b3-4b93-be9d-71061118824e status: 200 OK code: 200 - duration: 335.664676ms + duration: 95.996678ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1779 + content_length: 1791 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:51.211150+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1779" + - "1791" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d2a70f4-fd38-4eb7-8550-4ba2a89163e9 + - 81fd11b0-1cfc-450b-9225-9900eaf5501e status: 200 OK code: 200 - duration: 214.221965ms + duration: 102.595111ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e3020e5-13b0-4f6b-a4c1-0e7d464294a0 + - 98badb56-77b8-4b50-8d43-ec8454d76fd3 status: 200 OK code: 200 - duration: 108.836188ms + duration: 47.561235ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/action","href_result":"/servers/077d2544-dfe4-4df1-9077-b9940de5b23e","id":"605c6b82-0af0-4c20-b0cf-7ad29af99c6e","progress":0,"started_at":"2025-06-10T15:28:52.942711+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action","href_result":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4","id":"6410ccab-4c5d-43f0-ae55-5e26ec2b0177","progress":0,"started_at":"2025-10-08T23:04:57.079513+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/605c6b82-0af0-4c20-b0cf-7ad29af99c6e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6410ccab-4c5d-43f0-ae55-5e26ec2b0177 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc5c259-ed2f-43ba-9f98-d95a4d65ebb9 + - 82f3b01d-7dbe-419e-be20-5e7d45514bae status: 202 Accepted code: 202 - duration: 259.484523ms + duration: 190.307433ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1813 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:52.747594+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.940236+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1801" + - "1813" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeb6d9df-0aa7-4856-bfdd-552f73d7fe62 + - 9eb8ff4d-c8d4-4a43-94f2-bdfc8f050489 status: 200 OK code: 200 - duration: 183.439133ms + duration: 110.529549ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1876ee2-653f-4a97-8d9e-a6e82c315a43 + - 6be858e6-f140-4e6f-85aa-2869af0719d2 status: 200 OK code: 200 - duration: 236.352109ms + duration: 100.556032ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8db148c2-b008-4316-ace8-cb21ab9ce3f7 + - 4c1372a8-cf39-4755-9721-44184ce48d40 status: 200 OK code: 200 - duration: 212.527637ms + duration: 96.639106ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41502698-7177-47c2-b1cc-78969c1cebbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80f4369e-fc6c-4ae7-af83-1a89e850ce17 + - 12bc7b89-3266-4dba-b43f-763a1d4ec656 status: 404 Not Found code: 404 - duration: 63.140988ms + duration: 28.12011ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd071420-b610-4bb1-9409-0d0a76a21dbf + - ddd6e0f2-e916-4f5f-ad44-e0c1ab861dbe status: 200 OK code: 200 - duration: 101.923784ms + duration: 35.953681ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7b03aab-0a0a-4b57-88b2-5864754b410d + - 10a5b19e-512f-4c53-ae52-18e5f57194e2 status: 200 OK code: 200 - duration: 107.661805ms + duration: 46.891313ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a44608b-8b75-40c2-81d6-3b376765e8db + - 4fe2ee75-b5a5-4ad3-bf76-a219cf769066 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 153.075938ms + duration: 58.741152ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2c0c42e-0d29-4ed4-a663-960d1130eef8 + - 5498ca5f-0cb9-4c50-9b55-c69a93233427 status: 200 OK code: 200 - duration: 196.148789ms + duration: 102.554573ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 560df1d5-0be6-44d2-880f-76ab148e6ce6 + - 54d66706-19f3-4592-9049-477149dbb939 status: 200 OK code: 200 - duration: 225.473005ms + duration: 126.877589ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41502698-7177-47c2-b1cc-78969c1cebbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e39e24d-e530-4a23-8ced-66ef7eaaa100 + - adbddc7f-48cd-4cc8-b13d-ca7d02ca27ea status: 404 Not Found code: 404 - duration: 42.104435ms + duration: 31.353209ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe7cbee1-cbb3-4ca6-b330-7009c8d6eda8 + - 40ad5186-2eba-4c95-8cff-c21946b40118 status: 200 OK code: 200 - duration: 148.939169ms + duration: 40.914911ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e18a7b96-f7b4-4169-ac9e-5dcdbdb0f42b + - 15cfda30-4c8d-41c9-9770-19793804841a status: 200 OK code: 200 - duration: 143.358283ms + duration: 63.351483ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70cda4ae-7f18-4691-86a5-2724e24cf434 + - 9f779410-7e3a-4652-8dac-3e79c97e59a5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 113.976128ms + duration: 59.447551ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecbc3435-f8a4-48d3-b798-7d20dc335c73 + - ba138856-5789-4356-a24d-de10123d1999 status: 200 OK code: 200 - duration: 193.917804ms + duration: 122.33799ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41502698-7177-47c2-b1cc-78969c1cebbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d68675db-e052-46e2-a9ac-b52fb9a30cb3 + - e86aaf4b-6cf2-4b41-b180-d451b7a06d50 status: 404 Not Found code: 404 - duration: 42.88568ms + duration: 36.578779ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfdd982f-d2da-4326-aa2c-18a182f9990a + - 3eac0362-2280-405c-aa09-aa391c5a1a09 status: 200 OK code: 200 - duration: 104.186778ms + duration: 52.830443ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 050aa1a6-a98f-4229-93ea-41cce84cda3a + - a58c575d-4327-48ef-a387-b53a8407103f status: 200 OK code: 200 - duration: 114.56962ms + duration: 54.24825ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 268f8035-c2a9-41af-beb7-16be2845dd1a + - dee6e6ae-6825-4703-8758-646c5c657e7d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.630262ms + duration: 49.924441ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3818d74a-9ded-43df-bbab-c09926f2d864 + - cec45b11-85c5-4341-8b3d-72e6dbfa25b3 status: 200 OK code: 200 - duration: 235.673666ms + duration: 106.103748ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 185da126-1a6a-4df9-870e-8139146f516e + - 9e324c53-777a-4e4a-a10e-73c14c902dfd status: 200 OK code: 200 - duration: 223.212916ms + duration: 98.118415ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1427,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41502698-7177-47c2-b1cc-78969c1cebbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' headers: Content-Length: - "143" @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b4e0243-40d3-4eaf-a8f8-9c5dbfd6f1db + - 097e144c-e1b1-4c05-9d3c-03f47cb96d42 status: 404 Not Found code: 404 - duration: 76.684147ms + duration: 30.298395ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -1476,7 +1476,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1485,9 +1485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81aee464-8b05-4fa6-ae7e-578eb08f8b85 + - 8c8b1fe1-3678-41e9-b02c-9ece01ab9860 status: 200 OK code: 200 - duration: 102.826506ms + duration: 41.565967ms - id: 30 request: proto: HTTP/1.1 @@ -1514,8 +1514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data method: GET response: proto: HTTP/2.0 @@ -1534,9 +1534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ac246db-51b1-43e2-b985-ec640231cdac + - 2115e084-7195-4a31-a67e-3c3dbff3305a status: 200 OK code: 200 - duration: 90.863681ms + duration: 48.223229ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics method: GET response: proto: HTTP/2.0 @@ -1583,11 +1583,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,12 +1595,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1b9c4e7-6f60-4d29-9f6e-b115b8d02b28 + - fca66236-1744-4546-8d7a-3130593bf4c3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.845249ms + duration: 51.205954ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1948 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:28:57.090905+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1948" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,78 +1646,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a453520e-d5cb-498f-992f-05e7c88c0156 + - 22aba94f-8af2-41ec-953b-fd5cbe7f535a status: 200 OK code: 200 - duration: 587.63354ms + duration: 108.034353ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.403743Z","id":"6db6bd9d-78b5-4d66-bb1e-5104ab7ff00e","product_resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.403743Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12594c7f-4aae-4185-85a9-010890b360d7 - status: 200 OK - code: 200 - duration: 82.054499ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action method: POST response: proto: HTTP/2.0 @@ -1725,22 +1676,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/077d2544-dfe4-4df1-9077-b9940de5b23e/action","href_result":"/servers/077d2544-dfe4-4df1-9077-b9940de5b23e","id":"163055e1-ba10-4bb4-b2c8-2a14fc337200","progress":0,"started_at":"2025-06-10T15:29:08.578126+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action","href_result":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4","id":"e783f360-b21f-4c01-875e-b9a1ba245cca","progress":0,"started_at":"2025-10-08T23:05:05.013919+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/163055e1-ba10-4bb4-b2c8-2a14fc337200 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e783f360-b21f-4c01-875e-b9a1ba245cca Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,403 +1699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e17629ad-b327-4801-96cb-fdd42eecf6ab + - 64c3fd10-ae73-4d04-b578-0041dde6350e status: 202 Accepted code: 202 - duration: 265.787773ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32806e76-b0f7-44e5-8f84-382d5a0ce905 - status: 200 OK - code: 200 - duration: 213.489259ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12a74eed-8132-449e-95a6-a6aba27d4586 - status: 200 OK - code: 200 - duration: 228.379845ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1c90016e-ee26-489e-b0ce-cf2b6b95de89 - status: 200 OK - code: 200 - duration: 184.36095ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9997fd05-763e-4df4-9d17-261693ba3c7c - status: 200 OK - code: 200 - duration: 220.326891ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:29 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a8ffc96-7f67-4355-ad62-3d83b4b4b433 - status: 200 OK - code: 200 - duration: 204.957036ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:34 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd401a62-66ba-4d4a-b0f8-e9026dd6bdb1 - status: 200 OK - code: 200 - duration: 221.106112ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1895 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:08.379229+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1895" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7cbb5cf2-e8b8-4eef-97b9-88ccb238ef98 - status: 200 OK - code: 200 - duration: 748.080069ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1779 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:41.657663+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1779" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dafc8ba0-938d-4bc7-8334-b57311a5d8a2 - status: 200 OK - code: 200 - duration: 165.110755ms - - id: 43 + duration: 142.721808ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2159,8 +1718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -2168,20 +1727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1779 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:51.211150+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-determined-khayyam","id":"077d2544-dfe4-4df1-9077-b9940de5b23e","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e5","maintenances":[],"modification_date":"2025-06-10T15:29:41.657663+00:00","name":"tf-srv-determined-khayyam","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"41502698-7177-47c2-b1cc-78969c1cebbb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:05:04.908964+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1779" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,58 +1748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d667b01e-4bde-45b2-acbb-ff6041488fe2 + - 207c1c5a-081e-4910-a786-a691423a0fc3 status: 200 OK code: 200 - duration: 169.529542ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 32c3482f-aabd-45b1-86b5-924dabdbc857 - status: 204 No Content - code: 204 - duration: 372.620196ms - - id: 45 + duration: 109.027112ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2255,8 +1767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -2266,7 +1778,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","type":"not_found"}' headers: Content-Length: - "143" @@ -2275,9 +1787,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,11 +1797,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5c5a56-7e0e-4fe3-9a58-9e810253b41b + - fd88929f-3bb0-440e-b73b-ac30211925aa status: 404 Not Found code: 404 - duration: 106.46048ms - - id: 46 + duration: 51.34495ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2304,8 +1816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -2315,7 +1827,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41502698-7177-47c2-b1cc-78969c1cebbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' headers: Content-Length: - "143" @@ -2324,9 +1836,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,11 +1846,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9904a184-3d4e-49c4-84a6-bd4f4910cdda + - 03520bb9-d0ab-440c-a7dc-927de5951728 status: 404 Not Found code: 404 - duration: 36.642341ms - - id: 47 + duration: 30.451107ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2353,8 +1865,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: GET response: proto: HTTP/2.0 @@ -2364,7 +1876,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.403743Z","id":"41502698-7177-47c2-b1cc-78969c1cebbb","last_detached_at":"2025-06-10T15:29:46.466149Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:46.466149Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":"2025-10-08T23:05:06.266086Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:06.266086Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2373,9 +1885,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,11 +1895,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cb290f3-6e3d-41a1-ab76-04a76037722e + - 0b954e82-0a08-4347-991e-b001fe799bc2 status: 200 OK code: 200 - duration: 74.082046ms - - id: 48 + duration: 39.770971ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2402,8 +1914,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41502698-7177-47c2-b1cc-78969c1cebbb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 method: DELETE response: proto: HTTP/2.0 @@ -2420,9 +1932,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,11 +1942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80c22a97-685f-495c-8024-58e2999fcc86 + - eb8e7539-30bf-4445-a458-3ca3d4cc1aca status: 204 No Content code: 204 - duration: 171.934783ms - - id: 49 + duration: 85.793112ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2449,8 +1961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/077d2544-dfe4-4df1-9077-b9940de5b23e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 method: GET response: proto: HTTP/2.0 @@ -2460,7 +1972,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"077d2544-dfe4-4df1-9077-b9940de5b23e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","type":"not_found"}' headers: Content-Length: - "143" @@ -2469,9 +1981,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,7 +1991,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15eaa403-0a91-43b4-a1d0-0f02d7e1ed5f + - 30b21784-b4db-47e5-957d-7249bc7ebfb5 status: 404 Not Found code: 404 - duration: 101.491821ms + duration: 43.944842ms diff --git a/internal/services/instance/testdata/server-minimal2.cassette.yaml b/internal/services/instance/testdata/server-minimal2.cassette.yaml index ce509d5f1..400075af1 100644 --- a/internal/services/instance/testdata/server-minimal2.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal2.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dea17012-354e-48f7-8315-8bf116cd9daa + - 65a69aca-9145-4013-b539-4663501110e0 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.889595ms + duration: 66.951775ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2de346f-7dc7-4f7f-bf4d-5ab0e2e60181 + - 708b61be-283b-41dc-a2bd-d1dba37cf340 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 97.687628ms + duration: 49.048921ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd70dd39-3ab5-4279-95dd-ea9c1054163d + - 43078ba2-fa66-49d9-b670-ca10d52b7914 status: 200 OK code: 200 - duration: 116.700836ms + duration: 60.961398ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 235 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-brave-albattani","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-gallant-black","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:29.562847+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1718" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05e7db3a-cf98-41fd-954f-665067410c02 + - 96f40173-5401-4135-88cc-51cd3b6d2ccb status: 201 Created code: 201 - duration: 978.262698ms + duration: 662.618182ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:29.562847+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1718" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf8d1f7e-b5fe-4200-8352-94db327651ea + - d03996b9-338f-4546-b238-24fc004bbc0e status: 200 OK code: 200 - duration: 255.14516ms + duration: 104.475416ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:29.562847+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1718" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a69d08b-c597-4ba7-a1bc-546c3b8dc09f + - 1d106354-4a63-4c69-adcd-f4eabf13847f status: 200 OK code: 200 - duration: 168.469956ms + duration: 94.71748ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:29.755116Z","id":"e27df491-0ded-454e-82ce-04c7c25be583","product_resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:29.755116Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c094e3fb-ae8c-4363-abfe-ecb1bd690c9f + - 45299452-b690-4d71-a724-d7de0f92de4d status: 200 OK code: 200 - duration: 131.855257ms + duration: 46.544502ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/action","href_result":"/servers/407f0a92-9024-4f36-b52f-21e91b6bc678","id":"810c1f08-a542-48d1-bc96-c2434c22fdba","progress":0,"started_at":"2025-06-10T15:29:31.068529+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action","href_result":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae","id":"49adc8ad-4f96-487f-8a15-d138e2182559","progress":0,"started_at":"2025-10-08T23:04:54.135951+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Wed, 08 Oct 2025 23:04:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/810c1f08-a542-48d1-bc96-c2434c22fdba + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/49adc8ad-4f96-487f-8a15-d138e2182559 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba94b4de-49a9-4440-b0f5-e1b48d30e209 + - 8880c583-8143-4471-9fb2-58864da048ad status: 202 Accepted code: 202 - duration: 287.996862ms + duration: 179.0329ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1758 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:30.872007+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:54.000469+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1740" + - "1758" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Wed, 08 Oct 2025 23:04:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9fca44d-b623-465a-aa51-b296c81e6d11 + - ed050938-b7d7-49f6-86cf-9cf969a086c9 status: 200 OK code: 200 - duration: 181.564154ms + duration: 106.824127ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 591ae9e6-6f81-47e2-bb56-1f114581176f + - b336cf5e-b67c-48fa-b8e6-6349a2ab0bc9 status: 200 OK code: 200 - duration: 216.627151ms + duration: 124.313842ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eef77fac-67fb-49f8-91f7-5a16a541fb11 + - c8693c8e-df04-488b-856a-baa25747cf56 status: 200 OK code: 200 - duration: 186.089981ms + duration: 107.194741ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86150f80-6603-4001-b615-c8624def689b + - 8593fafa-822a-4e45-9166-ae8b23963e54 status: 404 Not Found code: 404 - duration: 67.475677ms + duration: 34.593131ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:29.755116Z","id":"e27df491-0ded-454e-82ce-04c7c25be583","product_resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:29.755116Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c403ed81-9970-4dfc-a263-900801b9d4ba + - c09c9abd-8b7e-4920-9c7a-6084205da8b2 status: 200 OK code: 200 - duration: 120.717128ms + duration: 38.936417ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d58b657a-e9e0-4d77-8716-fae9005296a3 + - c02becfa-38b4-4c6f-a129-6f7f58f8be1a status: 200 OK code: 200 - duration: 95.8122ms + duration: 53.104733ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:37 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaffeb14-afc9-4b9a-b602-6634d551b55a + - 00427e1f-5915-41be-a0c6-10cddaf49b9e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.736628ms + duration: 49.635366ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:37 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6444846f-aadd-42f7-80ef-3800bf78cdf9 + - 08993a4f-cf55-429d-a0a5-34bf31af89c2 status: 200 OK code: 200 - duration: 190.578038ms + duration: 89.812662ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:38 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd0078e-1e42-483d-866c-5c25386e021e + - ec59c9f0-6f8d-4fd4-8d83-5ab9b3098d0d status: 200 OK code: 200 - duration: 168.352305ms + duration: 101.21862ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:38 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daf180f7-0960-41a7-83bd-2621129614d0 + - 367486ed-411f-40f9-abc9-33c748674244 status: 404 Not Found code: 404 - duration: 52.585421ms + duration: 34.912924ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:29.755116Z","id":"e27df491-0ded-454e-82ce-04c7c25be583","product_resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:29.755116Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:38 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 155d82bf-0bd3-4d04-a816-5fd33fac359d + - 538a0f80-16cd-4ea5-b337-b76f82cf659e status: 200 OK code: 200 - duration: 122.821224ms + duration: 45.576176ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:39 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f60e4311-76c6-446b-8ddf-e47f097cd123 + - 958bb3dd-0db8-4efe-a754-d052c5dfc59b status: 200 OK code: 200 - duration: 112.131846ms + duration: 71.309676ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:39 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d7241d4-0de8-4f4b-b8a0-7f894494a731 + - 1e2441ad-c32f-4601-bad8-e0cf2bec770d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 470.24159ms + duration: 56.965214ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1875" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:40 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b4d42c0-ebb9-4e07-91f3-5b1a3ef51c00 + - 14f04143-ba9a-48ef-b4af-6c6d3531b7be status: 200 OK code: 200 - duration: 268.853027ms + duration: 104.669682ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:40 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92134c91-3a7b-4e97-9df8-17c34297fbdb + - f110e7a1-6707-457d-b9c3-7edb38e65d70 status: 404 Not Found code: 404 - duration: 36.383835ms + duration: 30.542086ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:29.755116Z","id":"e27df491-0ded-454e-82ce-04c7c25be583","product_resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:29.755116Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:40 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6974776-af6b-47b7-a5a2-8ab8ebc92a01 + - d07f27f4-d24f-441d-bbf5-b4d8ad807cb0 status: 200 OK code: 200 - duration: 126.246888ms + duration: 64.295963ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:41 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f66dbef8-2064-43d4-aba7-b151b23800d3 + - 0927ddf0-2c45-4ff5-a126-2e9e4fd06591 status: 200 OK code: 200 - duration: 852.566707ms + duration: 53.990744ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:41 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab0e175c-e75b-4d01-87df-866b042d30cc + - c4c4696d-fc06-458e-9f2c-13b268e043f0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 157.743108ms + duration: 56.320059ms - id: 26 request: proto: HTTP/1.1 @@ -1318,7 +1318,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -1338,11 +1338,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,12 +1350,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9afe7103-41e6-4ff9-89ba-3d91c0ca45bf + - 7c1e1e2c-9bf5-40a7-8520-9c671f13e6de X-Total-Count: - "75" status: 200 OK code: 200 - duration: 45.214878ms + duration: 52.909761ms - id: 27 request: proto: HTTP/1.1 @@ -1371,8 +1371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -1380,22 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1892 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,12 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 517e4446-60f2-4f14-ad74-310b65d7ad35 - X-Total-Count: - - "75" + - 41e503ea-f3fa-4d51-a69f-7ca144e1478d status: 200 OK code: 200 - duration: 101.529673ms + duration: 117.027313ms - id: 28 request: proto: HTTP/1.1 @@ -1424,8 +1420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1433,20 +1429,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1875 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:34.923706+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1875" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:01 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1452,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a863830-7e16-4cb7-846c-19feaf3e410d + - a7f8a66e-6a51-4276-b7dd-2f7ec6197d74 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 239.134712ms + duration: 62.941594ms - id: 29 request: proto: HTTP/1.1 @@ -1473,7 +1473,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -1484,7 +1484,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -1493,9 +1493,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,48 +1503,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85d659d-42ae-4444-a9b0-c2c3fd36eb38 + - 7135f2b1-936c-4174-8769-3126947769ab status: 200 OK code: 200 - duration: 118.496603ms + duration: 50.878638ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 353 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:29.755116Z","id":"e27df491-0ded-454e-82ce-04c7c25be583","product_resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:29.755116Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action","href_result":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae","id":"0722d994-32ee-4f47-94fb-fe64e239f592","progress":0,"started_at":"2025-10-08T23:05:01.331908+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0722d994-32ee-4f47-94fb-fe64e239f592 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,52 +1556,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9453e6e-6216-402b-96da-269f5fc230b4 - status: 200 OK - code: 200 - duration: 122.921512ms + - 20465fa0-e6d5-499c-906a-9ec68ae7040e + status: 202 Accepted + code: 202 + duration: 194.825899ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1855 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/407f0a92-9024-4f36-b52f-21e91b6bc678/action","href_result":"/servers/407f0a92-9024-4f36-b52f-21e91b6bc678","id":"bdcde37c-9236-4679-ac16-a54b102abacd","progress":0,"started_at":"2025-06-10T15:29:44.224942+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:05:01.190105+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1855" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bdcde37c-9236-4679-ac16-a54b102abacd + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,28 +1605,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6edd19ea-d06d-4601-9d6a-b61fe62ce13f - status: 202 Accepted - code: 202 - duration: 844.882866ms + - 2b0867e6-42f0-4524-b6d9-9ffe88e76511 + status: 200 OK + code: 200 + duration: 106.342591ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 280 + content_length: 276 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-affectionate-swartz","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-fervent-solomon","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1635,22 +1635,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2174 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:43.947122+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2174" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1658,10 +1658,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7055dc0a-d312-4cc9-9b87-399596681526 + - 1ba0290d-c169-4402-b9b5-fa6fcd4f8cb0 status: 201 Created code: 201 - duration: 1.019606879s + duration: 361.409672ms - id: 33 request: proto: HTTP/1.1 @@ -1677,8 +1677,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -1686,20 +1686,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1835" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1707,10 +1707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b497fe-3619-40b2-939a-245d3edc9ca8 + - ac6157a1-197c-4653-8aef-20a3bf4b16e0 status: 200 OK code: 200 - duration: 182.756799ms + duration: 105.720619ms - id: 34 request: proto: HTTP/1.1 @@ -1726,8 +1726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -1735,20 +1735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2174 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:43.947122+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2174" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1756,60 +1756,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44b2283f-8ef9-43e6-bbed-374ce5a25dd8 + - 052c1724-bf2a-4503-8dc2-d2af30cb385a status: 200 OK code: 200 - duration: 158.585908ms + duration: 99.375375ms - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2174 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:43.947122+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2174" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01023100-62f7-4ce7-9d96-b05ee75a6d97 - status: 200 OK - code: 200 - duration: 209.084315ms - - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1826,8 +1777,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action method: POST response: proto: HTTP/2.0 @@ -1837,7 +1788,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0d727963-009f-4932-822c-9cb2cbcbb964/action","href_result":"/servers/0d727963-009f-4932-822c-9cb2cbcbb964","id":"8e3af12f-fc26-40d5-96f3-af1a1a9c0b2a","progress":0,"started_at":"2025-06-10T15:29:45.335516+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action","href_result":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","id":"9bcb6555-7b01-451f-95fb-f5bfc316a99f","progress":0,"started_at":"2025-10-08T23:05:01.979412+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1846,11 +1797,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8e3af12f-fc26-40d5-96f3-af1a1a9c0b2a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9bcb6555-7b01-451f-95fb-f5bfc316a99f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1858,11 +1809,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4aa6deb-2bc5-4ce7-961d-fe09be79c1c5 + - b379bc7b-1443-4681-b866-c3b0f799aaa4 status: 202 Accepted code: 202 - duration: 436.510508ms - - id: 37 + duration: 212.104957ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1877,8 +1828,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -1886,20 +1837,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2196 + content_length: 2182 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:45.047406+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.810351+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2196" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1907,11 +1858,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b4b468b-dabb-4809-9534-37a3113b8cb0 + - 97a36343-9267-4d7c-88c0-a2224b27cf5a status: 200 OK code: 200 - duration: 246.102119ms - - id: 38 + duration: 115.547162ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1926,8 +1877,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae method: GET response: proto: HTTP/2.0 @@ -1935,20 +1886,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","type":"not_found"}' headers: Content-Length: - - "1835" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1956,11 +1907,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21719383-855e-4e2f-bd81-ce104ee25b61 - status: 200 OK - code: 200 - duration: 171.375594ms - - id: 39 + - 27e95a3f-34f3-40b4-8dfa-ae639254b8f9 + status: 404 Not Found + code: 404 + duration: 40.698069ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1975,8 +1926,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -1984,20 +1935,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:45.047406+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' headers: Content-Length: - - "2299" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2005,11 +1956,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9f6a75-c33a-49f4-b437-2bdeaa790856 - status: 200 OK - code: 200 - duration: 179.602262ms - - id: 40 + - d6613625-0ebf-4467-b27e-0a54a49db504 + status: 404 Not Found + code: 404 + duration: 26.282986ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2024,8 +1975,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 method: GET response: proto: HTTP/2.0 @@ -2033,20 +1984,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 494 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":"2025-10-08T23:05:02.505125Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:02.505125Z","zone":"fr-par-1"}' headers: Content-Length: - - "1835" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2054,11 +2005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5757832-ff5d-48dc-bff5-917586732a15 + - 8bd9dd5e-5afd-442d-bc92-ca36f0d49706 status: 200 OK code: 200 - duration: 179.655191ms - - id: 41 + duration: 40.976335ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2073,29 +2024,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:45.047406+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:56 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2103,11 +2052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9108c4-6f6b-476c-98c5-fceaf94e47d2 - status: 200 OK - code: 200 - duration: 180.921106ms - - id: 42 + - 61c74c2b-c169-4369-aa1e-4f3cf5b4d9d0 + status: 204 No Content + code: 204 + duration: 86.758861ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2122,8 +2071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2131,20 +2080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 2285 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.810351+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1835" + - "2285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:00 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2152,11 +2101,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 168ac139-47db-4e3a-ab64-ae8f33489bef + - d74ee2b9-796a-4453-a9dc-89f7ecc4f726 status: 200 OK code: 200 - duration: 168.104618ms - - id: 43 + duration: 104.948025ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2171,8 +2120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2180,20 +2129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2330 + content_length: 2316 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2330" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2201,11 +2150,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64628a60-5202-4206-bc95-7fb4e3ffe44d + - 895f60c0-97b8-4ddf-92a3-db17d65b9ba1 status: 200 OK code: 200 - duration: 172.259401ms - - id: 44 + duration: 88.17924ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2220,8 +2169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2229,20 +2178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2330 + content_length: 2316 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2330" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2250,11 +2199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa5a1fad-a2db-44f1-ba6d-2f8bac13e267 + - d7a571ec-565c-49f9-a4e9-4d9263501baf status: 200 OK code: 200 - duration: 250.96118ms - - id: 45 + duration: 86.194484ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2269,8 +2218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e266fcd5-2b89-4ca0-a800-44f0ea3ad97f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d method: GET response: proto: HTTP/2.0 @@ -2278,20 +2227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 522 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "526" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2299,11 +2248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c01e6f7e-3d2a-49d8-9718-2bbbc8068a3b + - d37fefe6-ca30-4fe6-a90d-4473109ef2c7 status: 200 OK code: 200 - duration: 163.216571ms - - id: 46 + duration: 60.691483ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2318,8 +2267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data method: GET response: proto: HTTP/2.0 @@ -2338,9 +2287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2348,11 +2297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 765b4bd4-551c-496c-a77f-baa1b4429cdc + - dd8f6ecf-79d0-460c-ab38-84f33da359d7 status: 200 OK code: 200 - duration: 524.704336ms - - id: 47 + duration: 49.423601ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2367,8 +2316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics method: GET response: proto: HTTP/2.0 @@ -2387,11 +2336,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,13 +2348,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac25ccfa-81a1-4498-b7d2-2be9be0bb60f + - 0ee4bbd2-3b21-42a7-8c7a-d844a967cf6f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 115.341635ms - - id: 48 + duration: 58.556819ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2420,8 +2369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2429,20 +2378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 2316 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1835" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 08 Oct 2025 23:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2450,11 +2399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3714481a-4a3c-4068-9aee-10c2badf4cd5 + - 34707816-bd58-4798-b7b3-00918490185a status: 200 OK code: 200 - duration: 604.179605ms - - id: 49 + duration: 79.126001ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2469,8 +2418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2478,20 +2427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 2316 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1835" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2499,11 +2448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f236a14-fb05-4b95-81f1-5f3c18cac892 + - 4517a1b0-1735-40f7-9bb3-fe722a801e6b status: 200 OK code: 200 - duration: 310.775326ms - - id: 50 + duration: 95.471899ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2518,8 +2467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d method: GET response: proto: HTTP/2.0 @@ -2527,20 +2476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1835 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:29:43.735994+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "1835" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2548,11 +2497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ca28481-af8b-4299-8179-0e8de6fa6803 + - 4f257990-fc52-4778-84a4-63b2442e65fa status: 200 OK code: 200 - duration: 249.861526ms - - id: 51 + duration: 69.454575ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2567,8 +2516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data method: GET response: proto: HTTP/2.0 @@ -2576,20 +2525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:30:17.291189+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1718" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,11 +2546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89c939b1-b439-4f3b-88cd-4d90d480d872 + - 45784920-df35-4714-97c5-ade633e60a6e status: 200 OK code: 200 - duration: 176.258669ms - - id: 52 + duration: 50.233742ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2616,8 +2565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics method: GET response: proto: HTTP/2.0 @@ -2625,20 +2574,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1718 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:29.562847+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-albattani","id":"407f0a92-9024-4f36-b52f-21e91b6bc678","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:23","maintenances":[],"modification_date":"2025-06-10T15:30:17.291189+00:00","name":"tf-srv-brave-albattani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1718" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 08 Oct 2025 23:05:13 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2646,58 +2597,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc0e372d-a244-4e9e-956d-c66356db187a + - 4699e247-7aa1-4555-bab2-a387ceab030c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 207.18038ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70fef04d-b980-4308-bde7-4d1c256ae3cf - status: 204 No Content - code: 204 - duration: 397.692321ms - - id: 54 + duration: 54.025686ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2712,8 +2618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/407f0a92-9024-4f36-b52f-21e91b6bc678 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2721,20 +2627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2316 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"407f0a92-9024-4f36-b52f-21e91b6bc678","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2742,11 +2648,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3e5d2c-8fc8-4eba-a4f0-e38b291eb70c - status: 404 Not Found - code: 404 - duration: 84.986515ms - - id: 55 + - d26d3714-6e71-4759-abe0-e1f9cc4ed5d0 + status: 200 OK + code: 200 + duration: 91.953161ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2761,8 +2667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d method: GET response: proto: HTTP/2.0 @@ -2770,20 +2676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 522 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","type":"not_found"}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2791,11 +2697,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0a7d233-7fa5-4d28-a0f9-d7945699db4f - status: 404 Not Found - code: 404 - duration: 58.503939ms - - id: 56 + - 41f09dd2-f8c7-478a-b79d-8a0fefd184bc + status: 200 OK + code: 200 + duration: 51.316888ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2810,8 +2716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data method: GET response: proto: HTTP/2.0 @@ -2819,20 +2725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.755116Z","id":"5f029d20-b92a-4c4a-bb93-87513d04f1bc","last_detached_at":"2025-06-10T15:30:22.192762Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:22.192762Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "494" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2840,11 +2746,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea63a6b3-bcfb-4e67-b805-fb41bd6e7d86 + - f5fcedea-4d46-45e4-a3ef-11604877ee8c status: 200 OK code: 200 - duration: 157.863069ms - - id: 57 + duration: 53.018629ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2859,27 +2765,31 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5f029d20-b92a-4c4a-bb93-87513d04f1bc - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 20 uncompressed: false - body: "" + body: '{"private_nics":[]}' headers: + Content-Length: + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:05:13 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2887,11 +2797,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b9bee33-e5db-4c71-bbc0-4c9d0b1ac769 - status: 204 No Content - code: 204 - duration: 184.32653ms - - id: 58 + - 4c610214-ce82-4f22-b1f2-a5e1d4823de4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 55.521927ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2906,8 +2818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2915,20 +2827,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2330 + content_length: 39208 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2330" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 08 Oct 2025 23:05:13 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,11 +2850,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c160fc01-021f-4a74-8572-a9c496562009 + - 84bae9e4-1fe6-472d-9376-54e884c2b36b + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 242.669137ms - - id: 59 + duration: 45.470498ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2955,8 +2871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -2964,20 +2880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2330 + content_length: 2316 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2330" + - "2316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,619 +2901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d911326-1d31-4f4b-a1ac-a3ce3cab96ac + - 9fcc6919-50be-4ac1-baf1-29588b2eb2c6 status: 200 OK - code: 200 - duration: 446.323855ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e266fcd5-2b89-4ca0-a800-44f0ea3ad97f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d0395139-05c7-4aa9-bd85-6eb18396be08 - status: 200 OK - code: 200 - duration: 104.517113ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 88fa54b3-b779-4e18-80dc-9c8a0a18ed96 - status: 200 OK - code: 200 - duration: 130.510772ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:25 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5156fdc4-9250-46c0-acc4-4cbc4ba903da - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.213714ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2330" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f64a6351-19ae-4484-9cfe-49180dbe09cc - status: 200 OK - code: 200 - duration: 221.668282ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e266fcd5-2b89-4ca0-a800-44f0ea3ad97f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 526 - uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "526" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2dc5beb9-8ab6-476d-8fd0-66d6025d2bf9 - status: 200 OK - code: 200 - duration: 148.67063ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eec615d9-3d0a-4bcc-857f-732b0252acd7 - status: 200 OK - code: 200 - duration: 110.376983ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:26 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1ecd91c-d2ca-4691-91ee-c26bc5b4803d - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 122.156685ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39208 - uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' - headers: - Content-Length: - - "39208" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - db010a0f-0def-4254-8bde-4ed961cb2e4e - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 49.788374ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 19730 - uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' - headers: - Content-Length: - - "19730" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 694af1c0-3581-4223-aa5a-299209a726fd - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 49.713283ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0703ac6d-8b95-4d99-bbf4-b389c871a78e - status: 200 OK - code: 200 - duration: 92.049611ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2330 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:29:56.759993+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2330" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ca2ba2ed-ed06-4250-a1c7-94df1309d319 - status: 200 OK - code: 200 - duration: 199.552825ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/0d727963-009f-4932-822c-9cb2cbcbb964/action","href_result":"/servers/0d727963-009f-4932-822c-9cb2cbcbb964","id":"8862c8eb-d07c-423a-af64-87e8c0df0eeb","progress":0,"started_at":"2025-06-10T15:30:28.603339+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8862c8eb-d07c-423a-af64-87e8c0df0eeb - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8532a0d8-f6a6-4ded-bad9-96f0658f2ddd - status: 202 Accepted - code: 202 - duration: 325.827593ms - - id: 72 + code: 200 + duration: 90.64062ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3612,8 +2920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3621,20 +2929,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2290" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 08 Oct 2025 23:05:13 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3642,52 +2952,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e0fa531-7088-4c1a-93d1-2e5cebf58446 + - acaefe7e-a18d-4f96-b74f-547c9086474e + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 201.438181ms - - id: 73 + duration: 43.029937ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 279 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-wonderful-ishizaka","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:28.588210+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2171" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3695,48 +3003,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a548d8a-2a80-48e3-882a-44628580add4 - status: 201 Created - code: 201 - duration: 665.049026ms - - id: 74 + - ec10730d-5b5c-4e45-b665-0055cfab0aa8 + status: 200 OK + code: 200 + duration: 46.904664ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:28.588210+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action","href_result":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","id":"33944d65-be0a-4432-9530-db92dac97074","progress":0,"started_at":"2025-10-08T23:05:14.012537+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/33944d65-be0a-4432-9530-db92dac97074 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3744,11 +3056,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ead7ea-b510-4b0b-95d0-e502fbcddb27 - status: 200 OK - code: 200 - duration: 211.859897ms - - id: 75 + - f1c488d6-8ce3-42c7-802c-74413a3b38bd + status: 202 Accepted + code: 202 + duration: 210.896627ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3763,8 +3075,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -3772,20 +3084,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:28.588210+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3793,29 +3105,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed71bd94-4a15-4437-a343-c6601328b666 + - d63fb5cd-eb07-4a3a-992a-aeee0d23065c status: 200 OK code: 200 - duration: 183.155503ms - - id: 76 + duration: 81.266956ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 274 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"name":"tf-srv-happy-pasteur","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -3823,22 +3135,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2154 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/67466ff7-4fa6-4ea3-a074-366191a30806/action","href_result":"/servers/67466ff7-4fa6-4ea3-a074-366191a30806","id":"9ce54ee5-f41d-4bd9-8bdf-6944af0cb586","progress":0,"started_at":"2025-06-10T15:30:29.719470+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9ce54ee5-f41d-4bd9-8bdf-6944af0cb586 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3846,11 +3158,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce40a3c1-8a87-4a37-b71e-52c45f6cff52 - status: 202 Accepted - code: 202 - duration: 517.641054ms - - id: 77 + - c4f6bbcb-29f1-4a87-88d6-ddf721199565 + status: 201 Created + code: 201 + duration: 359.466742ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3865,8 +3177,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -3874,20 +3186,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2193 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:29.404158+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2193" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3895,11 +3207,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 668b407f-bb8e-4726-ba9d-0aee4e12a0f7 + - 5c1d0b66-1a24-4173-96a0-b14d6c16598a status: 200 OK code: 200 - duration: 183.508445ms - - id: 78 + duration: 86.929254ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3914,8 +3226,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -3923,20 +3235,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3944,48 +3256,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af2230e0-0763-4478-b17a-53c5188e87bc + - 87bf0637-2ba9-4dcb-b7d3-ce22b2d1c539 status: 200 OK code: 200 - duration: 182.696622ms - - id: 79 + duration: 85.765108ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2296 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:29.404158+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action","href_result":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163","id":"8b6ae006-47b6-426b-800a-6fe22951fd2a","progress":0,"started_at":"2025-10-08T23:05:14.585628+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2296" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8b6ae006-47b6-426b-800a-6fe22951fd2a Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3993,11 +3309,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18b1ad1b-121a-402e-a7a7-357006ad7e03 - status: 200 OK - code: 200 - duration: 189.369036ms - - id: 80 + - b98c7a0f-93ef-41f1-891f-92692e8f1bda + status: 202 Accepted + code: 202 + duration: 193.003853ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -4012,8 +3328,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -4021,20 +3337,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 2176 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.433474+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "2176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:39 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4042,11 +3358,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ef1c64-5b78-4a4e-880f-c4cc7eca0eff + - 4f0f769b-1c0d-4ed3-ae92-1c3a5487b9dd status: 200 OK code: 200 - duration: 152.125158ms - - id: 81 + duration: 90.323121ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -4061,8 +3377,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4070,20 +3386,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:40.311434+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2327" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4091,11 +3407,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a09f0e20-2670-45b1-b915-a783132246a4 + - dd10de90-4372-4f6d-a915-bb5d3ae93c20 status: 200 OK code: 200 - duration: 207.353103ms - - id: 82 + duration: 106.480749ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -4110,8 +3426,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -4119,20 +3435,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:40.311434+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.433474+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2327" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4140,11 +3456,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8038083a-9917-4d67-b333-55eb2d8d63ab + - 59b8f46e-0119-4030-a3d6-2d88cf04e699 status: 200 OK code: 200 - duration: 190.75824ms - - id: 83 + duration: 104.134963ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -4159,8 +3475,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe75e4a4-b359-4ee1-97dc-b451b393c2d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4168,20 +3484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 2279 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "525" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4189,11 +3505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad3300e8-c8dc-4b76-8039-3b7bd7561e88 + - 61af74ec-2568-4fbd-bcde-f5254cf1aa46 status: 200 OK code: 200 - duration: 102.435969ms - - id: 84 + duration: 90.683565ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -4208,8 +3524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -4217,20 +3533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2310 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:40 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4238,11 +3554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ec42030-daa8-47bd-ab1d-62bbb5e0b49c + - 891d93da-d1da-400a-af80-72c62dfbec12 status: 200 OK code: 200 - duration: 129.934451ms - - id: 85 + duration: 109.541736ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -4257,8 +3573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -4266,22 +3582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2310 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4289,13 +3603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2265a630-8e17-498c-8a67-64004a02ce01 - X-Total-Count: - - "0" + - 2ac519c5-2256-46e6-a999-0f81fff58547 status: 200 OK code: 200 - duration: 176.39333ms - - id: 86 + duration: 105.170188ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -4310,8 +3622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a method: GET response: proto: HTTP/2.0 @@ -4319,20 +3631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:44 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4340,11 +3652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06666669-a7fc-401e-af53-45b512367e51 + - 463290cc-ef01-4984-91ab-3c11c5e3e42d status: 200 OK code: 200 - duration: 178.300226ms - - id: 87 + duration: 59.691017ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -4359,8 +3671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/user_data method: GET response: proto: HTTP/2.0 @@ -4368,20 +3680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2290" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4389,11 +3701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75281811-b009-46fc-ab9d-848a7cb96f3a + - 3771c299-d6c2-4f0c-94af-150d63bddd4e status: 200 OK code: 200 - duration: 159.960271ms - - id: 88 + duration: 46.287018ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -4408,8 +3720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/private_nics method: GET response: proto: HTTP/2.0 @@ -4417,20 +3729,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2290" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 08 Oct 2025 23:05:25 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4438,11 +3752,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3733d12-06a2-4f60-9b13-3481c8de8a11 + - 3a2b456d-66a0-44c6-b0b2-bf73651d3ace + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 280.575714ms - - id: 89 + duration: 53.53322ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -4457,8 +3773,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4466,20 +3782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4487,11 +3803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5c0a789-887c-46f2-9711-eb6f159f1897 + - 4a916b4b-b2b6-4204-9292-b0124010a27a status: 200 OK code: 200 - duration: 164.859128ms - - id: 90 + duration: 92.140311ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4506,8 +3822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4515,20 +3831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4536,11 +3852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e31d605-14e3-42d2-9c80-959025c02fb2 + - acf0539e-6999-4f66-9a71-2011857cf281 status: 200 OK code: 200 - duration: 308.114319ms - - id: 91 + duration: 91.545487ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4555,8 +3871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4564,20 +3880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"902","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:30:28.362020+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2290" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Wed, 08 Oct 2025 23:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4585,11 +3901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bf6b329-1e64-4b95-ab67-57c3179cc22c + - e7545402-3e2f-480c-aaa0-9a49c43e4b73 status: 200 OK code: 200 - duration: 157.642563ms - - id: 92 + duration: 89.703574ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4604,8 +3920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4613,20 +3929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2174 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:31:10.342090+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2174" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:15 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4634,11 +3950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30bf0099-f4dd-42ab-8190-dbcace67d720 + - fc6b3d06-4690-4458-8ea4-c2100cd4baed status: 200 OK code: 200 - duration: 152.895832ms - - id: 93 + duration: 93.158039ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4653,8 +3969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4662,20 +3978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2174 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:43.947122+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-affectionate-swartz","id":"0d727963-009f-4932-822c-9cb2cbcbb964","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:27","maintenances":[],"modification_date":"2025-06-10T15:31:10.342090+00:00","name":"tf-srv-affectionate-swartz","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:29:43.947122+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"0d727963-009f-4932-822c-9cb2cbcbb964","name":"tf-srv-affectionate-swartz"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2174" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:15 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4683,11 +3999,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75b9bf01-a8f3-409d-a78b-e4791ec7d311 + - 8c13a398-0ad3-4a04-944c-325644ec7f57 status: 200 OK code: 200 - duration: 375.055911ms - - id: 94 + duration: 90.635065ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4702,27 +4018,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2279 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4730,11 +4048,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbc76503-2614-447f-828a-fd82e4f50279 - status: 204 No Content - code: 204 - duration: 195.153651ms - - id: 95 + - 266013f6-61a9-4990-a1e9-11e727aa51a6 + status: 200 OK + code: 200 + duration: 87.112198ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4749,8 +4067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0d727963-009f-4932-822c-9cb2cbcbb964 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4758,20 +4076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2279 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0d727963-009f-4932-822c-9cb2cbcbb964","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:05:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4779,11 +4097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1063e590-a3bb-4b31-9028-fada4818d566 - status: 404 Not Found - code: 404 - duration: 107.599643ms - - id: 96 + - 905ca34e-5d92-4f97-91d5-3fd15f062e7f + status: 200 OK + code: 200 + duration: 103.910711ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4798,8 +4116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e266fcd5-2b89-4ca0-a800-44f0ea3ad97f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4807,20 +4125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 2279 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:43.947122+00:00","export_uri":null,"id":"e266fcd5-2b89-4ca0-a800-44f0ea3ad97f","modification_date":"2025-06-10T15:31:15.983256+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4828,11 +4146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0641759b-49b6-4a50-b2d6-2afef9e75273 + - ac485443-98b5-4952-a0a1-61a95c248c87 status: 200 OK code: 200 - duration: 178.765176ms - - id: 97 + duration: 102.900025ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4847,27 +4165,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e266fcd5-2b89-4ca0-a800-44f0ea3ad97f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2279 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:06:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4875,11 +4195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca1e9da1-f0e5-4aa8-b93b-683695e6d8de - status: 204 No Content - code: 204 - duration: 217.716746ms - - id: 98 + - 01771920-4d0c-47c8-b506-e353d1b1aedd + status: 200 OK + code: 200 + duration: 97.583386ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4894,8 +4214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4903,20 +4223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:40.311434+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2327" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4924,11 +4244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 944fba35-e37b-4c24-8584-e98d0a117eaf + - 3be9f725-64ba-432e-b6ee-dfd87ddca129 status: 200 OK code: 200 - duration: 178.314611ms - - id: 99 + duration: 90.912399ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4943,8 +4263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -4952,20 +4272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:40.311434+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2327" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4973,11 +4293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acd6d79d-6b21-4648-9b69-adec166cb29f + - b4be9ed6-1fdc-4495-9179-540eb71e009d status: 200 OK code: 200 - duration: 542.187348ms - - id: 100 + duration: 115.452807ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4992,8 +4312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe75e4a4-b359-4ee1-97dc-b451b393c2d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -5001,20 +4321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 2279 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "525" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5022,11 +4342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 662de3bf-ec6d-4d91-adca-123318600e25 + - c2c6508a-07d9-49ad-aed9-dd3ade618e22 status: 200 OK code: 200 - duration: 106.137731ms - - id: 101 + duration: 91.331181ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -5041,8 +4361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -5050,20 +4370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2279 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5071,11 +4391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1216d00-91f8-429e-8e6f-d577934cd443 + - f4284637-a19f-4f68-9544-8c980a9ee9f9 status: 200 OK code: 200 - duration: 102.522491ms - - id: 102 + duration: 92.642197ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -5090,8 +4410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -5099,22 +4419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2279 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5122,13 +4440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4458855e-adc0-413a-bb7c-059a76565dc3 - X-Total-Count: - - "0" + - 4c601e23-0507-4214-9080-161bd71ccdbc status: 200 OK code: 200 - duration: 97.93631ms - - id: 103 + duration: 97.570954ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -5143,8 +4459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 method: GET response: proto: HTTP/2.0 @@ -5152,20 +4468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:30:40.311434+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2327" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:06:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5173,52 +4489,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20f8e115-291a-476c-8544-c85afcd22947 + - 5445b5c7-e130-4239-a9df-e34539d4b96e status: 200 OK code: 200 - duration: 188.662017ms - - id: 104 + duration: 73.717626ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 143 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/67466ff7-4fa6-4ea3-a074-366191a30806/action","href_result":"/servers/67466ff7-4fa6-4ea3-a074-366191a30806","id":"e5b853cb-0b43-42dd-90bc-301518453f14","progress":0,"started_at":"2025-06-10T15:31:20.349239+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","type":"not_found"}' headers: Content-Length: - - "352" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e5b853cb-0b43-42dd-90bc-301518453f14 + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5226,11 +4538,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53d210f6-5c8b-4803-8f20-ecbd12ba943f - status: 202 Accepted - code: 202 - duration: 297.188256ms - - id: 105 + - e9c1d4f0-b1e8-46da-9185-244b92029ef3 + status: 404 Not Found + code: 404 + duration: 44.663075ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -5245,8 +4557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d method: GET response: proto: HTTP/2.0 @@ -5254,20 +4566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","type":"not_found"}' headers: Content-Length: - - "2287" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5275,11 +4587,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc5e256d-d17f-4938-b6cc-b2885e8e1d2d - status: 200 OK - code: 200 - duration: 242.730626ms - - id: 106 + - 196497c3-af9b-4631-bacf-95d4212f751a + status: 404 Not Found + code: 404 + duration: 32.119606ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -5294,8 +4606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d method: GET response: proto: HTTP/2.0 @@ -5303,20 +4615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","type":"not_found"}' headers: Content-Length: - - "2287" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:25 GMT + - Wed, 08 Oct 2025 23:06:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5324,11 +4636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80d1c7a0-7889-459f-b3f7-624492de4027 - status: 200 OK - code: 200 - duration: 185.752671ms - - id: 107 + - ca9478ff-756f-48e6-91de-8f17d988c5f5 + status: 404 Not Found + code: 404 + duration: 18.74162ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -5343,8 +4655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -5352,20 +4664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2287" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5373,11 +4685,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e356d17-1199-45c9-af57-d87fc8d60590 + - ee9b6035-ec59-41ed-aea2-752416db0978 status: 200 OK code: 200 - duration: 175.362714ms - - id: 108 + duration: 90.811381ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -5392,8 +4704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -5401,20 +4713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2287" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5422,11 +4734,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16b6cad2-cf56-49ad-819f-d0b66216c97b + - 287380ab-a1fe-46d0-8778-9280f64bb50a status: 200 OK code: 200 - duration: 166.873263ms - - id: 109 + duration: 89.008833ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -5441,8 +4753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a method: GET response: proto: HTTP/2.0 @@ -5450,20 +4762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2287" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5471,11 +4783,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f143896-41a7-4b09-b31a-5b90427a6494 + - eb062f4a-fea7-4185-a7f3-81f2df3fadd3 status: 200 OK code: 200 - duration: 167.936306ms - - id: 110 + duration: 50.904063ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5490,8 +4802,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/user_data method: GET response: proto: HTTP/2.0 @@ -5499,20 +4811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2287" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5520,11 +4832,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3633918-1301-4871-b18d-ac51b6cefcc4 + - 13a51012-b50d-44d1-b2a3-28b70356d7e3 status: 200 OK code: 200 - duration: 165.664265ms - - id: 111 + duration: 47.769348ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5539,8 +4851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/private_nics method: GET response: proto: HTTP/2.0 @@ -5548,20 +4860,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2287 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:20.126398+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2287" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:51 GMT + - Wed, 08 Oct 2025 23:06:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5569,11 +4883,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d5c6b45-041e-4917-8250-87d012d861db + - 67bb3a98-efb4-4ed6-b58d-ac801ca1393f + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 177.127202ms - - id: 112 + duration: 50.793108ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5588,8 +4904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -5597,20 +4913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:54.845840+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:56 GMT + - Wed, 08 Oct 2025 23:06:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5618,48 +4934,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d93b8ede-6917-4c55-8b83-fdcb7d63d7c3 + - c841f432-a10b-4646-97b8-b12c34228404 status: 200 OK code: 200 - duration: 362.949871ms - - id: 113 + duration: 92.370518ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:28.588210+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-wonderful-ishizaka","id":"67466ff7-4fa6-4ea3-a074-366191a30806","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:5b","maintenances":[],"modification_date":"2025-06-10T15:31:54.845840+00:00","name":"tf-srv-wonderful-ishizaka","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:30:28.588210+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"67466ff7-4fa6-4ea3-a074-366191a30806","name":"tf-srv-wonderful-ishizaka"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action","href_result":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163","id":"9e71099d-74b5-4504-9538-ed24a152833c","progress":0,"started_at":"2025-10-08T23:06:46.897945+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e71099d-74b5-4504-9538-ed24a152833c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5667,11 +4987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 670baa5f-d115-416f-aa9c-20fe449ff7b7 - status: 200 OK - code: 200 - duration: 212.728147ms - - id: 114 + - 81c45f9b-1a16-45a2-81b3-5c8d4aa26907 + status: 202 Accepted + code: 202 + duration: 190.823842ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5686,27 +5006,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2273 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:06:46.747920+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5714,11 +5036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4f2b025-7c90-462c-a868-fb0c3481904a - status: 204 No Content - code: 204 - duration: 269.165609ms - - id: 115 + - c03ade26-5221-4124-a9e3-c2e771701389 + status: 200 OK + code: 200 + duration: 111.191655ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5733,8 +5055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -5744,7 +5066,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67466ff7-4fa6-4ea3-a074-366191a30806","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2176b007-c466-46a2-a8e9-04a4ca40f163","type":"not_found"}' headers: Content-Length: - "143" @@ -5753,9 +5075,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5763,11 +5085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e650c406-be25-4939-b793-0595ae1f8c2e + - b33767e7-b7ea-409c-aafc-10e116f46761 status: 404 Not Found code: 404 - duration: 100.78456ms - - id: 116 + duration: 48.851311ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5782,8 +5104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe75e4a4-b359-4ee1-97dc-b451b393c2d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a method: GET response: proto: HTTP/2.0 @@ -5791,20 +5113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:28.588210+00:00","export_uri":null,"id":"fe75e4a4-b359-4ee1-97dc-b451b393c2d9","modification_date":"2025-06-10T15:31:57.316042+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e8e8771d-6c18-433f-9752-b5752d83b02a","type":"not_found"}' headers: Content-Length: - - "446" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5812,11 +5134,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68ad5f61-2db7-416c-857e-cebe0a2df25b - status: 200 OK - code: 200 - duration: 124.921125ms - - id: 117 + - 9caf5e96-299f-4862-8f33-c4055b49e313 + status: 404 Not Found + code: 404 + duration: 38.158217ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5831,27 +5153,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe75e4a4-b359-4ee1-97dc-b451b393c2d9 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 127 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"volume","resource_id":"e8e8771d-6c18-433f-9752-b5752d83b02a","type":"not_found"}' headers: + Content-Length: + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5859,11 +5183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f44d1e-0f2b-46e6-a15f-53e67f6ab9b3 - status: 204 No Content - code: 204 - duration: 298.200171ms - - id: 118 + - 28d51a31-853b-4cd8-9fb9-426a1928e3b0 + status: 404 Not Found + code: 404 + duration: 24.802794ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5878,8 +5202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67466ff7-4fa6-4ea3-a074-366191a30806 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 method: GET response: proto: HTTP/2.0 @@ -5889,7 +5213,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67466ff7-4fa6-4ea3-a074-366191a30806","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2176b007-c466-46a2-a8e9-04a4ca40f163","type":"not_found"}' headers: Content-Length: - "143" @@ -5898,9 +5222,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:58 GMT + - Wed, 08 Oct 2025 23:06:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5908,7 +5232,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a42feb35-8d8b-4b13-87ae-fb25adeffb02 + - b94d071a-cef1-4777-8df0-be5038dbf797 status: 404 Not Found code: 404 - duration: 155.427236ms + duration: 44.302547ms diff --git a/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml b/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml index 8689d6b86..da49a7d94 100644 --- a/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServer_PrivateNetworkMissingPNIC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"TestAccServer_PrivateNetworkMissingPNIC","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 437 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - "437" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:44 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b97dd5cb-7d86-436e-9850-c17a37a59cf7 + - 7a2d27c4-dcee-40e8-bdfc-a8490aff2153 status: 200 OK code: 200 - duration: 221.624375ms + duration: 73.427571ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 437 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - "437" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:44 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +97,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 799d86c1-0f15-4792-8735-f7ce1c022678 + - 718c9882-02cc-41a3-90d5-10bd957d51c0 status: 200 OK code: 200 - duration: 247.6875ms + duration: 28.324413ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 205 + content_length: 208 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-quizzical-brahmagupta","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-condescending-mcclintock","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1100 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "1098" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:45 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c42351d-4477-408c-a639-64349fb0c59f + - 03996ec7-d5ac-4cde-8ad3-c5310a101601 status: 200 OK code: 200 - duration: 654.860542ms + duration: 1.285917463s - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1100 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "1098" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:45 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ace04111-26cd-4877-be6e-954b8f1346c2 + - 88d09758-2657-4f17-926e-1943e415e747 status: 200 OK code: 200 - duration: 48.962916ms + duration: 24.526637ms - id: 4 request: proto: HTTP/1.1 @@ -216,7 +216,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -236,11 +236,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:45 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,12 +248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0079adb1-e22d-41e4-8355-d0e7c86ae75d + - f16bb838-d558-4924-a542-a7f6490968d1 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 120.973958ms + duration: 53.029ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -289,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:45 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,12 +301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e82ff948-062e-492d-a53c-9329e0b1607c + - d6670cec-b01c-4da0-be0b-e4abb528a12a X-Total-Count: - "75" status: 200 OK code: 200 - duration: 241.020333ms + duration: 44.165119ms - id: 6 request: proto: HTTP/1.1 @@ -322,7 +322,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:46 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,28 +352,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d73d90-dae7-4297-9736-f777a24a7a6a + - ce367684-7515-4a36-b59d-775237a00c98 status: 200 OK code: 200 - duration: 271.315542ms + duration: 53.20724ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 238 + content_length: 240 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-adoring-easley","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-naughty-dubinsky","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -382,22 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1832 + content_length: 1750 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:46.844029+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1832" + - "1750" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70adfb3-b046-409d-9deb-1526a5cf8462 + - d8c6b04a-a34b-4449-a83d-ce212418423d status: 201 Created code: 201 - duration: 1.524111625s + duration: 575.904916ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1832 + content_length: 1750 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:46.844029+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1832" + - "1750" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:47 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 423c22d7-f7ed-4d0c-8565-e9022e4fffda + - 41ffef7f-50ac-40af-bc0d-9c0224ab0368 status: 200 OK code: 200 - duration: 277.088375ms + duration: 101.941804ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1832 + content_length: 1750 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:46.844029+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1832" + - "1750" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:48 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48b79281-770f-4310-a4f5-bf978d18e0c8 + - 8757e6c6-6f35-496c-be25-f21529f61500 status: 200 OK code: 200 - duration: 290.584333ms + duration: 102.326346ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:48 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5abae3d-d422-4a08-9147-09a0ad67e9a9 + - c41e2594-5966-4bbc-b8f1-27bedba0017b status: 200 OK code: 200 - duration: 220.685584ms + duration: 40.33344ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/28336d39-f145-4cac-a939-d7e0c08c821b/action","href_result":"/servers/28336d39-f145-4cac-a939-d7e0c08c821b","id":"5e31ba0e-bbf1-480d-b23e-ae365e6396fc","progress":0,"started_at":"2025-09-30T09:25:48.894466+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c02766f9-760f-4697-9d67-41886c8285db/action","href_result":"/servers/c02766f9-760f-4697-9d67-41886c8285db","id":"b41a8182-5397-44ff-8a0e-c245528633dd","progress":0,"started_at":"2025-10-08T23:04:29.590778+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:48 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5e31ba0e-bbf1-480d-b23e-ae365e6396fc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b41a8182-5397-44ff-8a0e-c245528633dd Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68ef1b79-8974-4832-a044-edd7e7ac3c10 + - 103af33b-febf-408e-a470-06bb387c0b05 status: 202 Accepted code: 202 - duration: 528.669584ms + duration: 183.44769ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 1772 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:48.676148+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:29.447693+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:49 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d045763-5ea4-466d-9cb5-6af4e6b20d1e + - db593e95-978f-46d7-b31a-89a85d352079 status: 200 OK code: 200 - duration: 235.715ms + duration: 83.735426ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1988 + content_length: 1906 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1988" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:54 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5db7fe37-6280-46cc-b812-ed1917ed8f46 + - d179b1cc-e630-4f0c-aa40-eefcd1bfefbd status: 200 OK code: 200 - duration: 282.811666ms + duration: 123.183934ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1100 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "1098" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:54 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0efd719c-5294-41c8-accc-42bad1f093b1 + - 3febf456-1414-4cb4-b196-d4ac340ac0c2 status: 200 OK code: 200 - duration: 227.293292ms + duration: 42.814115ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1988 + content_length: 1906 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1988" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:54 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6405dbba-5cbc-4ee0-8491-f001bc1d2ed4 + - 8d97ad87-6d80-4f34-985b-f139923bca16 status: 200 OK code: 200 - duration: 262.827417ms + duration: 94.38891ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3"}' + body: '{"private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:55 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3fbdc2b-a0cd-4e8b-aa04-7a10f5a7d957 + - f8768ca0-9e4a-4344-b4f2-d2edbb776119 status: 201 Created code: 201 - duration: 734.209041ms + duration: 536.666197ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:25:55 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9469248f-c78f-4c52-8b45-72792f299e08 + - 3817ebcc-fd9f-4690-abf1-defc7203ceb0 status: 200 OK code: 200 - duration: 138.623ms + duration: 62.080768ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:00 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3990a329-19ce-42a3-a6ee-684e61d36384 + - 69b18cee-abab-4886-b1db-e67e0b0f0752 status: 200 OK code: 200 - duration: 110.279209ms + duration: 47.325041ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26878ec6-8438-403c-8213-69b107322e97 + - 72dccf92-8ddd-4342-a984-6ae6b17a0e65 status: 200 OK code: 200 - duration: 160.630917ms + duration: 46.074793ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1029,7 +1029,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:11 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d43cf0d9-5b59-4fd1-862a-e295e9e165e9 + - 81e9d08a-ef6e-43a9-8d95-d43545628f5c status: 200 OK code: 200 - duration: 118.108625ms + duration: 61.66343ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:25:55.292776+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:16 GMT + - Wed, 08 Oct 2025 23:04:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dd4eba5-945b-427a-92c9-847eb212be45 + - 31e22093-73a2-4ef1-b087-9c8539957a27 status: 200 OK code: 200 - duration: 100.431875ms + duration: 66.822655ms - id: 22 request: proto: HTTP/1.1 @@ -1116,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1125,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d4e3dfe-aebd-4898-aca9-8bd6e5e6cbbc + - 9055c293-fb80-41e0-8798-397e6240762a status: 200 OK code: 200 - duration: 109.660333ms + duration: 75.45788ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3068d176-296f-44d2-9424-253e095fd4d4 + - e1905e1b-802e-42f1-af74-9c8c757b7800 status: 200 OK code: 200 - duration: 102.673417ms + duration: 55.859124ms - id: 24 request: proto: HTTP/1.1 @@ -1214,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1223,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2360" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27fd46ed-7bf6-4bea-9bdc-1b496affafb3 + - d64db2b4-d465-47f5-8037-c48b975e3cbc status: 200 OK code: 200 - duration: 162.205916ms + duration: 59.41553ms - id: 25 request: proto: HTTP/1.1 @@ -1263,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1272,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 473 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bffa1ef2-3a69-4a2f-bec6-5f540e7092aa - status: 404 Not Found - code: 404 - duration: 51.475375ms + - 99e53d88-b85f-4fe4-b1a1-a18b718ecfc5 + status: 200 OK + code: 200 + duration: 55.08648ms - id: 26 request: proto: HTTP/1.1 @@ -1312,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1321,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b41e8c2-0f5a-4b20-9a2f-f53e3d87ed7a + - 0c0c5a61-7e69-4bf9-8310-a71df56f82da status: 200 OK code: 200 - duration: 85.884792ms + duration: 66.478871ms - id: 27 request: proto: HTTP/1.1 @@ -1361,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1370,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 473 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:21 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8779627e-4918-47d8-92f1-e3fd0e96b93f + - c2025205-3cb9-48c9-8bfc-68246a1e7ce7 status: 200 OK code: 200 - duration: 97.831417ms + duration: 55.743444ms - id: 28 request: proto: HTTP/1.1 @@ -1410,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1419,22 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 473 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,12 +1440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28daed2a-c725-4d38-b5c3-620abc7022d7 - X-Total-Count: - - "1" + - 8b318d16-7c92-4b74-8c28-a6749796bd67 status: 200 OK code: 200 - duration: 114.706333ms + duration: 63.759671ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1472,20 +1468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1073" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d5d7bfa-ab54-4d12-8251-f5255e5c5b57 + - 79ec418c-5950-4938-8d50-58d232b11f43 status: 200 OK code: 200 - duration: 25.152792ms + duration: 52.958743ms - id: 30 request: proto: HTTP/1.1 @@ -1512,8 +1508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1521,20 +1517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "437" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2ccfd2a-48f5-41e8-9429-45d18459a49f + - 73692a67-86d8-4756-b04e-02a598b87aff status: 200 OK code: 200 - duration: 25.135875ms + duration: 83.109478ms - id: 31 request: proto: HTTP/1.1 @@ -1561,8 +1557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1570,20 +1566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98093281-ce54-42a5-b0df-92272591932c + - 4d287a8b-0f1f-4354-960c-7ee2e576700d status: 200 OK code: 200 - duration: 26.605625ms + duration: 54.517098ms - id: 32 request: proto: HTTP/1.1 @@ -1610,8 +1606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1619,20 +1615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 473 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2446" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:05:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e18bf21-addd-4eac-897f-5320c4617846 + - 5445d2ba-2aaa-4ac3-bc8e-847f091886c7 status: 200 OK code: 200 - duration: 176.551542ms + duration: 57.178426ms - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1655,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1668,20 +1664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 473 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6b9b84f-9d14-4a80-b513-e86bd6184588 - status: 404 Not Found - code: 404 - duration: 39.625666ms + - d1b6dfde-7ccf-42ab-b51d-5d6a6afd7daa + status: 200 OK + code: 200 + duration: 55.918641ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1704,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1717,20 +1713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eba9b5b5-ddfe-40b3-8057-9fc6e95a2776 + - be889b60-3797-4219-8082-b4babe2f623a status: 200 OK code: 200 - duration: 94.549333ms + duration: 64.44944ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1753,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -1766,20 +1762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 475 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:22 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23cf37de-f3b2-4dc5-bf57-9b21d7b4d840 + - ab90a798-0f18-4e53-86f6-4e953258af61 status: 200 OK code: 200 - duration: 111.721ms + duration: 52.176189ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1802,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -1815,22 +1811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2364 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,12 +1832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 245ce4f9-f63a-4eec-8383-9c07ed23dbde - X-Total-Count: - - "1" + - e82a3575-251b-4677-b025-9810c565212c status: 200 OK code: 200 - duration: 110.3935ms + duration: 102.873027ms - id: 37 request: proto: HTTP/1.1 @@ -1859,8 +1851,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -1868,20 +1860,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "1073" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 873d8c94-1c80-454f-8c3c-1e9a66be1f30 - status: 200 OK - code: 200 - duration: 41.839041ms + - 892be242-866f-473a-9817-09d664a4f62d + status: 404 Not Found + code: 404 + duration: 44.351265ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1900,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -1917,20 +1909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21438a7d-f164-4312-97ee-3ac14e983dfa + - c78a378c-50b0-486e-ab7e-7ceaff6e15f6 status: 200 OK code: 200 - duration: 104.0775ms + duration: 40.469195ms - id: 39 request: proto: HTTP/1.1 @@ -1957,8 +1949,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -1966,20 +1958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 17 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2446" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,10 +1979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac3ce4d-6833-4642-8c40-bf38b8f6a3b5 + - 7a128a78-d85c-4347-8380-d5568adcdf11 status: 200 OK code: 200 - duration: 162.5355ms + duration: 73.761028ms - id: 40 request: proto: HTTP/1.1 @@ -2006,8 +1998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8e810e5c-9a22-4718-92e2-4c27e8b531f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -2015,20 +2007,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1073" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,10 +2030,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40374f30-2afd-44bb-82c6-db49203b9a76 + - abb72c17-731a-4619-874e-f4bff058873f + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 42.841459ms + duration: 67.927793ms - id: 41 request: proto: HTTP/1.1 @@ -2055,8 +2051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2064,20 +2060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1075 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d427e34-db40-4b6d-8e5a-acbcf69f9ac6 + - bd46a73d-0afa-4bb8-8078-892bcc2be294 status: 200 OK code: 200 - duration: 28.152ms + duration: 34.542298ms - id: 42 request: proto: HTTP/1.1 @@ -2104,8 +2100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -2113,20 +2109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "1098" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:23 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4892d8f-b7d6-495f-8f85-07d861b8e9ea + - e7d91a95-e15f-445d-bd80-a341fca551ba status: 200 OK code: 200 - duration: 33.894291ms + duration: 27.789901ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -2162,20 +2158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 1100 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "2360" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 332b8ab2-0ba4-48e5-893e-33e46288201a + - 44d2bdc3-25ef-402c-9de0-7294fc9ca8dc status: 200 OK code: 200 - duration: 157.903167ms + duration: 23.910506ms - id: 44 request: proto: HTTP/1.1 @@ -2202,8 +2198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -2211,20 +2207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2364 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 453c51d5-9943-4f7a-b37a-47c2660a878a - status: 404 Not Found - code: 404 - duration: 35.588666ms + - 0f919e8f-238a-4068-974e-996e79ad7eb8 + status: 200 OK + code: 200 + duration: 111.123278ms - id: 45 request: proto: HTTP/1.1 @@ -2251,8 +2247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -2260,20 +2256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "705" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,10 +2277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b41c0b13-84ab-4254-8661-3c271ebe651b - status: 200 OK - code: 200 - duration: 85.417833ms + - dbdb04d9-dd1e-4b2c-8aad-b9db77fafcd9 + status: 404 Not Found + code: 404 + duration: 32.107318ms - id: 46 request: proto: HTTP/1.1 @@ -2300,8 +2296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -2309,20 +2305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,10 +2326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3767f55-a568-4148-b4f3-f5db69d028bf + - 4033535c-e2bb-43c2-8b3f-27bf8729529b status: 200 OK code: 200 - duration: 96.865083ms + duration: 63.56387ms - id: 47 request: proto: HTTP/1.1 @@ -2349,8 +2345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -2358,22 +2354,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,12 +2375,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2251b222-2367-4a83-875e-6b89e98d596f - X-Total-Count: - - "1" + - b16870fc-b961-483a-b44b-af01017d6bcd status: 200 OK code: 200 - duration: 121.005833ms + duration: 53.840701ms - id: 48 request: proto: HTTP/1.1 @@ -2402,8 +2394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -2411,20 +2403,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1073" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,10 +2426,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43983c7f-0ba9-4adb-9403-7dd6d4896ea9 + - db42236d-5db7-47d7-b3ed-1efb16a93732 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 32.078375ms + duration: 50.11472ms - id: 49 request: proto: HTTP/1.1 @@ -2451,8 +2447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2460,20 +2456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1075 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,10 +2477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b24c2a6-1176-45bd-87be-3d594add6923 + - ae7a2ff7-0582-4d56-8e91-38fe3c9e5b4b status: 200 OK code: 200 - duration: 106.999792ms + duration: 25.273421ms - id: 50 request: proto: HTTP/1.1 @@ -2500,8 +2496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -2509,20 +2505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 475 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2360" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,10 +2526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beaf58a4-9398-409f-b616-ad202d716290 + - acbd5a52-9fcc-4740-95b8-ee8c51f887c0 status: 200 OK code: 200 - duration: 164.1555ms + duration: 104.213549ms - id: 51 request: proto: HTTP/1.1 @@ -2549,8 +2545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8e810e5c-9a22-4718-92e2-4c27e8b531f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -2558,20 +2554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 2364 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1073" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:24 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,10 +2575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cecdc4-1d0b-41cd-b8e3-935c206b9d2c + - 25d87409-f953-42db-8a88-162475fe173b status: 200 OK code: 200 - duration: 84.671417ms + duration: 96.425735ms - id: 52 request: proto: HTTP/1.1 @@ -2598,8 +2594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2607,20 +2603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1075 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,10 +2624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f8b6244-4da2-4430-a0fa-56a36260d60f + - 4066c45a-5cd9-4917-9a5d-1a9b7a6f57b7 status: 200 OK code: 200 - duration: 27.742875ms + duration: 46.559355ms - id: 53 request: proto: HTTP/1.1 @@ -2647,8 +2643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -2656,20 +2652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "1098" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,10 +2673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bb72c0-388c-466f-86e1-d697c288e2cc + - 37c34b6d-ac2d-43b1-909c-3a5065843e85 status: 200 OK code: 200 - duration: 27.651625ms + duration: 26.495574ms - id: 54 request: proto: HTTP/1.1 @@ -2696,8 +2692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -2705,20 +2701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 1100 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "2446" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2726,10 +2722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0314cd7-4a5b-4eaa-9851-b946f93bdc59 + - 2bf05d9a-50e2-4448-9ee6-297f9ea86fba status: 200 OK code: 200 - duration: 191.439ms + duration: 22.723918ms - id: 55 request: proto: HTTP/1.1 @@ -2745,8 +2741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -2754,20 +2750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2364 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,10 +2771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df6adbe9-99bb-4d0c-aae5-6a60420e6c3a - status: 404 Not Found - code: 404 - duration: 30.408417ms + - d14b97f9-9280-4194-aebd-b59783c33db9 + status: 200 OK + code: 200 + duration: 77.300582ms - id: 56 request: proto: HTTP/1.1 @@ -2794,8 +2790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -2803,20 +2799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "705" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2824,10 +2820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 388b215a-5bf3-4c14-843a-c1ed5b0cb4c4 - status: 200 OK - code: 200 - duration: 90.549291ms + - 2f80bfdc-d675-4d38-81ef-534ecd24d5dd + status: 404 Not Found + code: 404 + duration: 33.609519ms - id: 57 request: proto: HTTP/1.1 @@ -2843,8 +2839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -2852,20 +2848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2873,10 +2869,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c145b89-2f29-40a9-9ba0-f7d014192877 + - 758eac5a-c952-4430-85aa-5bac7917f479 status: 200 OK code: 200 - duration: 90.6705ms + duration: 79.495879ms - id: 58 request: proto: HTTP/1.1 @@ -2892,8 +2888,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -2901,22 +2897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2924,12 +2918,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 327013fe-6e91-4521-93f1-01bf1d33451a - X-Total-Count: - - "1" + - fda86a45-bb69-458a-b693-7d6a57b38578 status: 200 OK code: 200 - duration: 97.589708ms + duration: 54.064506ms - id: 59 request: proto: HTTP/1.1 @@ -2945,8 +2937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -2954,20 +2946,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1073" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2975,10 +2969,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0927b69-ef3e-4af1-907c-9f55eca94fe5 + - 7c65b0cf-b900-454b-a50c-b9d8c604af55 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 32.646292ms + duration: 61.391878ms - id: 60 request: proto: HTTP/1.1 @@ -2994,8 +2990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3003,20 +2999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1075 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:25 GMT + - Wed, 08 Oct 2025 23:06:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3024,10 +3020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 134bb168-64c9-4c05-b1ad-94af5005f1bd + - 88253407-47bd-4c8d-a639-99bbab829219 status: 200 OK code: 200 - duration: 113.863458ms + duration: 26.40161ms - id: 61 request: proto: HTTP/1.1 @@ -3043,8 +3039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -3052,20 +3048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 475 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2446" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3073,10 +3069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97eb3e1e-4dd4-4d62-9356-a97acecbb8d5 + - 6a7c156e-7d53-4bab-b4a5-477d17643357 status: 200 OK code: 200 - duration: 154.172667ms + duration: 52.595184ms - id: 62 request: proto: HTTP/1.1 @@ -3092,8 +3088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8e810e5c-9a22-4718-92e2-4c27e8b531f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -3101,20 +3097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 2364 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1073" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3122,10 +3118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0b54176-9e4b-46cb-8f29-850d4bdaf6c4 + - a73aea4c-3cec-4cae-a2c5-8feab8526fc6 status: 200 OK code: 200 - duration: 88.027208ms + duration: 97.266372ms - id: 63 request: proto: HTTP/1.1 @@ -3141,8 +3137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3150,20 +3146,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1075 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3171,10 +3167,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 141a2415-3d81-4ca0-9d16-9fa8a20eec72 + - 2fc6a02b-7b7b-4321-8cd6-11b5c39da5e8 status: 200 OK code: 200 - duration: 27.512375ms + duration: 66.004049ms - id: 64 request: proto: HTTP/1.1 @@ -3190,8 +3186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -3199,20 +3195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "1098" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3220,10 +3216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a770b33-cea4-493e-8ad4-d3c271811cb3 + - b00456b2-e2f3-44b4-a79d-99524bf9e4ce status: 200 OK code: 200 - duration: 28.911708ms + duration: 32.582899ms - id: 65 request: proto: HTTP/1.1 @@ -3239,8 +3235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -3248,20 +3244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1100 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "475" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3269,10 +3265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba77cffc-7ccd-40d3-8199-51f339e1e2ac + - 5b7d70c2-dbed-4f53-ac30-dd936205dc84 status: 200 OK code: 200 - duration: 90.840417ms + duration: 23.274979ms - id: 66 request: proto: HTTP/1.1 @@ -3288,8 +3284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -3297,20 +3293,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 2364 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2360" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3318,10 +3314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2faaea2a-8cfc-43e3-978b-b4b01201af84 + - 16e335b4-a2a6-4f6c-affa-3ee0dd3d7213 status: 200 OK code: 200 - duration: 171.00375ms + duration: 87.37456ms - id: 67 request: proto: HTTP/1.1 @@ -3337,8 +3333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -3346,20 +3342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 143 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "2446" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3367,10 +3363,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c503daf1-9d88-473e-8eaf-fb56762d0268 - status: 200 OK - code: 200 - duration: 168.068583ms + - efa89772-bb6c-4747-b60e-66513a2b0c8c + status: 404 Not Found + code: 404 + duration: 32.13055ms - id: 68 request: proto: HTTP/1.1 @@ -3386,8 +3382,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -3395,20 +3391,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3416,10 +3412,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78136dc4-7911-4fdb-bc9f-c37d0a9e03f6 - status: 404 Not Found - code: 404 - duration: 31.707708ms + - a94b3f77-4fe6-40a5-b40a-ef567ef1f340 + status: 200 OK + code: 200 + duration: 52.505087ms - id: 69 request: proto: HTTP/1.1 @@ -3435,8 +3431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8e810e5c-9a22-4718-92e2-4c27e8b531f3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -3444,20 +3440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1073" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3465,10 +3461,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cce487d2-92d6-47b7-abd3-d1972d0f8845 + - e37534e0-3bb3-4551-8b3e-c0c3d9b62352 status: 200 OK code: 200 - duration: 50.656333ms + duration: 56.02695ms - id: 70 request: proto: HTTP/1.1 @@ -3484,8 +3480,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -3493,20 +3489,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "705" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3514,10 +3512,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21b5ff3f-b773-4357-913a-53294d99db20 + - 0d4c6d27-176f-46f9-a62a-0541cfc186cd + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 75.266ms + duration: 62.692035ms - id: 71 request: proto: HTTP/1.1 @@ -3533,8 +3533,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3542,20 +3542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1075 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3563,10 +3563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f417458a-4ca6-4190-9019-a4a12332555e + - 12ca5050-aff8-4696-afbc-81b55485c7c7 status: 200 OK code: 200 - duration: 101.312417ms + duration: 28.330713ms - id: 72 request: proto: HTTP/1.1 @@ -3582,8 +3582,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -3591,22 +3591,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 475 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3614,12 +3612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 091723a9-a9a4-45f5-9d9b-88f264940bec - X-Total-Count: - - "1" + - a2aec899-9fe8-4f19-afbf-a797ffaae465 status: 200 OK code: 200 - duration: 99.945959ms + duration: 51.24358ms - id: 73 request: proto: HTTP/1.1 @@ -3635,8 +3631,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=01f8549c-8652-473d-902b-c76ac4c06138&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -3644,20 +3640,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 2364 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:f17f:78e1:6d86:5595/64","created_at":"2025-09-30T09:25:55.500567Z","id":"966cf099-8ec7-4b9c-b02a-8324d1c3d912","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:25:55.500567Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:25:55.360996Z","id":"dc3669ca-7523-44cf-a052-e9327aff4c36","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"01f8549c-8652-473d-902b-c76ac4c06138","mac_address":"02:00:00:1D:B8:AC","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:25:55.360996Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1073" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:26 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3665,10 +3661,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beb96ab8-7c74-4aaa-8e40-dfd930a7b3bf + - 0b65880a-f6f0-42ac-b31e-304579833030 status: 200 OK code: 200 - duration: 27.930917ms + duration: 137.843206ms - id: 74 request: proto: HTTP/1.1 @@ -3684,8 +3680,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3693,20 +3689,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1075 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:25:55.054192+00:00","id":"01f8549c-8652-473d-902b-c76ac4c06138","ipam_ip_ids":["dc3669ca-7523-44cf-a052-e9327aff4c36","966cf099-8ec7-4b9c-b02a-8324d1c3d912"],"mac_address":"02:00:00:1d:b8:ac","modification_date":"2025-09-30T09:26:20.475606+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:27 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3714,10 +3710,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc648ff8-7ec9-4676-9e12-6e2aa8a5d7e8 + - af38afb5-7993-4d47-9736-e3f89261cb44 status: 200 OK code: 200 - duration: 97.130625ms + duration: 43.400323ms - id: 75 request: proto: HTTP/1.1 @@ -3733,27 +3729,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 437 uncompressed: false - body: "" + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: + Content-Length: + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:27 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3761,10 +3759,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31066912-e75b-4316-9d24-5b6950306448 - status: 204 No Content - code: 204 - duration: 400.374917ms + - 1aab1f50-2bbd-4e4b-ae38-25cfcfcc1385 + status: 200 OK + code: 200 + duration: 36.208394ms - id: 76 request: proto: HTTP/1.1 @@ -3780,8 +3778,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/01f8549c-8652-473d-902b-c76ac4c06138 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -3789,20 +3787,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"01f8549c-8652-473d-902b-c76ac4c06138","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:27 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3810,10 +3808,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51f876e9-757b-4296-ab70-e567fd3b6aae - status: 404 Not Found - code: 404 - duration: 109.868375ms + - de2369e3-5243-4126-af9f-f4c29f73be7a + status: 200 OK + code: 200 + duration: 54.70424ms - id: 77 request: proto: HTTP/1.1 @@ -3829,8 +3827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -3838,20 +3836,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1100 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "437" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3859,10 +3857,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55e426a1-a03c-43f5-a296-9e94fcf42cb4 + - 22b9c93c-e911-482e-8109-f486463153d3 status: 200 OK code: 200 - duration: 27.63875ms + duration: 22.416599ms - id: 78 request: proto: HTTP/1.1 @@ -3878,8 +3876,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -3887,20 +3885,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 2364 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3908,10 +3906,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 744f294d-e09d-4f52-b680-40f189e2f770 + - 69b11509-b931-4421-88f1-dd0a8862671f status: 200 OK code: 200 - duration: 29.085542ms + duration: 98.009508ms - id: 79 request: proto: HTTP/1.1 @@ -3927,8 +3925,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -3936,20 +3934,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1988 + content_length: 2364 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1988" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3957,10 +3955,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3823cf-ad9f-4bbb-9087-47b204111f1d + - 2d1d3b63-4541-4594-8d9e-88efde4f1826 status: 200 OK code: 200 - duration: 148.814167ms + duration: 106.682181ms - id: 80 request: proto: HTTP/1.1 @@ -3976,8 +3974,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3985,20 +3983,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1075 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4006,10 +4004,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe62664b-eb64-4d9c-99e7-718721dccd69 - status: 404 Not Found - code: 404 - duration: 42.034625ms + - 46f9196b-0dd9-4a4c-9892-a93e794657f2 + status: 200 OK + code: 200 + duration: 43.310558ms - id: 81 request: proto: HTTP/1.1 @@ -4025,8 +4023,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4034,20 +4032,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "705" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4055,10 +4053,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29e23863-1954-4d57-93e7-b4481d663306 - status: 200 OK - code: 200 - duration: 99.779542ms + - caf146f9-e8b7-4747-8f3c-d22751ebec95 + status: 404 Not Found + code: 404 + duration: 32.767931ms - id: 82 request: proto: HTTP/1.1 @@ -4074,8 +4072,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4083,20 +4081,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4104,10 +4102,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70603956-d658-4253-91f8-7fee28df898c + - 76c21a06-d5d5-4c69-b0f9-9d88cbcad84d status: 200 OK code: 200 - duration: 99.33925ms + duration: 44.004272ms - id: 83 request: proto: HTTP/1.1 @@ -4123,8 +4121,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -4132,22 +4130,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4155,12 +4151,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a21d177f-68d1-439c-9fa8-9195fe57419b - X-Total-Count: - - "0" + - 9cf6ad5d-034c-4921-8a32-e87bec983b28 status: 200 OK code: 200 - duration: 97.375542ms + duration: 68.182323ms - id: 84 request: proto: HTTP/1.1 @@ -4176,8 +4170,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -4185,20 +4179,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "437" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4206,10 +4202,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d726bef9-36a0-41a1-9a63-2f3dae30cdb5 + - 46a481ca-ef48-48da-bf68-230fab8ca329 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 30.505875ms + duration: 54.777726ms - id: 85 request: proto: HTTP/1.1 @@ -4225,8 +4223,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4234,20 +4232,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1075 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:28 GMT + - Wed, 08 Oct 2025 23:06:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4255,10 +4253,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 219c410e-6b76-4c11-87e4-17aa1918d0aa + - 2f76aaf9-276a-4893-8d78-4ca59b67c475 status: 200 OK code: 200 - duration: 26.802625ms + duration: 27.054749ms - id: 86 request: proto: HTTP/1.1 @@ -4274,8 +4272,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -4283,20 +4281,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1988 + content_length: 475 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1988" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4304,10 +4302,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f892fae-45d4-4e68-a877-34abfcd045b6 + - dda4ae96-1427-4ae5-b1e7-e439b9618d14 status: 200 OK code: 200 - duration: 147.868792ms + duration: 62.033565ms - id: 87 request: proto: HTTP/1.1 @@ -4323,29 +4321,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4353,10 +4349,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 374dfa85-20cb-4e69-8d03-b7c4c8f10301 - status: 404 Not Found - code: 404 - duration: 37.249583ms + - ac3576a9-2e58-4e28-bd47-5e3a03d6a439 + status: 204 No Content + code: 204 + duration: 302.776654ms - id: 88 request: proto: HTTP/1.1 @@ -4372,8 +4368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc method: GET response: proto: HTTP/2.0 @@ -4381,20 +4377,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 148 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"2790e95f-52e6-472f-84a6-6692194b49dc","type":"not_found"}' headers: Content-Length: - - "705" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4402,10 +4398,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4341c2c-35fd-4bbe-911a-91d657df17a5 - status: 200 OK - code: 200 - duration: 80.755583ms + - 27444c11-6b4c-4916-9dae-7232957bc7da + status: 404 Not Found + code: 404 + duration: 63.030752ms - id: 89 request: proto: HTTP/1.1 @@ -4421,8 +4417,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -4430,20 +4426,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 437 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "17" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4451,10 +4447,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc0ab6c4-5913-41aa-8ec7-931eea4a0454 + - 2734a7d2-44cf-4cc2-9cfb-470ec348466f status: 200 OK code: 200 - duration: 96.941ms + duration: 29.605604ms - id: 90 request: proto: HTTP/1.1 @@ -4470,8 +4466,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -4479,22 +4475,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1100 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "20" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4502,12 +4496,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88a6cba3-a649-40c6-9a20-acd026f086e7 - X-Total-Count: - - "0" + - 98bf550b-46f0-4ae1-a46c-523feb2fb125 status: 200 OK code: 200 - duration: 104.240375ms + duration: 68.782936ms - id: 91 request: proto: HTTP/1.1 @@ -4523,8 +4515,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -4532,20 +4524,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 1906 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1902" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4553,10 +4545,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc8a1d87-76bd-467a-a9ac-fe0fddefebeb + - 55c901ca-fb66-4801-be56-654af2c9b96a status: 200 OK code: 200 - duration: 163.159584ms + duration: 95.619721ms - id: 92 request: proto: HTTP/1.1 @@ -4572,8 +4564,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4581,22 +4573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4604,12 +4594,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04a299ee-450c-48b2-9af3-03ecd12da2a2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 102.784208ms + - 3f2861fb-5258-4572-8611-84007970ff4e + status: 404 Not Found + code: 404 + duration: 30.932251ms - id: 93 request: proto: HTTP/1.1 @@ -4625,8 +4613,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4634,20 +4622,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1902 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "1902" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:29 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4655,50 +4643,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82833d72-5f89-4c76-abac-e862e6c04ece + - df01094a-5242-4c40-afe1-36e2ce49f061 status: 200 OK code: 200 - duration: 166.363833ms + duration: 42.810541ms - id: 94 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:30.196586+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:30 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4706,10 +4692,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e944e24a-f9c2-4b99-9548-31908187fc63 - status: 201 Created - code: 201 - duration: 573.243208ms + - 373adbb5-2ddf-4d9d-a3fe-8606404baa32 + status: 200 OK + code: 200 + duration: 56.07063ms - id: 95 request: proto: HTTP/1.1 @@ -4725,8 +4711,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -4734,20 +4720,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 20 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:30.196586+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "473" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:30 GMT + - Wed, 08 Oct 2025 23:06:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4755,10 +4743,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13092e27-34df-447a-a8b7-26360156ddc2 + - 1f15516c-21d9-4ea0-95ef-84d9d661fb34 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 109.889958ms + duration: 52.136895ms - id: 96 request: proto: HTTP/1.1 @@ -4774,8 +4764,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -4783,20 +4773,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 437 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "475" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:35 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4804,10 +4794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78ca42b5-71cd-4b06-a5a2-bec64820cf05 + - 1d84e41c-8c93-4036-96da-64717b4f1627 status: 200 OK code: 200 - duration: 92.554958ms + duration: 28.312057ms - id: 97 request: proto: HTTP/1.1 @@ -4823,8 +4813,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -4832,20 +4822,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1100 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "475" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:35 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4853,10 +4843,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304ea6c5-fea5-44cb-ae50-8a8d7504864c + - 2e2f0246-d95d-4080-ba8b-113021712567 status: 200 OK code: 200 - duration: 107.169833ms + duration: 36.956759ms - id: 98 request: proto: HTTP/1.1 @@ -4872,8 +4862,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -4881,20 +4871,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 1906 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2446" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:36 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4902,10 +4892,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db6aeeba-3737-41c2-b7b8-5dbf39786462 + - 890e5ddb-475a-4144-8d03-f10b02ab46a3 status: 200 OK code: 200 - duration: 189.208792ms + duration: 116.857977ms - id: 99 request: proto: HTTP/1.1 @@ -4921,8 +4911,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4930,20 +4920,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2360 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "2360" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:36 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4951,10 +4941,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a38df872-014c-4261-982b-d3adaa9e1bbd - status: 200 OK - code: 200 - duration: 174.934ms + - d7cb6900-f3d6-49a8-bde6-027a03d07a84 + status: 404 Not Found + code: 404 + duration: 28.825799ms - id: 100 request: proto: HTTP/1.1 @@ -4970,8 +4960,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -4979,20 +4969,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:36 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5000,10 +4990,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 986e15d3-fbc2-4e19-a5ca-51ff3b479f92 - status: 404 Not Found - code: 404 - duration: 34.348208ms + - c72ecd74-56c9-4a80-8075-e3a695a3c261 + status: 200 OK + code: 200 + duration: 55.324429ms - id: 101 request: proto: HTTP/1.1 @@ -5019,8 +5009,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -5028,20 +5018,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:36 GMT + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5049,10 +5039,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e109317b-e019-4dbd-b4b1-4bf5cd34ed78 + - 8ad27fc4-b216-4a82-b486-10351ce01666 status: 200 OK code: 200 - duration: 90.761792ms + duration: 54.363338ms - id: 102 request: proto: HTTP/1.1 @@ -5068,8 +5058,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -5077,20 +5067,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:36 GMT + - Wed, 08 Oct 2025 23:06:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5098,10 +5090,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a70450a-a372-4371-9e84-2b745e9d7bb3 + - f5a97a8c-1d6d-4445-8453-10f15372449b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 94.339ms + duration: 52.140111ms - id: 103 request: proto: HTTP/1.1 @@ -5117,8 +5111,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -5126,22 +5120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1906 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5149,12 +5141,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a935575c-efc4-4bb3-a1f7-91805eb88a2d - X-Total-Count: - - "1" + - e229b1fc-0e52-4a21-ba45-7715649de5bf status: 200 OK code: 200 - duration: 668.207959ms + duration: 98.765416ms - id: 104 request: proto: HTTP/1.1 @@ -5170,8 +5160,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=50fea64b-22bc-4f14-b5a3-feb1cdb802f8&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -5179,20 +5169,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 20 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:1595:e364:db4d:b865/64","created_at":"2025-09-30T09:26:30.415887Z","id":"888dc7bb-cdde-4097-9d96-e32a1c0413c2","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","mac_address":"02:00:00:16:4F:79","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:26:30.415887Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:26:30.314883Z","id":"458e373f-c8f6-4aac-a443-383d117309a7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","mac_address":"02:00:00:16:4F:79","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:26:30.314883Z","zone":null}],"total_count":2}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1073" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5200,10 +5192,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dabb55a-d6a3-4831-ad2a-c39c1c24b080 + - 0caf6bb7-bd69-47d5-acd5-dc4bcb8581f7 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 37.022834ms + duration: 51.101697ms - id: 105 request: proto: HTTP/1.1 @@ -5219,8 +5213,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -5228,20 +5222,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1906 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.100407Z","custom_routes_propagation_enabled":true,"id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:25:44.100407Z"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "437" + - "1906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5249,48 +5243,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d61e39d-4e21-49cb-b7fe-0ac50b471586 + - 174375dc-a63b-4da3-86d4-a11dd916744d status: 200 OK code: 200 - duration: 30.4335ms + duration: 92.552058ms - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:44.447534Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","name":"tf-pn-quizzical-brahmagupta","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:25:44.447534Z","id":"6e07a1c1-826e-49f9-9bda-15df54b04b26","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"},{"created_at":"2025-09-30T09:25:44.447534Z","id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:174f::/64","updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}],"tags":[],"updated_at":"2025-09-30T09:25:44.447534Z","vpc_id":"722d0fec-3d6b-429f-91cf-dc19fd71bf07"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:08.467877+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1098" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5298,10 +5294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b40830e-8ed8-4bb6-9a23-816c2413b964 - status: 200 OK - code: 200 - duration: 25.243125ms + - e1546a3f-8763-4eae-b882-ae8a5a5f3ee1 + status: 201 Created + code: 201 + duration: 502.177378ms - id: 107 request: proto: HTTP/1.1 @@ -5317,8 +5313,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d method: GET response: proto: HTTP/2.0 @@ -5326,20 +5322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 473 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:08.467877+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2446" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5347,10 +5343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a75fd5a0-163e-4caa-bd1a-2af4a158221a + - 8f4701a4-73c7-4694-af2e-13cbc4e8aa8c status: 200 OK code: 200 - duration: 153.078208ms + duration: 54.013741ms - id: 108 request: proto: HTTP/1.1 @@ -5366,8 +5362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d method: GET response: proto: HTTP/2.0 @@ -5375,20 +5371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5396,10 +5392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a487932-b977-4e3e-8402-6462f129ec06 - status: 404 Not Found - code: 404 - duration: 34.820375ms + - b7e3be50-9c67-4410-89b3-1074017c3d51 + status: 200 OK + code: 200 + duration: 63.479401ms - id: 109 request: proto: HTTP/1.1 @@ -5415,8 +5411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d method: GET response: proto: HTTP/2.0 @@ -5424,20 +5420,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5445,10 +5441,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f44c23a6-dd75-4546-abee-68e2761b8ca5 + - 52a2aff7-4928-477c-a94b-c2b0df81512e status: 200 OK code: 200 - duration: 93.144209ms + duration: 49.223558ms - id: 110 request: proto: HTTP/1.1 @@ -5464,8 +5460,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -5473,20 +5469,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2364 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:37 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5494,10 +5490,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4c45e9f-a576-4298-ab97-59314382ebf4 + - 652032a1-8b4f-4108-a8a6-5b775a0976ad status: 200 OK code: 200 - duration: 83.938542ms + duration: 96.050346ms - id: 111 request: proto: HTTP/1.1 @@ -5513,8 +5509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -5522,22 +5518,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2364 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5545,12 +5539,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 283917eb-667f-4f8f-994a-8d09d7fc8424 - X-Total-Count: - - "1" + - 45a09ed8-92f6-4da7-bfe0-defe36f52aef status: 200 OK code: 200 - duration: 86.491709ms + duration: 116.270535ms - id: 112 request: proto: HTTP/1.1 @@ -5566,8 +5558,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=50fea64b-22bc-4f14-b5a3-feb1cdb802f8&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -5575,20 +5567,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:174f:1595:e364:db4d:b865/64","created_at":"2025-09-30T09:26:30.415887Z","id":"888dc7bb-cdde-4097-9d96-e32a1c0413c2","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","mac_address":"02:00:00:16:4F:79","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ebac2a1-699f-43fa-8889-bbd5fed50ab5"},"tags":[],"updated_at":"2025-09-30T09:26:30.415887Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:26:30.314883Z","id":"458e373f-c8f6-4aac-a443-383d117309a7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","mac_address":"02:00:00:16:4F:79","name":"tf-srv-adoring-easley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6e07a1c1-826e-49f9-9bda-15df54b04b26"},"tags":[],"updated_at":"2025-09-30T09:26:30.314883Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "1073" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5596,10 +5588,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cfe742f-c94c-43c4-b951-11adb577b937 - status: 200 OK - code: 200 - duration: 24.2885ms + - 35b94d00-2dc8-4fb6-931f-3477309dff6d + status: 404 Not Found + code: 404 + duration: 29.801055ms - id: 113 request: proto: HTTP/1.1 @@ -5615,8 +5607,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -5624,20 +5616,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2446 + content_length: 705 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:25:51.886758+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "2446" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5645,10 +5637,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 661e444a-653f-4b3d-a3b1-8e96d566f39d + - c3ef3858-aba8-4cdb-8ef2-8b0d336f2081 status: 200 OK code: 200 - duration: 161.430875ms + duration: 46.704562ms - id: 114 request: proto: HTTP/1.1 @@ -5664,8 +5656,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -5673,20 +5665,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:25:46.985393Z","id":"f41b59ff-6210-4314-a45a-358e1b0565ef","product_resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:25:46.985393Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5694,52 +5686,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5b497dc-96a2-46e8-b16c-5a965345beb5 + - 9d4de59d-2b71-4f50-ac12-d18b1daa15b7 status: 200 OK code: 200 - duration: 78.59925ms + duration: 48.708142ms - id: 115 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 478 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/28336d39-f145-4cac-a939-d7e0c08c821b/action","href_result":"/servers/28336d39-f145-4cac-a939-d7e0c08c821b","id":"ec730534-3876-4352-90ce-600818437f74","progress":0,"started_at":"2025-09-30T09:26:38.737009+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "352" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ec730534-3876-4352-90ce-600818437f74 + - Wed, 08 Oct 2025 23:06:14 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5747,10 +5737,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4be64452-03a2-4546-ae6d-2f6553701930 - status: 202 Accepted - code: 202 - duration: 229.39975ms + - f09cd759-2f58-484c-ae03-61790ffca2dc + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 48.44752ms - id: 116 request: proto: HTTP/1.1 @@ -5766,8 +5758,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=8375811e-b196-4269-b4fb-1142fb27911d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5775,20 +5767,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 1076 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:e0ce:a0d6:90d3:2a41/64","created_at":"2025-10-08T23:06:08.678375Z","id":"ececedb0-f35b-4772-b629-d755ad141d49","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:06:08.678375Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-10-08T23:06:08.568313Z","id":"fb95320e-27bd-4077-b425-1fd4c45b16f6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:06:08.568313Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2406" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:38 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5796,10 +5788,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51a8f846-3882-471e-8296-5b2117bac840 + - 231c12b0-c9f7-4681-b554-b87d3412fa3d status: 200 OK code: 200 - duration: 151.363542ms + duration: 29.104004ms - id: 117 request: proto: HTTP/1.1 @@ -5815,8 +5807,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe method: GET response: proto: HTTP/2.0 @@ -5824,20 +5816,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 437 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' headers: Content-Length: - - "2406" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:44 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5845,10 +5837,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75641b1-e555-4855-aec6-e2d54c8553eb + - bb5dcb6f-e073-48ea-a789-eb9eb727ac7b status: 200 OK code: 200 - duration: 168.280917ms + duration: 30.907764ms - id: 118 request: proto: HTTP/1.1 @@ -5864,8 +5856,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a method: GET response: proto: HTTP/2.0 @@ -5873,20 +5865,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2320 + content_length: 1100 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' headers: Content-Length: - - "2320" + - "1100" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:49 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5894,10 +5886,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718c4736-5aa4-40c8-99f8-98fca2495a15 + - f91aff5b-26ac-4aa6-8db0-9902be00ef67 status: 200 OK code: 200 - duration: 209.786041ms + duration: 31.656591ms - id: 119 request: proto: HTTP/1.1 @@ -5913,8 +5905,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -5922,20 +5914,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 2364 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2406" + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:54 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5943,10 +5935,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0048217f-3d09-41c8-b43e-19bef993186f + - 5521963f-e0fb-467d-bb6d-f54c7e0c8472 status: 200 OK code: 200 - duration: 167.166292ms + duration: 102.83942ms - id: 120 request: proto: HTTP/1.1 @@ -5962,8 +5954,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -5971,20 +5963,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 143 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' headers: Content-Length: - - "2406" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:26:59 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5992,10 +5984,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66a8f0e2-9e29-4e8b-9438-ea593a877c35 - status: 200 OK - code: 200 - duration: 177.021791ms + - b1444715-8e1b-4f1a-aec6-88e6f3cdfeca + status: 404 Not Found + code: 404 + duration: 31.17537ms - id: 121 request: proto: HTTP/1.1 @@ -6011,8 +6003,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f method: GET response: proto: HTTP/2.0 @@ -6020,20 +6012,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 705 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:26:38.554812+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' headers: Content-Length: - - "2406" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:04 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6041,10 +6033,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aa2472d-40f5-45ce-8c91-6c41f8884849 + - e2654648-a879-4f2a-9efe-a6f9d770317d status: 200 OK code: 200 - duration: 160.226958ms + duration: 46.81129ms - id: 122 request: proto: HTTP/1.1 @@ -6060,8 +6052,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data method: GET response: proto: HTTP/2.0 @@ -6069,20 +6061,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2290 + content_length: 17 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:27:05.702979+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2290" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:09 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6090,10 +6082,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3f6131f-71c1-46f8-8380-9b76add0b373 + - eac44fab-0d93-4e85-a4a9-850df72fd9f9 status: 200 OK code: 200 - duration: 191.896ms + duration: 52.809729ms - id: 123 request: proto: HTTP/1.1 @@ -6109,8 +6101,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -6120,7 +6112,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -6129,11 +6121,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:10 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6141,12 +6133,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b975292a-07eb-4cac-a1e3-bdd6bf7152ca + - b70a7104-8fce-4695-906e-644b4e2040df X-Total-Count: - "1" status: 200 OK code: 200 - duration: 102.1175ms + duration: 46.901226ms - id: 124 request: proto: HTTP/1.1 @@ -6162,8 +6154,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=8375811e-b196-4269-b4fb-1142fb27911d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6171,20 +6163,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1076 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:26:29.989404+00:00","id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","ipam_ip_ids":["458e373f-c8f6-4aac-a443-383d117309a7","888dc7bb-cdde-4097-9d96-e32a1c0413c2"],"mac_address":"02:00:00:16:4f:79","modification_date":"2025-09-30T09:26:31.121745+00:00","private_network_id":"8e810e5c-9a22-4718-92e2-4c27e8b531f3","server_id":"28336d39-f145-4cac-a939-d7e0c08c821b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:e0ce:a0d6:90d3:2a41/64","created_at":"2025-10-08T23:06:08.678375Z","id":"ececedb0-f35b-4772-b629-d755ad141d49","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:06:08.678375Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-10-08T23:06:08.568313Z","id":"fb95320e-27bd-4077-b425-1fd4c45b16f6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:06:08.568313Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:10 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6192,10 +6184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59393b0c-e486-4754-a7d3-87c78d393f49 + - ae79580c-dc37-41a1-8649-cef58a1cd119 status: 200 OK code: 200 - duration: 86.701625ms + duration: 28.944739ms - id: 125 request: proto: HTTP/1.1 @@ -6211,27 +6203,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2364 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:10 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6239,48 +6233,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f6c54d8-e73a-4d8c-8a47-b7cbc8e05f87 - status: 204 No Content - code: 204 - duration: 300.951375ms + - 1fdd87b2-113a-40f2-ac08-fa1edb09af2c + status: 200 OK + code: 200 + duration: 89.329748ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b/private_nics/50fea64b-22bc-4f14-b5a3-feb1cdb802f8 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 353 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"50fea64b-22bc-4f14-b5a3-feb1cdb802f8","type":"not_found"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/c02766f9-760f-4697-9d67-41886c8285db/action","href_result":"/servers/c02766f9-760f-4697-9d67-41886c8285db","id":"fdc1ac0c-d076-4a61-bfd8-14c0749ae9fc","progress":0,"started_at":"2025-10-08T23:06:15.500552+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:10 GMT + - Wed, 08 Oct 2025 23:06:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fdc1ac0c-d076-4a61-bfd8-14c0749ae9fc Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6288,10 +6286,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbd25fd1-a5ac-4061-bfb0-14983485caf1 - status: 404 Not Found - code: 404 - duration: 121.375666ms + - c6042577-33a4-43b9-846f-befdb9928708 + status: 202 Accepted + code: 202 + duration: 164.29943ms - id: 127 request: proto: HTTP/1.1 @@ -6307,8 +6305,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -6316,20 +6314,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1832 + content_length: 2327 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-09-30T09:25:46.844029+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-easley","id":"28336d39-f145-4cac-a939-d7e0c08c821b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:c5","maintenances":[],"modification_date":"2025-09-30T09:27:05.702979+00:00","name":"tf-srv-adoring-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1832" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:10 GMT + - Wed, 08 Oct 2025 23:06:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6337,10 +6335,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14a3734a-9585-4213-9196-c44254d3af4d + - 46f745e9-98f4-4f9b-b814-3c341de1b029 status: 200 OK code: 200 - duration: 158.954084ms + duration: 95.393088ms - id: 128 request: proto: HTTP/1.1 @@ -6356,27 +6354,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2327 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:11 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6384,10 +6384,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fb11353-7a7c-438c-917b-004bd2a4589f - status: 204 No Content - code: 204 - duration: 278.214083ms + - d94b63d7-c297-4730-b967-860b1e61df89 + status: 200 OK + code: 200 + duration: 105.399498ms - id: 129 request: proto: HTTP/1.1 @@ -6403,8 +6403,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -6412,20 +6412,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2327 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2327" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:11 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6433,10 +6433,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63b90a9a-6b3a-4066-a286-85f14eabe549 - status: 404 Not Found - code: 404 - duration: 58.63025ms + - a1b2afd9-bf51-4234-9c75-cae5404b395b + status: 200 OK + code: 200 + duration: 110.548653ms - id: 130 request: proto: HTTP/1.1 @@ -6452,8 +6452,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db method: GET response: proto: HTTP/2.0 @@ -6463,7 +6463,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c02766f9-760f-4697-9d67-41886c8285db","type":"not_found"}' headers: Content-Length: - "143" @@ -6472,9 +6472,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:11 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6482,10 +6482,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa78a882-7fca-4427-a5da-85f1397fdead + - 045ca02c-82de-4406-bda7-d45b0e996cf9 status: 404 Not Found code: 404 - duration: 28.776ms + duration: 49.979204ms - id: 131 request: proto: HTTP/1.1 @@ -6501,198 +6501,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 498 - uncompressed: false - body: '{"created_at":"2025-09-30T09:25:46.985393Z","id":"bacae6b7-21cc-46f8-b1cf-d06f730e8760","last_detached_at":"2025-09-30T09:27:11.097236Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:27:11.097236Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "498" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:27:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 340663eb-3560-4444-83d9-19b9cd2f120a - status: 200 OK - code: 200 - duration: 98.458833ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bacae6b7-21cc-46f8-b1cf-d06f730e8760 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:27:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8f84871-6168-4fd0-9e92-ef84fcf24174 - status: 204 No Content - code: 204 - duration: 173.510791ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8e810e5c-9a22-4718-92e2-4c27e8b531f3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:27:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72257ce1-2bf4-4720-a19a-8028fd74ae93 - status: 204 No Content - code: 204 - duration: 1.30480175s - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/722d0fec-3d6b-429f-91cf-dc19fd71bf07 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:27:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f2bf9c6-df98-45e5-a33f-8900993b9775 - status: 204 No Content - code: 204 - duration: 90.408792ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/28336d39-f145-4cac-a939-d7e0c08c821b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics method: GET response: proto: HTTP/2.0 @@ -6702,7 +6512,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"28336d39-f145-4cac-a939-d7e0c08c821b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c02766f9-760f-4697-9d67-41886c8285db","type":"not_found"}' headers: Content-Length: - "143" @@ -6711,9 +6521,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:27:12 GMT + - Wed, 08 Oct 2025 23:06:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6721,7 +6531,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcf9a1b9-f2e8-4204-832c-c15a7a066e06 + - 5e934ffb-6325-49c0-ba59-019ec0988fa1 status: 404 Not Found code: 404 - duration: 55.338834ms + duration: 34.008636ms diff --git a/internal/services/instance/testdata/server-private-network.cassette.yaml b/internal/services/instance/testdata/server-private-network.cassette.yaml index b0a2fba72..ebfda7d76 100644 --- a/internal/services/instance/testdata/server-private-network.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServer_PrivateNetwork","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"TestAccServer_PrivateNetwork","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' + body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' headers: Content-Length: - "426" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:31 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0b24666-0de0-4ec6-8c71-b757aa4dfc18 + - ce8c91ae-940d-4bed-a65a-f07422a6ec56 status: 200 OK code: 200 - duration: 665.048583ms + duration: 100.133696ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' + body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' headers: Content-Length: - "426" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:31 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbdffa78-7b50-4c4c-ad26-b06927f3beed + - 82816f0c-029d-4481-81ba-bd9b3959f591 status: 200 OK code: 200 - duration: 123.648375ms + duration: 45.953843ms - id: 2 request: proto: HTTP/1.1 @@ -112,13 +112,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.626782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4cbad3f5-2828-4d69-a319-54149c87d571","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:28:31.626782Z","id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:28:31.626782Z","id":"39628b3e-c594-42b3-a125-eb97542a63e9","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5a25::/64","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' + body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' headers: Content-Length: - - "1095" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:32 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e31bd61d-0371-44ac-84b8-020ef65c1630 + - 50ac7f9d-190c-465a-99bf-8c3d60a3f444 status: 200 OK code: 200 - duration: 688.949084ms + duration: 1.40837243s - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4cbad3f5-2828-4d69-a319-54149c87d571 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.626782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4cbad3f5-2828-4d69-a319-54149c87d571","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:28:31.626782Z","id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:28:31.626782Z","id":"39628b3e-c594-42b3-a125-eb97542a63e9","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5a25::/64","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' + body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' headers: Content-Length: - - "1095" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:32 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 735c7986-ec78-4bab-b0dd-1f3182b0ce4e + - d95ff4f7-2de5-4a48-8db9-a7a3f45d27b9 status: 200 OK code: 200 - duration: 29.581875ms + duration: 24.356763ms - id: 4 request: proto: HTTP/1.1 @@ -216,7 +216,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=1 method: GET response: @@ -236,11 +236,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:32 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,12 +248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4764c8fc-2b9f-4c91-bf00-d599ee5ca4d8 + - df3f9e68-f5de-4086-b0f7-a01d06e26c92 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 60.584041ms + duration: 46.442889ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/products/servers?page=2 method: GET response: @@ -289,11 +289,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:32 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,12 +301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c5b17d3-7347-43c8-a2e1-82e3010d6345 + - 9dab3cef-5945-43b1-a3e7-3b6fa522e62f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 35.487083ms + duration: 50.264128ms - id: 6 request: proto: HTTP/1.1 @@ -322,7 +322,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-2 method: GET response: @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:32 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,28 +352,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7bf0d4f-a9f6-476f-8249-0b96775cbcc4 + - 3e4a3a07-9ec3-40bb-88f5-fcd93f3c66e0 status: 200 OK code: 200 - duration: 65.40775ms + duration: 115.111923ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 239 + content_length: 231 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-jolly-chandrasekhar","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"30a53856-64af-4159-be55-9c603243a48e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-brave-mayer","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"30a53856-64af-4159-be55-9c603243a48e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers method: POST response: @@ -382,22 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 1732 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:33.023914+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1748" + - "1732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:33 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7854409b-759e-4753-9c94-28c4d50a02fa + - fdfb13be-7ad2-4d2b-b0ee-2cb298695333 status: 201 Created code: 201 - duration: 1.0379655s + duration: 843.874077ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 1732 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:33.023914+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1748" + - "1732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:33 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec2fcf3f-d39c-4aa5-aded-38f336005bfd + - 14377e5a-75f6-4214-9c37-8f66280bcfce status: 200 OK code: 200 - duration: 152.26675ms + duration: 89.836268ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1748 + content_length: 1732 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:33.023914+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1748" + - "1732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:33 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d7e5b7-fcc0-4b00-b434-ee7fec7ad879 + - e7f82e67-0bef-4b87-9831-18c9b8aaa23a status: 200 OK code: 200 - duration: 147.51225ms + duration: 90.259282ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:28:33.168389Z","id":"96d179fb-9d65-4557-b807-fadfbd2143d9","product_resource_id":"21dac100-5f18-4906-adee-646b77448a12","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:28:33.168389Z","zone":"fr-par-2"}' + body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' headers: Content-Length: - "701" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:33 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49328187-972b-4ebf-b199-838c955b68dd + - 1aa37834-5c17-4ead-8b90-5d89b271b1bf status: 200 OK code: 200 - duration: 85.861125ms + duration: 47.583081ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/21dac100-5f18-4906-adee-646b77448a12/action","href_result":"/servers/21dac100-5f18-4906-adee-646b77448a12","id":"54182eb7-c15e-4461-ba62-43b5ea3aedce","progress":0,"started_at":"2025-09-30T09:28:34.056020+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action","href_result":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3","id":"565cec4c-f244-440c-be6b-fc22b4121386","progress":0,"started_at":"2025-10-08T23:04:30.263332+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:34 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/54182eb7-c15e-4461-ba62-43b5ea3aedce + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/565cec4c-f244-440c-be6b-fc22b4121386 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60751b14-af37-4fef-9288-2dd55a261fb0 + - 53af14cc-1fc1-4c00-867c-2e4192e70c48 status: 202 Accepted code: 202 - duration: 221.498875ms + duration: 386.418938ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1770 + content_length: 1754 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:33.881007+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.932728+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1770" + - "1754" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:34 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8cf6b94-332d-4da8-a095-3894249d08cd + - a1451191-5d49-4bba-b793-a3b3ffe019a8 status: 200 OK code: 200 - duration: 186.226542ms + duration: 81.924491ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1887 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1904" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:39 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cdbcb1c-9c5b-421c-88fc-503943c18331 + - 42769216-7481-4ed9-83e1-b813638fafb1 status: 200 OK code: 200 - duration: 162.00975ms + duration: 94.83212ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4cbad3f5-2828-4d69-a319-54149c87d571 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.626782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4cbad3f5-2828-4d69-a319-54149c87d571","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:28:31.626782Z","id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:28:31.626782Z","id":"39628b3e-c594-42b3-a125-eb97542a63e9","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5a25::/64","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' + body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' headers: Content-Length: - - "1095" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:39 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7fc8d59-2711-4ed9-a61c-dc8ae73dc6d3 + - 28a97701-f8aa-4838-bafe-9b36a71d0d48 status: 200 OK code: 200 - duration: 38.056833ms + duration: 27.565706ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1904 + content_length: 1887 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1904" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:39 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a976289f-40f8-462e-982f-be83dbe9b103 + - efd42c34-bc74-45b8-bec6-0958ab89fc1a status: 200 OK code: 200 - duration: 145.394375ms + duration: 103.539782ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571"}' + body: '{"private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:40 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5238dc93-5683-4a04-a1a5-3fe19bdf20c2 + - 95c7580f-7f98-4767-a460-5017a9bfb20b status: 201 Created code: 201 - duration: 782.992166ms + duration: 555.180996ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:40 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96fd5da1-cd15-4a8c-90dc-c3f20059979d + - ab21a585-afc5-464d-a43b-b0b705a2bc29 status: 200 OK code: 200 - duration: 100.1605ms + duration: 50.215025ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:45 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0514f23b-7503-4e99-a7d2-61ceda92b027 + - e73b7d25-6ba6-48a6-9b3e-20bced1a0da9 status: 200 OK code: 200 - duration: 95.916875ms + duration: 64.306759ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:50 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c40aa061-648b-44ec-8679-d1803b852252 + - 63d528b6-0aa3-4b90-9630-5a0685f73d07 status: 200 OK code: 200 - duration: 113.182583ms + duration: 55.042456ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -1029,7 +1029,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:28:55 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b064e499-4eed-476c-8aa7-d20af86cdf57 + - d5b98559-7059-413e-b809-1fd481ff54ef status: 200 OK code: 200 - duration: 96.944209ms + duration: 55.232426ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:00 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb551f1f-eb0f-4504-aa28-e491c064094c + - b0c1f20a-b8d6-427f-8031-f0fc92c5317f status: 200 OK code: 200 - duration: 150.886042ms + duration: 63.590558ms - id: 22 request: proto: HTTP/1.1 @@ -1116,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -1125,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:06 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4109dcfa-8ae5-4c69-9e57-958f44dc8f50 + - c96a94b2-920d-4310-9d71-a386b492a7ef status: 200 OK code: 200 - duration: 104.411875ms + duration: 51.264844ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:11 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4deb9b-18bc-4e00-9005-1db81eef8bab + - ead00df9-fd26-4e99-8057-9e5fcbdb64df status: 200 OK code: 200 - duration: 113.659416ms + duration: 53.120221ms - id: 24 request: proto: HTTP/1.1 @@ -1214,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -1223,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 2345 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "473" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:16 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b060aed-6b5c-40a4-a8e7-9c46aea48f80 + - e13a039a-8a4a-4007-806b-d60a18c2189c status: 200 OK code: 200 - duration: 117.218125ms + duration: 101.92087ms - id: 25 request: proto: HTTP/1.1 @@ -1263,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -1272,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' headers: Content-Length: - - "473" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:21 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2386d4bf-a1a0-4be8-97aa-9850c925d77b - status: 200 OK - code: 200 - duration: 97.291625ms + - 73b9af08-d1e8-4abb-9b31-880ebdea7345 + status: 404 Not Found + code: 404 + duration: 27.780471ms - id: 26 request: proto: HTTP/1.1 @@ -1312,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -1321,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 701 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' headers: Content-Length: - - "473" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:26 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23814078-a948-4e83-b541-59c4d086bcda + - 42d941ff-0ce4-46ca-8389-212b31bcd41c status: 200 OK code: 200 - duration: 113.36425ms + duration: 46.081021ms - id: 27 request: proto: HTTP/1.1 @@ -1361,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data method: GET response: proto: HTTP/2.0 @@ -1370,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:31 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f224afe-fed8-4962-922c-f2463efab245 + - 28ccefc5-22e3-4db3-9f2e-f150a65a35c5 status: 200 OK code: 200 - duration: 95.698458ms + duration: 53.135389ms - id: 28 request: proto: HTTP/1.1 @@ -1410,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -1419,20 +1419,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 478 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:28:39.885686+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "473" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:36 GMT + - Wed, 08 Oct 2025 23:05:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,10 +1442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b87a6ff8-4f47-4a30-815e-b6401a462f51 + - 6eb75399-32b4-465d-892c-0b808b11aa5a + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 93.636791ms + duration: 59.395275ms - id: 29 request: proto: HTTP/1.1 @@ -1459,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1468,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1066 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:41 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e65900f-00ae-47d1-b3b4-56f9340693bf + - 47ba867f-e911-400c-859d-5fa11b34f43b status: 200 OK code: 200 - duration: 115.630916ms + duration: 30.979737ms - id: 30 request: proto: HTTP/1.1 @@ -1508,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -1517,20 +1521,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 478 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "475" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:41 GMT + - Wed, 08 Oct 2025 23:05:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1538,10 +1544,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ccec2d-13c2-4aa8-bb15-3ed9cc3d18c9 + - fb20b713-fcd7-41c9-b980-93fd403a8b1c + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 88.235084ms + duration: 67.852741ms - id: 31 request: proto: HTTP/1.1 @@ -1557,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f method: GET response: proto: HTTP/2.0 @@ -1566,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2362 + content_length: 426 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' headers: Content-Length: - - "2362" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1587,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 125bcdff-5cf4-480a-9365-702b7de51b88 + - cc13327f-0be9-4a72-a943-e224792e4d74 status: 200 OK code: 200 - duration: 173.855208ms + duration: 44.862945ms - id: 32 request: proto: HTTP/1.1 @@ -1606,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d method: GET response: proto: HTTP/2.0 @@ -1615,20 +1623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1094 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' headers: Content-Length: - - "143" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1636,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c36d80-6a2a-4fde-89db-299226018af2 - status: 404 Not Found - code: 404 - duration: 30.665583ms + - f4b678b1-c2d2-4ab7-90fa-37564412328d + status: 200 OK + code: 200 + duration: 23.996181ms - id: 33 request: proto: HTTP/1.1 @@ -1655,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -1664,20 +1672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2345 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:28:33.168389Z","id":"96d179fb-9d65-4557-b807-fadfbd2143d9","product_resource_id":"21dac100-5f18-4906-adee-646b77448a12","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:28:33.168389Z","zone":"fr-par-2"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "701" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a47db80e-44f8-4013-bf8d-df2dc0e22261 + - 633f2f05-049f-4ec8-8a4d-bd7baa5be194 status: 200 OK code: 200 - duration: 79.6675ms + duration: 96.506751ms - id: 34 request: proto: HTTP/1.1 @@ -1704,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -1713,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1734,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd2c7b8b-1b93-457f-b3c9-4263e039ed83 - status: 200 OK - code: 200 - duration: 90.439208ms + - c51fe5a0-a39b-460a-b66f-1522adce0b0f + status: 404 Not Found + code: 404 + duration: 24.132273ms - id: 35 request: proto: HTTP/1.1 @@ -1753,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -1762,22 +1770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 701 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' headers: Content-Length: - - "478" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1785,12 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d290755b-ea4b-4b6f-a4f0-f23443878328 - X-Total-Count: - - "1" + - 35f1094f-3621-4450-a5c2-5a560cb2b57b status: 200 OK code: 200 - duration: 96.531542ms + duration: 41.622963ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=92206395-327a-45d7-b28c-cf8f9deb6eee&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data method: GET response: proto: HTTP/2.0 @@ -1815,20 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5a25:14f8:77df:f82e:bba6/64","created_at":"2025-09-30T09:28:40.122936Z","id":"f95e8567-0859-480f-aaf0-5c89bcc94ad6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"39628b3e-c594-42b3-a125-eb97542a63e9"},"tags":[],"updated_at":"2025-09-30T09:28:40.122936Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:28:39.955204Z","id":"7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967"},"tags":[],"updated_at":"2025-09-30T09:28:39.955204Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1083" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79f37bf3-32ae-4f75-bbb7-f99c445cd911 + - 502a4c6d-7380-4314-a573-ef0d78576361 status: 200 OK code: 200 - duration: 34.439791ms + duration: 54.358654ms - id: 37 request: proto: HTTP/1.1 @@ -1855,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -1866,7 +1870,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - "478" @@ -1875,11 +1879,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,12 +1891,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fe41ee0-5a93-4ad1-ac8f-46a95c75b268 + - 7c48f649-df67-4e79-91ec-9e57b87daec5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 94.401ms + duration: 48.545527ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1917,20 +1921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' headers: Content-Length: - - "426" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25f9fd22-8eeb-4be6-bcdf-916836e70f2f + - 0c9b8af0-c29a-4679-96ad-ee6afdb630a1 status: 200 OK code: 200 - duration: 38.67375ms + duration: 34.902473ms - id: 39 request: proto: HTTP/1.1 @@ -1957,8 +1961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4cbad3f5-2828-4d69-a319-54149c87d571 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f method: GET response: proto: HTTP/2.0 @@ -1966,20 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.626782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4cbad3f5-2828-4d69-a319-54149c87d571","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:28:31.626782Z","id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:28:31.626782Z","id":"39628b3e-c594-42b3-a125-eb97542a63e9","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5a25::/64","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' + body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' headers: Content-Length: - - "1095" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:42 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,10 +1991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a106fda4-44a4-4d94-830f-ee07c32bdfa1 + - 77899c18-938f-46a1-91c1-9715106224ee status: 200 OK code: 200 - duration: 27.819625ms + duration: 25.74986ms - id: 40 request: proto: HTTP/1.1 @@ -2006,8 +2010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d method: GET response: proto: HTTP/2.0 @@ -2015,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2362 + content_length: 1094 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' headers: Content-Length: - - "2362" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,10 +2040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c93e710-5af8-424c-82d1-348c7263589e + - f63c0d5e-c971-43f8-bb4f-7e3275bcdfe0 status: 200 OK code: 200 - duration: 171.417833ms + duration: 35.629962ms - id: 41 request: proto: HTTP/1.1 @@ -2055,8 +2059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -2064,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2345 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "143" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da96cca-9904-46bc-9ce1-271f19f2e988 - status: 404 Not Found - code: 404 - duration: 44.636959ms + - 84d415c7-8d1a-4672-a756-8bdd4666cf83 + status: 200 OK + code: 200 + duration: 98.049989ms - id: 42 request: proto: HTTP/1.1 @@ -2104,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -2113,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:28:33.168389Z","id":"96d179fb-9d65-4557-b807-fadfbd2143d9","product_resource_id":"21dac100-5f18-4906-adee-646b77448a12","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:28:33.168389Z","zone":"fr-par-2"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3bc5dbd-6a4f-4cb8-bb52-ee4e77d47b57 - status: 200 OK - code: 200 - duration: 89.571042ms + - 16ec974f-05f7-4472-aa62-cdc4b84698e0 + status: 404 Not Found + code: 404 + duration: 31.236623ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 method: GET response: proto: HTTP/2.0 @@ -2162,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 533c3006-3c77-4de9-8dfd-921580d3a390 + - 038fd94a-6b2b-4d5c-8ff4-4fd54befa0e3 status: 200 OK code: 200 - duration: 96.688125ms + duration: 39.903728ms - id: 44 request: proto: HTTP/1.1 @@ -2202,8 +2206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data method: GET response: proto: HTTP/2.0 @@ -2211,22 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,12 +2236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 797c5d04-5370-47e5-95f7-6aa5ad9a725b - X-Total-Count: - - "1" + - 97fb8ab9-bca5-449d-b65c-7c063fadee1b status: 200 OK code: 200 - duration: 93.178292ms + duration: 49.242928ms - id: 45 request: proto: HTTP/1.1 @@ -2255,8 +2255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=92206395-327a-45d7-b28c-cf8f9deb6eee&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -2264,20 +2264,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5a25:14f8:77df:f82e:bba6/64","created_at":"2025-09-30T09:28:40.122936Z","id":"f95e8567-0859-480f-aaf0-5c89bcc94ad6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"39628b3e-c594-42b3-a125-eb97542a63e9"},"tags":[],"updated_at":"2025-09-30T09:28:40.122936Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:28:39.955204Z","id":"7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967"},"tags":[],"updated_at":"2025-09-30T09:28:39.955204Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "1083" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,10 +2287,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6ab328b-9644-417d-96f6-891efb52980b + - d9dddd42-13a9-4368-bbf1-d86d36d36f39 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 30.203417ms + duration: 69.606089ms - id: 46 request: proto: HTTP/1.1 @@ -2304,8 +2308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2313,20 +2317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' + body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' headers: Content-Length: - - "426" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,10 +2338,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39e3457b-731b-467b-bbed-a17900cb68e1 + - 9bf0676c-5fdf-4435-bde3-7abf6f371b2d status: 200 OK code: 200 - duration: 22.204042ms + duration: 39.405675ms - id: 47 request: proto: HTTP/1.1 @@ -2353,8 +2357,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4cbad3f5-2828-4d69-a319-54149c87d571 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -2362,20 +2366,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 2345 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.626782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4cbad3f5-2828-4d69-a319-54149c87d571","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:28:31.626782Z","id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.208.0/22","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:28:31.626782Z","id":"39628b3e-c594-42b3-a125-eb97542a63e9","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5a25::/64","updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:28:31.626782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1095" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,48 +2387,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e73e7cf-8595-4c77-a449-dc43d137cd55 + - 74a42dc8-7ad3-49c4-a8ba-3ced70d12eab status: 200 OK code: 200 - duration: 24.233667ms + duration: 114.216976ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2362 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action","href_result":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3","id":"cbdb7cde-4904-4028-8dec-d1978ea91179","progress":0,"started_at":"2025-10-08T23:05:03.666210+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' headers: Content-Length: - - "2362" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/cbdb7cde-4904-4028-8dec-d1978ea91179 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,10 +2440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c03f60d-0cb0-4d63-a0f3-9f055d5cab53 - status: 200 OK - code: 200 - duration: 155.809792ms + - 513e1935-e74a-42c5-862f-495b04c67096 + status: 202 Accepted + code: 202 + duration: 168.686075ms - id: 49 request: proto: HTTP/1.1 @@ -2451,8 +2459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -2460,20 +2468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2308 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:05:03.535404+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "143" + - "2308" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:43 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,10 +2489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d7d8627-9a26-45c9-9cb2-0cad921e3553 - status: 404 Not Found - code: 404 - duration: 32.184916ms + - 3bf3b9f1-f56f-4060-a665-fef0c5d79026 + status: 200 OK + code: 200 + duration: 100.600182ms - id: 50 request: proto: HTTP/1.1 @@ -2500,8 +2508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -2509,20 +2517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:28:33.168389Z","id":"96d179fb-9d65-4557-b807-fadfbd2143d9","product_resource_id":"21dac100-5f18-4906-adee-646b77448a12","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:28:33.168389Z","zone":"fr-par-2"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:44 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,10 +2538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f71063c-0e66-4168-a0f3-b30180a5901b - status: 200 OK - code: 200 - duration: 94.489875ms + - ca9990d0-7410-4539-8da8-bf26c6c579ef + status: 404 Not Found + code: 404 + duration: 40.933635ms - id: 51 request: proto: HTTP/1.1 @@ -2549,8 +2557,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -2558,20 +2566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:44 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,10 +2587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb669d8-a8ce-4254-91a7-3aaec29b9507 - status: 200 OK - code: 200 - duration: 113.743375ms + - 98c86b9c-992a-43ee-ad05-a48ac24cdc86 + status: 404 Not Found + code: 404 + duration: 28.76835ms - id: 52 request: proto: HTTP/1.1 @@ -2598,8 +2606,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 method: GET response: proto: HTTP/2.0 @@ -2607,22 +2615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:44 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2630,148 +2636,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71e64bce-f53c-4251-b226-ed3794873bb8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 102.317375ms + - 6a7c3cd8-3792-45e5-a521-d45feac604ff + status: 404 Not Found + code: 404 + duration: 49.698601ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=92206395-327a-45d7-b28c-cf8f9deb6eee&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1083 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5a25:14f8:77df:f82e:bba6/64","created_at":"2025-09-30T09:28:40.122936Z","id":"f95e8567-0859-480f-aaf0-5c89bcc94ad6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"39628b3e-c594-42b3-a125-eb97542a63e9"},"tags":[],"updated_at":"2025-09-30T09:28:40.122936Z","zone":null},{"address":"172.17.208.2/22","created_at":"2025-09-30T09:28:39.955204Z","id":"7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"92206395-327a-45d7-b28c-cf8f9deb6eee","mac_address":"02:00:00:2E:B7:AE","name":"tf-srv-jolly-chandrasekhar","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ec9ef65-84e1-4938-8a1a-7dbbdfda6967"},"tags":[],"updated_at":"2025-09-30T09:28:39.955204Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1083" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:29:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 884d3b24-d2a6-4919-924a-546e699806f8 - status: 200 OK - code: 200 - duration: 38.183917ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2362 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:28:36.051558+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2362" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 30 Sep 2025 09:29:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4fb9a3fc-6180-416e-a4b0-ce242d06bc48 - status: 200 OK - code: 200 - duration: 161.871292ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:28:33.168389Z","id":"96d179fb-9d65-4557-b807-fadfbd2143d9","product_resource_id":"21dac100-5f18-4906-adee-646b77448a12","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:28:33.168389Z","zone":"fr-par-2"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:29:44 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2779,8864 +2687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 953104ad-f794-4b10-9b7a-7d0ecfa99eea - status: 200 OK - code: 200 - duration: 88.830625ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/21dac100-5f18-4906-adee-646b77448a12/action","href_result":"/servers/21dac100-5f18-4906-adee-646b77448a12","id":"98a82f45-8f07-40e2-b32a-d85bcb62a7ca","progress":0,"started_at":"2025-09-30T09:29:44.902975+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:29:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/98a82f45-8f07-40e2-b32a-d85bcb62a7ca - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1def79f9-bd4d-4892-b9f5-e7d41c97143b - status: 202 Accepted - code: 202 - duration: 226.582208ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2322 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:29:44.721810+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:29:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8575522-be1a-49d4-96fb-977895235332 - status: 200 OK - code: 200 - duration: 157.117084ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2322 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:29:44.721810+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:29:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1dd20f6d-e85e-470e-95ae-775501ec65fc - status: 200 OK - code: 200 - duration: 153.521416ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2322 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:29:44.721810+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:29:55 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 120a97e8-2cd5-46e8-b74b-0267c1448a7e - status: 200 OK - code: 200 - duration: 177.287541ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2322 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"602","node_id":"10","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:29:44.721810+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2322" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 135c154c-50b6-4922-bb33-70ac1f232e43 - status: 200 OK - code: 200 - duration: 146.441167ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2206 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:30:00.970888+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "2206" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 351af245-6368-409c-9c78-aea96cdf1793 - status: 200 OK - code: 200 - duration: 182.167292ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:05 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6d55a15-a307-4fb6-937e-7551f97a14b8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 119.405375ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:28:39.640718+00:00","id":"92206395-327a-45d7-b28c-cf8f9deb6eee","ipam_ip_ids":["7ceca5a8-28f1-4b88-a969-2b6e4f6d485d","f95e8567-0859-480f-aaf0-5c89bcc94ad6"],"mac_address":"02:00:00:2e:b7:ae","modification_date":"2025-09-30T09:29:40.820266+00:00","private_network_id":"4cbad3f5-2828-4d69-a319-54149c87d571","server_id":"21dac100-5f18-4906-adee-646b77448a12","state":"available","tags":[],"zone":"fr-par-2"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8548f96-3e02-4a8b-a89d-2151ad1a1e0d - status: 200 OK - code: 200 - duration: 87.212959ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 859f8086-bdf9-42db-b31f-1742897048f2 - status: 204 No Content - code: 204 - duration: 295.965875ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12/private_nics/92206395-327a-45d7-b28c-cf8f9deb6eee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"92206395-327a-45d7-b28c-cf8f9deb6eee","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04a630d3-28a0-4155-b7dd-352aa0256358 - status: 404 Not Found - code: 404 - duration: 112.740083ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1748 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:28:33.023914+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-jolly-chandrasekhar","id":"21dac100-5f18-4906-adee-646b77448a12","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8a:4b:11","maintenances":[],"modification_date":"2025-09-30T09:30:00.970888+00:00","name":"tf-srv-jolly-chandrasekhar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' - headers: - Content-Length: - - "1748" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e3fdabf-989f-42f5-98aa-fc3673c0ad8b - status: 200 OK - code: 200 - duration: 167.870833ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2fe90d7-688c-4495-819b-616be9a79a59 - status: 204 No Content - code: 204 - duration: 229.836292ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/21dac100-5f18-4906-adee-646b77448a12 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"21dac100-5f18-4906-adee-646b77448a12","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c660658b-91b4-4786-be71-309492d74223 - status: 404 Not Found - code: 404 - duration: 56.617292ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01ca0fc6-d804-4bf4-ab30-da56b6645e4b - status: 404 Not Found - code: 404 - duration: 27.197458ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:33.168389Z","id":"ea648dbf-0fd4-40e0-af27-467d7f023e2c","last_detached_at":"2025-09-30T09:30:06.844769Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:06.844769Z","zone":"fr-par-2"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7b4cb4b-29e2-4a3c-9b4c-f5adfec037d9 - status: 200 OK - code: 200 - duration: 77.641958ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/ea648dbf-0fd4-40e0-af27-467d7f023e2c - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2504c945-8dfd-4b24-92ae-0f433d0141ba - status: 204 No Content - code: 204 - duration: 171.025375ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 202 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 358a99d8-5b07-4a41-aa11-2b0f31897a12 - status: 200 OK - code: 200 - duration: 710.189083ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 195b74f8-6d4e-43e0-b7fb-ffa774646288 - status: 200 OK - code: 200 - duration: 24.686292ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4cbad3f5-2828-4d69-a319-54149c87d571 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54110859-84f1-4fa6-8bae-6689360c9ae6 - status: 204 No Content - code: 204 - duration: 1.216874s - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39208 - uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' - headers: - Content-Length: - - "39208" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:08 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87427135-8c37-4d5f-9032-db1dcb938a3c - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 56.348042ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 19730 - uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' - headers: - Content-Length: - - "19730" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:08 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6a8ee47f-dfff-4df2-a9ed-3034b5011f4f - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 48.394542ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1260 - uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' - headers: - Content-Length: - - "1260" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f77750c-54ce-4726-8d04-c549b42349cc - status: 200 OK - code: 200 - duration: 62.914708ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 237 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-boring-chatterjee","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1830 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:09.181841+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:09 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 491886fc-112a-479a-8250-0b667acb43fa - status: 201 Created - code: 201 - duration: 1.3461785s - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1830 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:09.181841+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2b86b7bb-51d1-4e42-a5a3-d5199241c337 - status: 200 OK - code: 200 - duration: 164.069375ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1830 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:09.181841+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 61cf113f-89c5-449e-8efd-c98717f84bb7 - status: 200 OK - code: 200 - duration: 182.732375ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70ee5a7c-11f9-40de-a8fd-b749878f11e1 - status: 200 OK - code: 200 - duration: 94.720917ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/action","href_result":"/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","id":"516237aa-bf2a-4f64-aa84-c98d6a5b1b83","progress":0,"started_at":"2025-09-30T09:30:10.563801+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:10 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/516237aa-bf2a-4f64-aa84-c98d6a5b1b83 - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 51dabc0c-30cf-410c-9763-83b8c586e5ee - status: 202 Accepted - code: 202 - duration: 305.918125ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1852 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:10.346446+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1852" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc6f48d4-db53-41f9-80cb-46222a181c9f - status: 200 OK - code: 200 - duration: 190.090291ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0428d9ca-7b81-4b18-909a-723f43d765ab - status: 200 OK - code: 200 - duration: 200.947875ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d4cdbb87-d7ae-4458-b406-1ca166614a6e - status: 200 OK - code: 200 - duration: 214.83775ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1901 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a20dfe2-8607-46a3-90a1-c933e47d3747 - status: 200 OK - code: 200 - duration: 266.075291ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d8fc220-8729-4d0a-9f0e-b6dd7a34093d - status: 201 Created - code: 201 - duration: 750.497166ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 834dfeff-e271-4450-977d-780d6268d7b6 - status: 200 OK - code: 200 - duration: 233.615375ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9917004a-f5d4-485c-b4d4-c3c6285fa5d0 - status: 200 OK - code: 200 - duration: 207.695834ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e24abf79-8404-4773-b9b5-1a819c0f0e67 - status: 200 OK - code: 200 - duration: 106.672334ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9440b34-8f66-499a-8587-a467dd711f9a - status: 200 OK - code: 200 - duration: 106.6115ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9accc0ae-cc09-4da7-bbb3-fd1944ac5b9e - status: 200 OK - code: 200 - duration: 93.228042ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:16.856022+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1b9991f5-95ab-45c0-acfc-6e9eb62f5818 - status: 200 OK - code: 200 - duration: 117.887167ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 258b2ffa-9bb3-47d7-9ea7-42035b07be6f - status: 200 OK - code: 200 - duration: 112.504584ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f306230-43fd-4f72-b0c1-243b00e752dc - status: 200 OK - code: 200 - duration: 102.312292ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3057c694-c027-4bac-b928-c702e3c10f32 - status: 200 OK - code: 200 - duration: 213.199167ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0e955155-5405-41c6-9cb4-f7dd7a97a3e1 - status: 404 Not Found - code: 404 - duration: 38.510625ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6227e99c-6912-4e22-b8d9-7b91c7be0c07 - status: 200 OK - code: 200 - duration: 96.294333ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63e98f5d-9c2f-438b-a6f6-0ae403786151 - status: 200 OK - code: 200 - duration: 100.219042ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da368f6d-edd1-4356-8e00-c56e478072bb - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 105.56125ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5718d740-1583-497d-ad81-5cd8279664c1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:3596:82cf:fd88:fb63/64","created_at":"2025-09-30T09:30:17.098664Z","id":"16bd33b3-af27-4985-a64b-57eb8601bda6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:30:17.098664Z","zone":null},{"address":"172.17.180.2/22","created_at":"2025-09-30T09:30:16.968323Z","id":"0a24478f-f7d7-4c48-a179-883908bdc47b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:30:16.968323Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1de5e302-fc03-48e0-89ad-90992368ebb3 - status: 200 OK - code: 200 - duration: 36.0955ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c0731ccf-fb5d-48dc-b68c-084738568977 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 120.11675ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 038839ce-256b-4acc-a94d-3fdc2bff6f4a - status: 200 OK - code: 200 - duration: 32.13125ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99117afd-e7d3-4e30-9fe4-f7a64f3f8e4a - status: 200 OK - code: 200 - duration: 28.147875ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6d417dea-9969-40ae-a6f2-64afc2694b9d - status: 200 OK - code: 200 - duration: 190.773917ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b288167d-ea99-4d9c-9fd4-607b3dcec120 - status: 404 Not Found - code: 404 - duration: 29.920917ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f1ae405-1825-4864-a502-ea81f6e8fa85 - status: 200 OK - code: 200 - duration: 93.48275ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f2156fc2-2cf9-41c8-8365-5855ead9431b - status: 200 OK - code: 200 - duration: 100.49075ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f2859b0-448d-4943-9eaa-2da20196d4f7 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 118.655583ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5718d740-1583-497d-ad81-5cd8279664c1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:3596:82cf:fd88:fb63/64","created_at":"2025-09-30T09:30:17.098664Z","id":"16bd33b3-af27-4985-a64b-57eb8601bda6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:30:17.098664Z","zone":null},{"address":"172.17.180.2/22","created_at":"2025-09-30T09:30:16.968323Z","id":"0a24478f-f7d7-4c48-a179-883908bdc47b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:30:16.968323Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5c3ea93-4cbc-495b-9310-935a8afea14f - status: 200 OK - code: 200 - duration: 35.94875ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e96c2f18-de37-4e26-b577-272deb20612c - status: 200 OK - code: 200 - duration: 29.935209ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c20e8a94-32d1-405e-be4d-2e8a95441afd - status: 200 OK - code: 200 - duration: 28.560667ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 745ba35f-7233-4bac-8966-14dfbb52ca8e - status: 200 OK - code: 200 - duration: 169.793416ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1768157-ef48-44f9-8a38-d9cd9a72d05c - status: 404 Not Found - code: 404 - duration: 36.291084ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4972c265-9f3a-4879-8f2e-defc3f7d24b2 - status: 200 OK - code: 200 - duration: 80.137458ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d49ba7cc-6737-4606-a6f4-3ce56151c9e7 - status: 200 OK - code: 200 - duration: 106.767209ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:50 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2212b02e-24d3-41b2-a04a-9bc61498bb78 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 109.599208ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5718d740-1583-497d-ad81-5cd8279664c1&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:3596:82cf:fd88:fb63/64","created_at":"2025-09-30T09:30:17.098664Z","id":"16bd33b3-af27-4985-a64b-57eb8601bda6","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:30:17.098664Z","zone":null},{"address":"172.17.180.2/22","created_at":"2025-09-30T09:30:16.968323Z","id":"0a24478f-f7d7-4c48-a179-883908bdc47b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5718d740-1583-497d-ad81-5cd8279664c1","mac_address":"02:00:00:10:56:D6","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:30:16.968323Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 16635e7f-93f2-49a8-91fe-ba38531c0594 - status: 200 OK - code: 200 - duration: 31.327333ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 205 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private_network_instance_02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5764efd7-d26f-4542-85de-c93bdbdae74c - status: 200 OK - code: 200 - duration: 618.619584ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b35d6f95-c564-4bcb-84b9-06e2438b0592 - status: 200 OK - code: 200 - duration: 43.569208ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04c938d0-4d28-47a1-af51-e2d6c776626f - status: 200 OK - code: 200 - duration: 200.279208ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1e5ede9-e199-4990-80fe-e6563b9b6bcf - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 112.860833ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 778f745b-5716-404b-8787-ace748753d22 - status: 200 OK - code: 200 - duration: 154.579208ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:16.621216+00:00","id":"5718d740-1583-497d-ad81-5cd8279664c1","ipam_ip_ids":["0a24478f-f7d7-4c48-a179-883908bdc47b","16bd33b3-af27-4985-a64b-57eb8601bda6"],"mac_address":"02:00:00:10:56:d6","modification_date":"2025-09-30T09:30:46.017012+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5129f629-49cb-45c4-a251-6404263c128d - status: 200 OK - code: 200 - duration: 102.307625ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0563a28a-30f8-4f18-8099-33d580bcfacb - status: 204 No Content - code: 204 - duration: 365.81375ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/5718d740-1583-497d-ad81-5cd8279664c1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"5718d740-1583-497d-ad81-5cd8279664c1","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b296a407-49b8-4dab-9b9e-495a87b8d6e8 - status: 404 Not Found - code: 404 - duration: 108.195ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:53.165351+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fdc21d05-60be-4e24-bf71-748d1b97c264 - status: 201 Created - code: 201 - duration: 655.081167ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:53.165351+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a37da21f-08c7-4e1f-8993-8b2959d91fe8 - status: 200 OK - code: 200 - duration: 127.237459ms - - id: 129 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a2ae6f39-4d15-4f54-bd17-932808b0c40e - status: 200 OK - code: 200 - duration: 120.550875ms - - id: 130 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b636211-9d6f-45cd-9956-4b987fdc5fbf - status: 200 OK - code: 200 - duration: 98.22325ms - - id: 131 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7e3639fb-9587-4edc-8606-842900e05109 - status: 200 OK - code: 200 - duration: 148.998208ms - - id: 132 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9e2cd7f2-6110-44c9-b393-585c2de4561f - status: 200 OK - code: 200 - duration: 161.551208ms - - id: 133 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 02df6577-b6d1-4ba4-8721-1e017cac6526 - status: 404 Not Found - code: 404 - duration: 30.225667ms - - id: 134 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b04f3881-52e7-481c-9e21-a35365c9aea9 - status: 200 OK - code: 200 - duration: 79.983833ms - - id: 135 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1c69f4c-9c48-44aa-93b9-5b1ca9fa244c - status: 200 OK - code: 200 - duration: 102.738792ms - - id: 136 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f80cca00-c73c-4981-8e79-2cff42cba680 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 88.589417ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fd434623-ce95-4e42-bb71-0a1542b00484 - status: 200 OK - code: 200 - duration: 51.51525ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:30:59 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 844305ae-553c-48df-bdb1-cec74ab5d6e5 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 109.959583ms - - id: 139 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 827b420a-c713-4249-b7ed-c2f19da0614a - status: 200 OK - code: 200 - duration: 29.537791ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 23c8bcd1-1ce4-4ab9-ab6c-9eaa4e48eb0a - status: 200 OK - code: 200 - duration: 33.42675ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0ce209d-2e49-4b45-89c0-dd175d0f3ade - status: 200 OK - code: 200 - duration: 37.475917ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 66151b77-62a1-4fe8-92ba-5455ba562f0a - status: 200 OK - code: 200 - duration: 175.909875ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9c4cc5da-8824-4825-8f08-eb9cec9d2f71 - status: 404 Not Found - code: 404 - duration: 36.121042ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67a5fa02-b079-457d-889e-21922fefca82 - status: 200 OK - code: 200 - duration: 95.054167ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c00bcb0-9645-4db2-a4a2-5cab9c822c89 - status: 200 OK - code: 200 - duration: 101.325041ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d5d3bd9b-57b6-470e-bdab-939074914c08 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 111.278708ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2ccab22b-f51d-4222-bb8a-0429f7fed51e - status: 200 OK - code: 200 - duration: 24.963292ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f5f762c-27d3-4f0d-b40c-426032d570d3 - status: 200 OK - code: 200 - duration: 35.896875ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - daaf618a-da0a-4f12-9d4f-367d7bc06d64 - status: 200 OK - code: 200 - duration: 24.782875ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a12880a-03e3-4577-9ecc-affe632d3e4d - status: 200 OK - code: 200 - duration: 47.268833ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9cdb2213-4ff3-45d0-9fa4-b7439c9ac34c - status: 200 OK - code: 200 - duration: 232.161166ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4792cfca-4942-4fa3-87eb-de10f18cb27a - status: 404 Not Found - code: 404 - duration: 32.69325ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 131dc0d4-4beb-4d55-af0c-1720b5b4644c - status: 200 OK - code: 200 - duration: 117.435417ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 129d8960-3fb9-4bed-8f9d-81a6ea00c8b1 - status: 200 OK - code: 200 - duration: 96.528667ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ff22655-4c92-45b8-9c21-dc7c0c8b97e4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 104.366959ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f451c02c-507f-4073-9ac0-0dc56e2db096 - status: 200 OK - code: 200 - duration: 31.129292ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 394a6a69-d1d8-4d6d-8663-3e94b05f28a0 - status: 200 OK - code: 200 - duration: 170.18625ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b136d22e-db3b-48df-a539-f8c6cc9437c0 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 126.808041ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2445 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2445" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 608065ce-056c-4d9f-9ae8-11d828cd9b9e - status: 200 OK - code: 200 - duration: 189.783417ms - - id: 160 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 61 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:02.617586+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd1b5617-c77d-4be8-9b3d-1ef0e2afde1a - status: 201 Created - code: 201 - duration: 708.855083ms - - id: 161 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 473 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:02.617586+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"syncing","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "473" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87c28561-ecdf-40be-b6b6-63fbaaec792f - status: 200 OK - code: 200 - duration: 87.340417ms - - id: 162 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 602af0df-bf8f-407a-b572-d72ed07a0aa2 - status: 200 OK - code: 200 - duration: 109.655458ms - - id: 163 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9a26e716-71db-4920-bc66-eba092fcf62d - status: 200 OK - code: 200 - duration: 118.33ms - - id: 164 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2905 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87300611-e5eb-436c-ac25-cfad79087d0c - status: 200 OK - code: 200 - duration: 174.870583ms - - id: 165 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2905 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9d89400b-19b8-41c0-9028-34b866602078 - status: 200 OK - code: 200 - duration: 225.231ms - - id: 166 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eedb13c5-a73e-4ef9-a7a5-ae49b0b2192b - status: 404 Not Found - code: 404 - duration: 41.105375ms - - id: 167 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3120b86c-ee05-4455-97f8-f26cf3f2c99c - status: 200 OK - code: 200 - duration: 97.679458ms - - id: 168 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b47a7851-9645-44de-8ef9-6e38eebe17d8 - status: 200 OK - code: 200 - duration: 102.0805ms - - id: 169 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "938" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5f5facc0-bb78-4514-833d-21689525d8fa - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 103.487875ms - - id: 170 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=41a1db28-d8d7-47f2-bbce-d4bce1452b4a&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:6f96:697f:9fe7:6d95/64","created_at":"2025-09-30T09:31:02.905095Z","id":"1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:31:02.905095Z","zone":null},{"address":"172.17.180.3/22","created_at":"2025-09-30T09:31:02.737558Z","id":"f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:31:02.737558Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ea015f5a-91e4-4775-85a2-4c62c09d7e2f - status: 200 OK - code: 200 - duration: 31.672416ms - - id: 171 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7c26cf6-1ead-4055-be6f-f3784307540d - status: 200 OK - code: 200 - duration: 32.435916ms - - id: 172 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "938" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 35944d84-e09a-4ee5-86f7-0a6178193fe7 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 100.277459ms - - id: 173 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 061c751d-f266-4baa-8b2b-f5dcf5126714 - status: 200 OK - code: 200 - duration: 29.342334ms - - id: 174 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13ccc697-70d9-48d0-8ab8-d34485053546 - status: 200 OK - code: 200 - duration: 23.416917ms - - id: 175 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2787891c-bca9-408d-94c1-3756e70beff9 - status: 200 OK - code: 200 - duration: 26.445458ms - - id: 176 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2905 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 121a507d-5b30-4529-bd11-e76d8d252b2f - status: 200 OK - code: 200 - duration: 375.154ms - - id: 177 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1042bd94-6788-40f6-aaf0-d45a530a6bed - status: 404 Not Found - code: 404 - duration: 37.069792ms - - id: 178 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5be9c977-01d4-4c8a-a47d-5fcc76584ceb - status: 200 OK - code: 200 - duration: 145.076209ms - - id: 179 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c7cc629-e14b-4c34-b9ae-81874f3ccb07 - status: 200 OK - code: 200 - duration: 126.771917ms - - id: 180 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "938" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f759578e-e88c-4905-9a64-537f62516c3f - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 107.729167ms - - id: 181 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a167967-ca9a-4d90-b3fa-703759e1d09b - status: 200 OK - code: 200 - duration: 29.262458ms - - id: 182 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=41a1db28-d8d7-47f2-bbce-d4bce1452b4a&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:6f96:697f:9fe7:6d95/64","created_at":"2025-09-30T09:31:02.905095Z","id":"1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:31:02.905095Z","zone":null},{"address":"172.17.180.3/22","created_at":"2025-09-30T09:31:02.737558Z","id":"f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:31:02.737558Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e1f30993-1e79-4cc7-b14d-7a311abc8600 - status: 200 OK - code: 200 - duration: 32.919708ms - - id: 183 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 139fa01a-9b87-4916-b012-32768818a958 - status: 200 OK - code: 200 - duration: 26.139042ms - - id: 184 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bd6fabb3-55f9-430e-b34f-45f394bd6831 - status: 200 OK - code: 200 - duration: 26.935042ms - - id: 185 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f1d269cf-9120-415a-9ae1-ad31915407a2 - status: 200 OK - code: 200 - duration: 31.104292ms - - id: 186 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2905 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 02241cbd-601e-488b-9cbe-a31da3eb5d33 - status: 200 OK - code: 200 - duration: 181.2115ms - - id: 187 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5161a8b-181d-4718-bebc-3f2f3346c177 - status: 404 Not Found - code: 404 - duration: 40.180917ms - - id: 188 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e70b4b86-a3be-4d24-93fa-e0c77275b3a4 - status: 200 OK - code: 200 - duration: 89.68325ms - - id: 189 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f78674c3-21fe-4890-8bab-c7abf2e60ed2 - status: 200 OK - code: 200 - duration: 82.237792ms - - id: 190 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "938" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39f78475-5b6a-4c83-a7c1-a003215ef747 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 113.725167ms - - id: 191 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=fe5bacc9-1ac5-497b-9d4e-820541abceb2&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:478a:e7e5:29e4:6faa:eed6/64","created_at":"2025-09-30T09:30:53.365500Z","id":"36513a5f-2e4d-4041-a65a-9c13a645bfe4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8"},"tags":[],"updated_at":"2025-09-30T09:30:53.365500Z","zone":null},{"address":"172.17.204.2/22","created_at":"2025-09-30T09:30:53.243784Z","id":"8cef81d1-3d09-4e03-8da5-a359bd286a11","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","mac_address":"02:00:00:19:65:2F","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"399fdf92-193a-4e7b-b733-96d226ee0554"},"tags":[],"updated_at":"2025-09-30T09:30:53.243784Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0032c891-a164-4c38-a770-ae769beaeb1c - status: 200 OK - code: 200 - duration: 25.890375ms - - id: 192 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=41a1db28-d8d7-47f2-bbce-d4bce1452b4a&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1079 - uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:d3dd:6f96:697f:9fe7:6d95/64","created_at":"2025-09-30T09:31:02.905095Z","id":"1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85"},"tags":[],"updated_at":"2025-09-30T09:31:02.905095Z","zone":null},{"address":"172.17.180.3/22","created_at":"2025-09-30T09:31:02.737558Z","id":"f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","mac_address":"02:00:00:10:D4:2B","name":"tf-srv-boring-chatterjee","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a"},"tags":[],"updated_at":"2025-09-30T09:31:02.737558Z","zone":null}],"total_count":2}' - headers: - Content-Length: - - "1079" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3e7d0a85-ea5b-4345-8fdf-6d4af297f940 - status: 200 OK - code: 200 - duration: 28.346333ms - - id: 193 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2819 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2819" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 74d9518a-40d8-4267-a554-bc8f63a690a0 - status: 200 OK - code: 200 - duration: 163.931875ms - - id: 194 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 938 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "938" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d014867a-4f1c-471a-9f10-10ee13b4ce67 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 102.578833ms - - id: 195 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2905 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2905" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a67f731b-d661-4079-a89e-fa44a44e18cf - status: 200 OK - code: 200 - duration: 190.11575ms - - id: 196 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:30:52.951304+00:00","id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","ipam_ip_ids":["8cef81d1-3d09-4e03-8da5-a359bd286a11","36513a5f-2e4d-4041-a65a-9c13a645bfe4"],"mac_address":"02:00:00:19:65:2f","modification_date":"2025-09-30T09:30:54.327352+00:00","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54ff58d2-33a0-4f10-b4f8-c0d935c5a722 - status: 200 OK - code: 200 - duration: 110.22825ms - - id: 197 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9598830a-8841-44de-b99a-0075205dc0f4 - status: 204 No Content - code: 204 - duration: 389.139458ms - - id: 198 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/fe5bacc9-1ac5-497b-9d4e-820541abceb2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"fe5bacc9-1ac5-497b-9d4e-820541abceb2","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6abd563b-7b76-45a4-be4e-8340376a53b8 - status: 404 Not Found - code: 404 - duration: 108.386125ms - - id: 199 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2359 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2359" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 50109463-63a2-468b-944f-5bacd1eecf39 - status: 200 OK - code: 200 - duration: 191.320875ms - - id: 200 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:31:02.376073+00:00","id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","ipam_ip_ids":["f94cc79e-94e7-4f3a-bb1d-26622fbf34e9","1cd3b295-8e18-4ed9-b89c-22aeb82ae5d8"],"mac_address":"02:00:00:10:d4:2b","modification_date":"2025-09-30T09:31:03.792029+00:00","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","server_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e7a08cef-61d1-4775-a130-a58b203d878c - status: 200 OK - code: 200 - duration: 118.254625ms - - id: 201 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03c923ec-04bb-40a5-9993-8b7ad40e00e0 - status: 204 No Content - code: 204 - duration: 483.64275ms - - id: 202 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics/41a1db28-d8d7-47f2-bbce-d4bce1452b4a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"41a1db28-d8d7-47f2-bbce-d4bce1452b4a","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 41862e04-8315-4580-a0e6-24adb33b2097 - status: 404 Not Found - code: 404 - duration: 98.188041ms - - id: 203 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b83d5db-a748-4905-a64a-cbd8831dea2b - status: 200 OK - code: 200 - duration: 173.819084ms - - id: 204 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3671f227-bf89-4a98-9a3e-de69e65824b2 - status: 200 OK - code: 200 - duration: 157.557041ms - - id: 205 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7343f437-4b8c-4ac4-b3d8-147d9c93ba32 - status: 404 Not Found - code: 404 - duration: 31.074083ms - - id: 206 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e598357-8f93-48d5-bd0a-3717da4ee2f7 - status: 200 OK - code: 200 - duration: 73.843125ms - - id: 207 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1060c34e-b01f-46eb-aaf0-61374c3b6b46 - status: 200 OK - code: 200 - duration: 93.14225ms - - id: 208 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7faa4e36-3945-4db4-a43f-6c0fed96c69b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 100.740625ms - - id: 209 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1901 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c213958f-c2ee-4d33-8fe6-f743b676a6fe - status: 200 OK - code: 200 - duration: 181.174125ms - - id: 210 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 426 - uncompressed: false - body: '{"created_at":"2025-09-30T09:28:31.304254Z","custom_routes_propagation_enabled":true,"id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:28:31.304254Z"}' - headers: - Content-Length: - - "426" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be160889-9886-41f3-bf51-6fdcfa9393e3 - status: 200 OK - code: 200 - duration: 29.110708ms - - id: 211 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1095 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:07.169545Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:07.169545Z","id":"b605a6d7-1869-4ef7-9e8d-8833282f4e8a","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.180.0/22","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:07.169545Z","id":"85b7955a-d2b1-40de-aea8-c77dbe8d9d85","private_network_id":"56e80e2f-706c-4da9-9ef6-bf3108d75155","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d3dd::/64","updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:07.169545Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1095" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f0b8cef-db37-47ba-9681-23257757d0a3 - status: 200 OK - code: 200 - duration: 24.9005ms - - id: 212 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1098 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:51.219782Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:30:51.219782Z","id":"399fdf92-193a-4e7b-b733-96d226ee0554","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.204.0/22","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"},{"created_at":"2025-09-30T09:30:51.219782Z","id":"6ab11d4e-8b11-4922-ad1e-888bc373d7e8","private_network_id":"493ecc6f-3341-445d-8af1-a8b8c3d7ba01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:478a::/64","updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}],"tags":[],"updated_at":"2025-09-30T09:30:51.219782Z","vpc_id":"c69f321e-d131-4a8d-8d2a-4e8a763c1ee1"}' - headers: - Content-Length: - - "1098" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 37490895-d32c-4506-82c6-9e1d91a7d30c - status: 200 OK - code: 200 - duration: 43.825958ms - - id: 213 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1901 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1901" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e3c78833-d8cf-4347-87ae-878bc47191a1 - status: 200 OK - code: 200 - duration: 215.840667ms - - id: 214 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c1e0cf19-9f7f-44d5-8a8f-c1485b491ad9 - status: 404 Not Found - code: 404 - duration: 35.252125ms - - id: 215 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1d4cd9fe-2734-463f-8b30-ab824d6a19f3 - status: 200 OK - code: 200 - duration: 98.339084ms - - id: 216 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 03b18032-e1ee-4bc8-bfcb-367c6288c279 - status: 200 OK - code: 200 - duration: 89.5735ms - - id: 217 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c28315a-095b-4b38-a2f0-5387ec531a04 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 83.682292ms - - id: 218 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1987 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:30:13.910471+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1987" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d47ef9a2-a3e0-4b7a-b004-1faeba537ae1 - status: 200 OK - code: 200 - duration: 166.075ms - - id: 219 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:30:09.338416Z","id":"68e7ad82-0212-4771-bec2-6b1e70e776ba","product_resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:30:09.338416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7dd1430d-4580-4a72-bb6a-788e6803986c - status: 200 OK - code: 200 - duration: 93.379583ms - - id: 220 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27/action","href_result":"/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","id":"9241b1ca-9751-45cc-a338-abf682ca06e1","progress":0,"started_at":"2025-09-30T09:31:15.922833+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:15 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9241b1ca-9751-45cc-a338-abf682ca06e1 - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ba6059f-c0d2-462a-a05f-aa7106c36a44 - status: 202 Accepted - code: 202 - duration: 231.981833ms - - id: 221 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:15.738872+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13e0bc4c-a361-426a-9abd-4072e4ce631e - status: 200 OK - code: 200 - duration: 151.891542ms - - id: 222 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/493ecc6f-3341-445d-8af1-a8b8c3d7ba01 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 474d979c-e244-469f-bfd7-0de7a3af23d9 - status: 204 No Content - code: 204 - duration: 1.682267583s - - id: 223 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/56e80e2f-706c-4da9-9ef6-bf3108d75155 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc5a208f-2ea6-46d3-bd77-9515da4075d1 - status: 204 No Content - code: 204 - duration: 1.682331541s - - id: 224 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c69f321e-d131-4a8d-8d2a-4e8a763c1ee1 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:17 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ba04c85-6f55-4e9e-b73a-8793772fbbe2 - status: 204 No Content - code: 204 - duration: 79.840125ms - - id: 225 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:15.738872+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e6d8316-bf2c-4c1e-83ac-7078ac3a75c1 - status: 200 OK - code: 200 - duration: 189.697833ms - - id: 226 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1947 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:15.738872+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1947" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 66e85a0b-fcf3-4538-8554-724a33428521 - status: 200 OK - code: 200 - duration: 152.470625ms - - id: 227 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1861 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1901","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:15.738872+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1861" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:31 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a40199d-420e-4b8d-95cf-62029972f136 - status: 200 OK - code: 200 - duration: 176.909584ms - - id: 228 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1830 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:31.277711+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 481a116c-1d06-4ee6-a54c-9942bc07cf94 - status: 200 OK - code: 200 - duration: 186.176833ms - - id: 229 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1830 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:30:09.181841+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-boring-chatterjee","id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fc:f3","maintenances":[],"modification_date":"2025-09-30T09:31:31.277711+00:00","name":"tf-srv-boring-chatterjee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1830" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d4b15b7f-efbf-4f70-8edc-75950c2c3753 - status: 200 OK - code: 200 - duration: 202.078541ms - - id: 230 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8371e0d1-09fb-4857-9f4b-af32396e06af - status: 204 No Content - code: 204 - duration: 494.334792ms - - id: 231 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 99240986-7cd1-4102-be3a-6acc4ea17ee2 - status: 404 Not Found - code: 404 - duration: 71.270834ms - - id: 232 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 85a5a7e3-eda2-42db-aa72-07d391c4f499 + - a4a3c783-abb4-43eb-8b58-5999fefb2df7 status: 404 Not Found code: 404 - duration: 39.965625ms - - id: 233 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-09-30T09:30:09.338416Z","id":"6e0425e4-4444-4fe6-b19f-6c6292bfb4ae","last_detached_at":"2025-09-30T09:31:37.554743Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:31:37.554743Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bfb8f4d0-d0a8-4f4a-9eae-08baa51830cc - status: 200 OK - code: 200 - duration: 82.248917ms - - id: 234 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6e0425e4-4444-4fe6-b19f-6c6292bfb4ae - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:31:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 80f47b3c-473e-4ce3-93b4-50855e48bd82 - status: 204 No Content - code: 204 - duration: 151.878917ms - - id: 235 + duration: 35.797441ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -11651,8 +2706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc1a4b3a-3227-491c-8bf4-41d51e8a8b27 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics method: GET response: proto: HTTP/2.0 @@ -11662,7 +2717,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc1a4b3a-3227-491c-8bf4-41d51e8a8b27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' headers: Content-Length: - "143" @@ -11671,9 +2726,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:31:37 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -11681,7 +2736,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f664316d-230e-4bf2-83e8-1021238a41d2 + - bb35d7d7-3a3f-446f-b871-0ebc97b0018c status: 404 Not Found code: 404 - duration: 58.144ms + duration: 29.398778ms diff --git a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml index ed2f9978d..b34bef41b 100644 --- a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b2fa057-2504-444b-9346-515eb362d6cc + - 7b2df6cc-2922-4b23-b7cb-ad80b46c873d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 85.574962ms + duration: 55.681739ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb603109-6cca-491a-9d7d-8619e73f9266 + - c5807400-ea42-44f3-8158-4c869d6de2b2 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 99.973235ms + duration: 41.955792ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 445ccf37-66cf-4752-9de2-7a04f99ab8e3 + - b637b0bf-ba5d-49f7-9dd6-df3fe3e4ac4c status: 200 OK code: 200 - duration: 71.959347ms + duration: 54.061327ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 303 + content_length: 301 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-competent-lalande","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":true}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: '{"name":"tf-srv-dreamy-williams","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":true}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f511a7c1-27d4-4685-bc8c-d8b2018418b0 + - 8a3274d9-8fb1-4bc4-9da3-c3d2c23f1ed7 status: 201 Created code: 201 - duration: 994.369661ms + duration: 531.528893ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf3ab3e-8aa5-4442-a454-8415900e8757 + - c94a0d0f-e583-40b7-a601-3a755f779c35 status: 200 OK code: 200 - duration: 244.753844ms + duration: 108.065318ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe12fb9-5e80-40ec-bc99-b966951099f0 + - 2ef7f8cc-2f2b-4e72-9362-ac18d55383b6 status: 200 OK code: 200 - duration: 193.269276ms + duration: 101.597476ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77aaf1db-748b-42f3-9515-b730ca3f9eeb + - ac11ea25-b321-43e6-970b-e9d616d335da status: 200 OK code: 200 - duration: 188.176896ms + duration: 134.373924ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5806132-40ea-4e51-94be-db4bee8338f1 + - 44829178-4b5f-4b37-b17f-5628b6282178 status: 404 Not Found code: 404 - duration: 43.246868ms + duration: 27.58487ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -429,20 +429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 702 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:16.836623Z","id":"67fa044e-bfb4-4ef3-aed6-4713e82814bc","product_resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:16.836623Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - - "702" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e59bf7e3-ce7f-4101-9778-c9f6fe2b0e8c + - 93fec2d4-332e-4b66-8aed-e7249fd0e57e status: 200 OK code: 200 - duration: 74.471107ms + duration: 38.805496ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e392ecf-7ee9-439f-8592-3d62440f581b + - b25e4455-f7b8-4612-b131-0e9542316a0e status: 200 OK code: 200 - duration: 91.889233ms + duration: 57.883066ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02426ded-a29d-46ae-b745-80937337ee04 + - 1fdcb3f8-af39-496c-954d-47a3773e5705 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.94104ms + duration: 57.869371ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2dc7e2a-7cd3-4ea8-8236-11eeb03dc637 + - 65252eba-4d35-4f04-8939-70b2dd627f43 status: 200 OK code: 200 - duration: 142.024149ms + duration: 89.909074ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc4a184e-8981-4578-902d-debb9eeb8d44 + - 2cbe8e89-4f36-4aa3-8e8f-69b96dba1f10 status: 200 OK code: 200 - duration: 159.447175ms + duration: 100.19083ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea837b7b-17ba-4bb4-b411-952836c22dee + - b189fc33-17b4-4150-85d2-ec796d5f804f status: 404 Not Found code: 404 - duration: 31.679383ms + duration: 34.531348ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -727,20 +727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 702 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:16.836623Z","id":"67fa044e-bfb4-4ef3-aed6-4713e82814bc","product_resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:16.836623Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - - "702" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aa7fecb-a69d-41fb-b3f5-7fb5463bfd45 + - c55c9f76-da80-4e85-98cb-85fc7036c22c status: 200 OK code: 200 - duration: 91.544277ms + duration: 41.201784ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data method: GET response: proto: HTTP/2.0 @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2549734b-7f26-4946-8b1d-869f69c23866 + - 0ed4efd3-8b14-42dc-a1be-00296e94ce1c status: 200 OK code: 200 - duration: 148.233765ms + duration: 51.160965ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics method: GET response: proto: HTTP/2.0 @@ -836,11 +836,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 288c5058-05c0-4fde-8004-66e097987bed + - ef8255bf-13de-47c7-ac7f-fbdf90131be7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.750892ms + duration: 54.411134ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:20 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c02be37-6547-4575-9880-b3c6518751d3 + - 2df5f116-2b19-40e8-9e35-dc8b2a5cf7fc status: 200 OK code: 200 - duration: 173.810182ms + duration: 100.870199ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:20 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f264a937-bc97-4b0a-bd44-0a7891769ea7 + - a70cfb9b-0264-4f03-b10d-b9faa0578eb9 status: 404 Not Found code: 404 - duration: 52.139935ms + duration: 33.817456ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 702 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:16.836623Z","id":"67fa044e-bfb4-4ef3-aed6-4713e82814bc","product_resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:16.836623Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - - "702" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:20 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be9d0dec-7683-4f3f-95f3-618c18e873ee + - 64322e87-cce9-45ae-98c8-af315220a12f status: 200 OK code: 200 - duration: 107.536529ms + duration: 52.423402ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:20 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ff1ca63-3283-4155-81aa-9d3bc4dd823b + - 1235c06a-eb81-4f98-a2f1-de7e6ce1a082 status: 200 OK code: 200 - duration: 150.105154ms + duration: 52.939058ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics method: GET response: proto: HTTP/2.0 @@ -1085,11 +1085,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:21 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,12 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5af5b36-7ac7-43d2-b8dc-cbd38afd3249 + - 5eca69a5-1612-44d3-94c4-be6b561a38b9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.047656ms + duration: 55.332121ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1780 + content_length: 1798 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:16.647036+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1780" + - "1798" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,29 +1148,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9691cfd-a5b0-4e07-b720-2e993b734c49 + - 42beefc1-8c2c-4ec3-adf4-82801cbeb1a3 status: 200 OK code: 200 - duration: 220.883946ms + duration: 122.652729ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 104 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","boot":false,"name":"tf-vol-jovial-chatelet"}}}' + body: '{"volumes":{"0":{"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","boot":false,"name":"tf-vol-crazy-yalow"}}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: PATCH response: proto: HTTP/2.0 @@ -1178,20 +1178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93793935-c86b-4b67-acf0-0c8fcf4d1dfb + - 116fc6e2-c754-4407-968e-108f9574475e status: 200 OK code: 200 - duration: 289.585252ms + duration: 147.76563ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1227,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f4f52b9-deb3-48c5-a403-3921dfb27d72 + - b524f3ce-dea5-44ee-bea9-9e945b6c1f74 status: 200 OK code: 200 - duration: 162.279096ms + duration: 91.33813ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6869309-5525-427f-9e02-97870658e872 + - 5a91ccf6-7406-4d1a-a2c0-07b4fd8b4ccc status: 200 OK code: 200 - duration: 157.027747ms + duration: 97.521425ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5a1b9cf-159a-4dfb-b491-3f313a7326de + - 686f6161-cb42-4324-bbca-51722b4af96f status: 404 Not Found code: 404 - duration: 40.96611ms + duration: 27.852715ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:16.836623Z","id":"67fa044e-bfb4-4ef3-aed6-4713e82814bc","product_resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:16.836623Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c43f73eb-4ee5-4211-9929-629820624329 + - 1d8874b7-48da-4d0a-bafd-9764d4345146 status: 200 OK code: 200 - duration: 111.092388ms + duration: 34.637124ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data method: GET response: proto: HTTP/2.0 @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:23 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 578c2482-ac9c-4f10-a6c4-9bd693c9cb33 + - e761a4c1-0e65-4463-8a1d-d6593a4b44bc status: 200 OK code: 200 - duration: 117.616013ms + duration: 57.6417ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics method: GET response: proto: HTTP/2.0 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:23 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef602c6-1584-4cd3-b652-69360580bd34 + - b44f86da-dec7-4445-b1b0-d13110aea3a4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 118.668146ms + duration: 51.297396ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:23 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3926570-a8e0-4447-9f63-ebe8852a99c0 + - b272da6f-b7a6-4324-b87c-a16cd55b0840 status: 200 OK code: 200 - duration: 190.846031ms + duration: 101.047446ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:24 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a00d7b60-c620-4c27-9342-337743eda9c0 + - 047b97ac-fcf9-49c9-955d-e94b3228fcf1 status: 200 OK code: 200 - duration: 184.445377ms + duration: 110.097391ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -1625,7 +1625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -1634,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:24 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b852594-9c67-40a9-b07b-6077d70f7b0c + - 5e371e24-bca5-44ad-896f-5b6709d19af5 status: 404 Not Found code: 404 - duration: 36.457975ms + duration: 26.61339ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -1674,7 +1674,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:16.836623Z","id":"67fa044e-bfb4-4ef3-aed6-4713e82814bc","product_resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:16.836623Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1683,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:24 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c7a110-2bd5-44d2-9d1e-8d30dea30f49 + - 46cecc3d-b035-4cd7-bbc2-7e2559d88746 status: 200 OK code: 200 - duration: 81.593084ms + duration: 55.424301ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data method: GET response: proto: HTTP/2.0 @@ -1732,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:24 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 818fe98a-63e8-4f0e-a2e2-3dc924f9e463 + - a38fbd6c-782f-4559-bed3-482edde5a117 status: 200 OK code: 200 - duration: 83.852842ms + duration: 58.923002ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics method: GET response: proto: HTTP/2.0 @@ -1781,11 +1781,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:24 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,12 +1793,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e83f056-a57c-4e25-b9ae-cfc30022867f + - 5a09d8bb-f439-467a-9c82-82d6433cec4c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 117.343071ms + duration: 46.302143ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1823,20 +1823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1781" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 789da0b7-2f8e-4422-98c1-13a89cae4278 + - 4de593ed-c5cb-454d-bffc-0c8d5c93e8b6 status: 200 OK code: 200 - duration: 153.57989ms + duration: 94.961763ms - id: 37 request: proto: HTTP/1.1 @@ -1863,8 +1863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -1872,20 +1872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1781 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:16.647036+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-competent-lalande","id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:11","maintenances":[],"modification_date":"2025-06-10T15:29:22.314728+00:00","name":"tf-srv-competent-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' headers: Content-Length: - - "1781" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,11 +1893,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8f29243-2083-4b4e-8969-f3911a7f126d + - 95d08ec2-6c41-4e93-99f7-7ffaf087086f status: 200 OK code: 200 - duration: 202.748253ms + duration: 44.865803ms - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action","href_result":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366","id":"05cbfae0-018a-4a31-bd84-228b65b6a124","progress":0,"started_at":"2025-10-08T23:04:53.757421+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05cbfae0-018a-4a31-bd84-228b65b6a124 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af5c0305-4839-4b2b-a432-f4ac4c570730 + status: 202 Accepted + code: 202 + duration: 205.207297ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1912,27 +1965,180 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1821 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:53.593231+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db647905-8e2f-478b-ae7e-8b342ee3ecd8 + status: 200 OK + code: 200 + duration: 92.360614ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1956 uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"2001","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:56.160598+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1956" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ce4d5e5-5aab-45dc-b0db-16e9d33075f0 + status: 200 OK + code: 200 + duration: 96.18153ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action","href_result":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366","id":"9fa89771-442c-4fdd-98e8-59030ea79cd5","progress":0,"started_at":"2025-10-08T23:04:59.123489+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:04:59 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9fa89771-442c-4fdd-98e8-59030ea79cd5 + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3cd7643d-bb59-4afa-ae97-1bff848715da + status: 202 Accepted + code: 202 + duration: 178.996117ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1919 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"2001","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:58.988505+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1919" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:04:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,11 +2146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 167be901-d24c-4adf-9c43-3322e29ce67a - status: 204 No Content - code: 204 - duration: 272.691177ms - - id: 39 + - e7355872-d495-452b-bc99-9bb28e77469c + status: 200 OK + code: 200 + duration: 103.122306ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1959,8 +2165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -1970,7 +2176,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","type":"not_found"}' headers: Content-Length: - "143" @@ -1979,9 +2185,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,11 +2195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7eadf78c-3c63-451a-a97e-82dc21353347 + - 5c21ad7c-8933-4dbb-8f38-0c42d934568d status: 404 Not Found code: 404 - duration: 93.249704ms - - id: 40 + duration: 50.942956ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2008,8 +2214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -2019,7 +2225,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' headers: Content-Length: - "143" @@ -2028,9 +2234,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,11 +2244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a54e984-9c51-4754-97cd-f64386367a97 + - 39454c0d-2a7f-4623-9773-711029f8c3c5 status: 404 Not Found code: 404 - duration: 77.434034ms - - id: 41 + duration: 30.765119ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2057,8 +2263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: GET response: proto: HTTP/2.0 @@ -2068,7 +2274,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:16.836623Z","id":"c77a7e7d-ffce-49a7-a2df-35c5f9470217","last_detached_at":"2025-06-10T15:29:26.748147Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:26.748147Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":"2025-10-08T23:05:00.489482Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:00.489482Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2077,9 +2283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,11 +2293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2968f97e-874c-48fe-addc-f0aab6ae86b2 + - 94a5cda6-30a3-4fe2-882d-e98189b51085 status: 200 OK code: 200 - duration: 81.322816ms - - id: 42 + duration: 45.823123ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2106,8 +2312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c77a7e7d-ffce-49a7-a2df-35c5f9470217 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce method: DELETE response: proto: HTTP/2.0 @@ -2124,9 +2330,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,11 +2340,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21a8c90f-20bf-40aa-8fef-5bdf97957e1f + - 204e0f66-b9d2-41da-a2dc-acda8987f223 status: 204 No Content code: 204 - duration: 188.812959ms - - id: 43 + duration: 75.554006ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2153,8 +2359,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/13087939-de87-4e10-ab9b-c7687a5d0b6d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 method: GET response: proto: HTTP/2.0 @@ -2164,7 +2370,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"13087939-de87-4e10-ab9b-c7687a5d0b6d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","type":"not_found"}' headers: Content-Length: - "143" @@ -2173,9 +2379,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,7 +2389,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb7e6027-d21c-4cf7-a5c7-54d58f96a4f3 + - 3fe26602-ad19-4aeb-9f9d-086662714016 status: 404 Not Found code: 404 - duration: 136.824898ms + duration: 50.17811ms diff --git a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml index 6d2bc0425..bf9513014 100644 --- a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:21 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7496d9b0-e12f-4163-91db-6fc8da01b599 + - c1d03023-020f-40a9-9b94-3e489965b610 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 660.116541ms + duration: 51.762715ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:21 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0286eccc-9071-4fa3-9fdb-5f519d366ea4 + - fda5e2e4-9603-4b9c-88d9-92f5ac04f3a5 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 44.071834ms + duration: 47.775688ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - "1260" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:21 GMT + - Wed, 08 Oct 2025 23:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 701c3b2b-9213-4271-975c-2f0e9861b6b9 + - 24fcc80f-dae0-40be-8ad8-02fdd955fd7a status: 200 OK code: 200 - duration: 69.020583ms + duration: 53.243928ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:22 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a57fa7e5-c129-4e5a-a17c-a6c40b7e9337 + - df293cf0-8872-4549-b305-c7763259fc4c status: 201 Created code: 201 - duration: 957.3895ms + duration: 922.409928ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:22 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f83f72a-a485-463e-b908-42a890ea6573 + - 82bb93e5-42f7-4d76-942c-227da595878c status: 200 OK code: 200 - duration: 133.902042ms + duration: 101.759637ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:22 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ff3c189-c856-4072-ab71-211981435b92 + - 76a63a40-1abb-4891-a465-2d38a34be491 status: 200 OK code: 200 - duration: 118.472375ms + duration: 90.651689ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: PATCH response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -344,9 +344,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:22 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e278c400-d3c0-44b3-bf10-40f4ba4f7859 + - 576f84da-eca7-4cd5-a24d-c0e1a68c1b1c status: 200 OK code: 200 - duration: 78.216625ms + duration: 77.250302ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:21.787930+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:22 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72c2ae4e-515a-4c1f-8cbb-f897056e0ff7 + - 4c38c5b6-909e-4bc8-a7f7-891fc7a26c89 status: 200 OK code: 200 - duration: 144.871958ms + duration: 81.197494ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:23 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34223a9f-2f04-4bc5-9b75-9314e6df1f98 + - 79f87f30-f770-4dd4-8360-4bd912aa1212 status: 200 OK code: 200 - duration: 42.186166ms + duration: 44.328713ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action","href_result":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9","id":"2a4e0bb1-9288-4f7b-998a-f880db3e8370","progress":0,"started_at":"2025-08-07T11:31:23.272142+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action","href_result":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2","id":"1bbb5843-52d9-43cd-8d53-41a2fa2f16ed","progress":0,"started_at":"2025-10-08T23:04:28.679438+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:23 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a4e0bb1-9288-4f7b-998a-f880db3e8370 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1bbb5843-52d9-43cd-8d53-41a2fa2f16ed Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b39a2935-ba04-49b1-8a1c-44844225273d + - b5169db9-2afc-4175-aaf2-1bd764f8d552 status: 202 Accepted code: 202 - duration: 275.115583ms + duration: 191.721048ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -533,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1830 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:23.046111+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:28.532346+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1808" + - "1830" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:23 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05e8a5d6-6c9a-4ba1-9a27-79ef25381239 + - 9f9af60d-c2c9-4637-be2d-896156d0691a status: 200 OK code: 200 - duration: 177.022375ms + duration: 97.580565ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1943" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:28 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bdddb95-7a50-425a-9179-06e4049922ac + - b660ab62-83f9-4228-bbd4-e481cd401531 status: 200 OK code: 200 - duration: 161.136292ms + duration: 101.615077ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1943" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:28 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 295fda1a-1c67-43c4-a02d-278dc00cd876 + - 50d1018a-7ffe-4ab4-b773-e953a661a671 status: 200 OK code: 200 - duration: 157.523625ms + duration: 109.194058ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:28 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63be00db-dedd-4ad1-a108-2d9ce0e7ec23 + - a857c35f-a857-4de2-b9b1-a4f107ceb1bb status: 404 Not Found code: 404 - duration: 39.280208ms + duration: 30.678313ms - id: 14 request: proto: HTTP/1.1 @@ -720,8 +720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -731,7 +731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -740,9 +740,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:28 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b30333a9-dc23-4091-aeff-f1680ff8a263 + - 5ea4946c-f552-4119-8935-a6e588c2162b status: 200 OK code: 200 - duration: 50.338542ms + duration: 38.78954ms - id: 15 request: proto: HTTP/1.1 @@ -769,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:28 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17162d04-25b9-4060-8637-5a5b9fc7a6b4 + - 8d529c0e-bd02-462e-af47-8929550424db status: 200 OK code: 200 - duration: 80.941959ms + duration: 54.6653ms - id: 16 request: proto: HTTP/1.1 @@ -818,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:29 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,30 +850,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afa11a90-35d8-4f07-90d2-ad262f3cef59 + - a81b15b6-f934-4a5d-b329-75f65eb7f024 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.6525ms + duration: 61.749644ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 151 + content_length: 154 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"tf-snapshot-quizzical-euler","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","tags":[]}' + body: '{"volume_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"tf-snapshot-inspiring-ishizaka","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots method: POST response: @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:29 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71863454-5da0-4ccc-b43e-911969382f50 + - 6efa0b4e-3f1d-439c-8853-263551c4da0f status: 200 OK code: 200 - duration: 266.772833ms + duration: 441.580779ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 712 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:29.168241Z","id":"32a4faab-3684-4a88-be0c-cb46e5be9f0f","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:31:29 GMT + - Wed, 08 Oct 2025 23:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63bdacdc-0ee6-41c3-a5dd-e882d2706448 + - 4b320e8b-da40-40c6-b78a-50335d4b1ce9 status: 200 OK code: 200 - duration: 129.578958ms + duration: 178.014381ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 712 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87f59e82-e6ee-4fa4-ba40-fa5c5155f66a + - 406b9b70-758f-4e5a-a76a-809a19eb1637 status: 200 OK code: 200 - duration: 158.857542ms + duration: 130.270068ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 712 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca0b787-2964-4ff6-ab23-b5630399bc50 + - e7a88c56-2eb4-447d-a6aa-787ad3f5550b status: 200 OK code: 200 - duration: 91.111542ms + duration: 359.912135ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 712 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "1943" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a1e6653-deb3-4064-9d81-fcd5b4997e22 + - 7bcb4cad-2dbc-4fab-bd57-e3f3407f4f68 status: 200 OK code: 200 - duration: 140.385166ms + duration: 557.525219ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 712 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9709e4-5ca5-4b6f-81ca-32ba6c852c87 - status: 404 Not Found - code: 404 - duration: 29.392666ms + - 015f433b-a193-43e7-b5e7-8c4e70668d4f + status: 200 OK + code: 200 + duration: 123.273087ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 712 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "712" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 350f906c-e3f6-4f23-973b-147c816fb779 + - 67fa31fe-7b3f-4451-b214-6a651563b20f status: 200 OK code: 200 - duration: 40.860458ms + duration: 163.875847ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 482 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d41391b4-f4d4-4868-97d1-cb60e14ccccd + - 71a150df-c117-47bb-b353-37a34e363bca status: 200 OK code: 200 - duration: 76.32775ms + duration: 393.626341ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1274,22 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 482 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e00aefc4-dea0-460e-bb66-a8dd9545b9d0 - X-Total-Count: - - "0" + - 9b9f917d-f522-4df5-84a5-82bff5e19c6b status: 200 OK code: 200 - duration: 61.659792ms + duration: 349.255579ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -1327,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 1964 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "479" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:11 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ef7c508-f93e-4ff2-b9da-7b6feeedd3c0 + - e0a5d9ac-da18-4cfc-9b1a-17829572e44f status: 200 OK code: 200 - duration: 102.377041ms + duration: 115.953642ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -1376,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' headers: Content-Length: - - "1943" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 800749bf-31f7-463e-9fc8-10aba14efd14 - status: 200 OK - code: 200 - duration: 117.9755ms + - 0709fea6-195d-4aa1-aa7e-ff5f7322326a + status: 404 Not Found + code: 404 + duration: 27.80205ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -1425,20 +1421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6e76728-877b-4e32-913a-1f38d89eaabe - status: 404 Not Found - code: 404 - duration: 30.522583ms + - 438ec5d6-5890-40b7-8d63-4bc1879077bf + status: 200 OK + code: 200 + duration: 38.66861ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data method: GET response: proto: HTTP/2.0 @@ -1474,20 +1470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21427d8-3893-4671-b70a-84d0eb89f289 + - 5c377562-3a87-40de-beda-ab5c7824af0e status: 200 OK code: 200 - duration: 36.723917ms + duration: 51.750422ms - id: 30 request: proto: HTTP/1.1 @@ -1514,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics method: GET response: proto: HTTP/2.0 @@ -1523,20 +1519,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1542,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df18cd33-9280-465a-8feb-975c1265c550 + - 094ecf3d-0a2c-483e-a4a5-e9cc2c9639c7 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 58.1855ms + duration: 51.450607ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1572,22 +1572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 482 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,12 +1593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e72def8-6709-4e88-ad52-7fc557d86e70 - X-Total-Count: - - "0" + - 6e6e16c4-dca7-4bdc-94c2-fc32d5632bb6 status: 200 OK code: 200 - duration: 60.626709ms + duration: 374.036963ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 1964 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "479" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,50 +1642,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81a23114-71ec-40f4-9f5d-ac81d6ba3a8f + - df8042a7-f7a3-4e9a-b9ec-0764e0db5b5e status: 200 OK code: 200 - duration: 148.841916ms + duration: 91.808636ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 201 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-optimistic-greider","perf_iops":5000,"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","from_snapshot":{"size":null,"snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda"},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' headers: Content-Length: - - "459" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcf8e256-4f39-4ecd-b2ef-79cdb156f4a7 - status: 200 OK - code: 200 - duration: 133.920708ms + - deb5d2f8-9093-4539-b50c-862291c4fd20 + status: 404 Not Found + code: 404 + duration: 27.081155ms - id: 34 request: proto: HTTP/1.1 @@ -1716,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -1725,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - - "459" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1c41711-0323-443d-980c-aa2287a79309 + - ff207ce4-d9f0-450d-8d36-4d89cd514e07 status: 200 OK code: 200 - duration: 37.858625ms + duration: 47.827385ms - id: 35 request: proto: HTTP/1.1 @@ -1765,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data method: GET response: proto: HTTP/2.0 @@ -1774,20 +1768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "460" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 682cf37d-3cf9-40f8-a231-02f6e446860c + - 6f77ebcc-8f73-493c-8ff4-ae46ebb7381d status: 200 OK code: 200 - duration: 55.921209ms + duration: 58.532514ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics method: GET response: proto: HTTP/2.0 @@ -1823,20 +1817,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:12.881097Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "460" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1840,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d366925-434e-4a8b-845c-4118dacd0e6c + - 7e0f6e39-f456-42bf-a1e5-b23c89cd51b6 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 42.2675ms + duration: 57.521362ms - id: 37 request: proto: HTTP/1.1 @@ -1863,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -1872,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 482 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,50 +1891,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdb9b3f4-d133-4bba-b591-fcbe9ebf2c8c + - f1d5a444-e7f9-4a68-9738-2bce67575b46 status: 200 OK code: 200 - duration: 109.209208ms + duration: 414.941653ms - id: 38 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 199 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-fervent-roentgen","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_snapshot":{"size":null,"snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1"},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 457 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' headers: Content-Length: - - "39208" + - "457" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1944,12 +1942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e29b3617-3272-415e-803b-d979806f2495 - X-Total-Count: - - "75" + - ca671e4e-92ee-49cb-9df1-fe2749b7f9f6 status: 200 OK code: 200 - duration: 67.766084ms + duration: 210.023205ms - id: 39 request: proto: HTTP/1.1 @@ -1965,8 +1961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -1974,22 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 457 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' headers: Content-Length: - - "19730" + - "457" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,54 +1991,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf3547e-3f32-4548-b518-39bef3881b78 - X-Total-Count: - - "75" + - bd9e9f92-72b4-4116-841e-cd089c1bef91 status: 200 OK code: 200 - duration: 53.873542ms + duration: 42.106416ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 295 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1218 + content_length: 458 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' headers: Content-Length: - - "1218" + - "458" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2052,10 +2040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89d93302-6b1a-423a-9d1a-5718ddabaa57 - status: 201 Created - code: 201 - duration: 567.930958ms + - 8a9d3ab1-a961-433b-913c-d4e6772628ed + status: 200 OK + code: 200 + duration: 42.347944ms - id: 41 request: proto: HTTP/1.1 @@ -2071,8 +2059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -2080,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1218 + content_length: 458 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' headers: Content-Length: - - "1218" + - "458" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:19 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ba79b00-bdd2-4555-aa21-a6187e2a35fa + - ec9cfedd-d48e-423d-9a67-290f1239172c status: 200 OK code: 200 - duration: 116.909417ms + duration: 36.611137ms - id: 42 request: proto: HTTP/1.1 @@ -2120,8 +2108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -2129,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1304 + content_length: 482 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:18.579024+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "1304" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:19 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2150,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0857bcd9-91b7-4bb8-8d21-b7a74b0267f8 + - 987aeb57-69e0-45c2-a611-f08138d021c6 status: 200 OK code: 200 - duration: 127.299875ms + duration: 468.952498ms - id: 43 request: proto: HTTP/1.1 @@ -2169,8 +2157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2178,20 +2166,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "692" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:19 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,52 +2189,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f938f6dd-c95d-4531-ac70-532ed5fa9c95 + - 2164d2c6-1a38-4c51-84b0-04e3e409df63 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 43.303083ms + duration: 52.135464ms - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 19730 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action","href_result":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc","id":"5b0304f2-8327-43c8-958d-ad62e36fb923","progress":0,"started_at":"2025-08-07T11:32:19.378348+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "357" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5b0304f2-8327-43c8-958d-ad62e36fb923 + - Wed, 08 Oct 2025 23:05:14 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2252,28 +2242,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bddf183-fe90-46db-b1cd-1c63393b660f - status: 202 Accepted - code: 202 - duration: 215.095166ms + - 648b6fab-b778-4f6b-bd22-a90e47029108 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 55.368532ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 295 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -2282,7 +2276,7 @@ interactions: trailer: {} content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:19.209975+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1240" @@ -2291,9 +2285,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:19 GMT + - Wed, 08 Oct 2025 23:05:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2301,10 +2297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b81c5a3-d9e2-4ebd-8179-f7f03cd7e8b0 - status: 200 OK - code: 200 - duration: 123.35525ms + - f994e136-fa63-4522-a265-fcc2bc9ed737 + status: 201 Created + code: 201 + duration: 459.037051ms - id: 46 request: proto: HTTP/1.1 @@ -2320,8 +2316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -2329,20 +2325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1374 + content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1374" + - "1240" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2350,10 +2346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9cfeeee-f4d2-4b7e-80c8-f8eaf546ae7d + - 93d15819-1141-4c5e-b559-8818cb99582b status: 200 OK code: 200 - duration: 136.615625ms + duration: 91.156023ms - id: 47 request: proto: HTTP/1.1 @@ -2369,8 +2365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -2378,20 +2374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1374 + content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1374" + - "1240" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,10 +2395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25750f12-1add-4774-929b-88b40fe6efee + - 091f687c-8af8-4679-9a6f-5c2596ba0111 status: 200 OK code: 200 - duration: 105.555833ms + duration: 105.955528ms - id: 48 request: proto: HTTP/1.1 @@ -2418,8 +2414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -2427,20 +2423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 690 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,48 +2444,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49e043e2-6d1a-4f72-b779-b55a57e32d5b - status: 404 Not Found - code: 404 - duration: 39.206834ms + - 75330fdc-0696-4abc-8f8c-e2685bd89274 + status: 200 OK + code: 200 + duration: 47.63663ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action","href_result":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e","id":"0979dbb9-ae5b-44c3-a066-ea1a494628ee","progress":0,"started_at":"2025-10-08T23:05:15.528618+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT + - Wed, 08 Oct 2025 23:05:15 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0979dbb9-ae5b-44c3-a066-ea1a494628ee Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,10 +2497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88a6759a-2c3f-4319-8f30-50f3e330ab24 - status: 200 OK - code: 200 - duration: 36.326ms + - 3fc7642a-282f-4079-9a77-514b58659421 + status: 202 Accepted + code: 202 + duration: 181.350946ms - id: 50 request: proto: HTTP/1.1 @@ -2516,8 +2516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -2525,20 +2525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1262 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:15.391450+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1262" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,10 +2546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e79969e0-e766-48db-831f-97946623854d + - 92d9ef07-a657-4b7e-a344-53cbad043a4a status: 200 OK code: 200 - duration: 59.080125ms + duration: 84.03884ms - id: 51 request: proto: HTTP/1.1 @@ -2565,8 +2565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -2574,22 +2574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1397 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:24 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,12 +2595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 752ce725-d762-45ac-8ee1-cd5e0329ec04 - X-Total-Count: - - "0" + - a580ae89-658f-4207-bcd3-f10df3a3f9bb status: 200 OK code: 200 - duration: 60.7815ms + duration: 120.52904ms - id: 52 request: proto: HTTP/1.1 @@ -2618,8 +2614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -2627,20 +2623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 1397 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1943" + - "1397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,10 +2644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 389e3b6e-c4cf-4907-9c3f-0a7911ab9e3e + - c20d6ed4-a8b8-4695-8c34-eccf8ef90386 status: 200 OK code: 200 - duration: 137.002625ms + duration: 103.322027ms - id: 53 request: proto: HTTP/1.1 @@ -2667,8 +2663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -2678,7 +2674,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' headers: Content-Length: - "143" @@ -2687,9 +2683,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2697,10 +2693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d65e1e6-541b-4e60-9e0e-8b9c48d1cb6e + - 62e602fb-3b6e-428a-a230-697340f6ebed status: 404 Not Found code: 404 - duration: 33.667084ms + duration: 32.460438ms - id: 54 request: proto: HTTP/1.1 @@ -2716,8 +2712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -2725,20 +2721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 690 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2746,10 +2742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a41d933-5927-4e43-842a-8d79b48864ea + - 337e645b-3bd8-4ec3-9bbf-bd24c6df0eae status: 200 OK code: 200 - duration: 44.218625ms + duration: 42.585823ms - id: 55 request: proto: HTTP/1.1 @@ -2765,8 +2761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/user_data method: GET response: proto: HTTP/2.0 @@ -2785,9 +2781,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2795,10 +2791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a652713f-a835-47a6-bdc0-59480c09e34c + - 76487135-24e0-4fe1-8de2-6487d2eaf952 status: 200 OK code: 200 - duration: 57.360541ms + duration: 49.764651ms - id: 56 request: proto: HTTP/1.1 @@ -2814,8 +2810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/private_nics method: GET response: proto: HTTP/2.0 @@ -2834,11 +2830,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:21 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,12 +2842,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04f8bbd0-3c99-4886-9057-dba005045a52 + - 4d02e999-e23a-4153-893b-adbaa09dc0c0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.682417ms + duration: 68.492501ms - id: 57 request: proto: HTTP/1.1 @@ -2867,8 +2863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -2876,20 +2872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 1964 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "479" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2897,10 +2893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8a4b848-e64c-4a76-b687-c12e1b85903b + - 3ccc7b1b-2f8e-4f95-8573-2bee8f2b5018 status: 200 OK code: 200 - duration: 152.218333ms + duration: 1.838422255s - id: 58 request: proto: HTTP/1.1 @@ -2916,8 +2912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -2925,20 +2921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' headers: Content-Length: - - "692" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2946,10 +2942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f3246ca-8cd6-4d87-9335-ced2c3f1d14f - status: 200 OK - code: 200 - duration: 43.09825ms + - fd6817e1-00eb-4202-a501-49633219c360 + status: 404 Not Found + code: 404 + duration: 27.960341ms - id: 59 request: proto: HTTP/1.1 @@ -2965,8 +2961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -2974,20 +2970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 705 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:25 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2995,10 +2991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b1ff21-8e7a-4f72-a59e-58a6b3224648 + - a9f0e920-a0f3-4cd7-baac-0f0dbf2a92bb status: 200 OK code: 200 - duration: 235.607667ms + duration: 38.586715ms - id: 60 request: proto: HTTP/1.1 @@ -3014,8 +3010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data method: GET response: proto: HTTP/2.0 @@ -3023,20 +3019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1374 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1374" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3044,10 +3040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bfda099-5fa0-49d6-b789-d5b94caa116e + - abdb1c30-4ef0-4f26-9990-e3c26dd63363 status: 200 OK code: 200 - duration: 103.550125ms + duration: 54.368488ms - id: 61 request: proto: HTTP/1.1 @@ -3063,8 +3059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics method: GET response: proto: HTTP/2.0 @@ -3072,20 +3068,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3093,10 +3091,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83833a66-4951-4b7d-b099-146dc069af64 - status: 404 Not Found - code: 404 - duration: 40.138042ms + - 53dc06b4-2ec3-4f15-a9cb-838a4974a501 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 48.191195ms - id: 62 request: proto: HTTP/1.1 @@ -3112,8 +3112,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -3121,20 +3121,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 482 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3142,10 +3142,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e056c6f-ba26-4e96-8cef-fb650955ac22 + - 33d7561f-0307-4fca-96b4-97b2ccda8d3f status: 200 OK code: 200 - duration: 44.178166ms + duration: 270.340217ms - id: 63 request: proto: HTTP/1.1 @@ -3161,8 +3161,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -3170,20 +3170,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 690 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3191,10 +3191,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6322edd4-68f5-431e-a3aa-ca474d64b174 + - 7b0bf451-628f-43b4-9127-c7de5c635cb8 status: 200 OK code: 200 - duration: 50.058292ms + duration: 50.436044ms - id: 64 request: proto: HTTP/1.1 @@ -3210,8 +3210,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -3219,22 +3219,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 482 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3242,12 +3240,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d10afbc-151e-4947-aa96-0537086bc412 - X-Total-Count: - - "0" + - 1bb79f9f-583f-4f0c-8e6b-48cdb38a575a status: 200 OK code: 200 - duration: 54.193958ms + duration: 113.292284ms - id: 65 request: proto: HTTP/1.1 @@ -3263,8 +3259,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -3272,20 +3268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1374 + content_length: 1397 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:21.878675+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1374" + - "1397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3293,10 +3289,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0e593ce-1207-45b7-b711-e2b5ae8b3501 + - 8788dfa4-c66c-4452-9b25-897bd6d6baf2 status: 200 OK code: 200 - duration: 136.506875ms + duration: 111.674396ms - id: 66 request: proto: HTTP/1.1 @@ -3312,8 +3308,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -3321,20 +3317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":null,"name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:32:18.517884Z","id":"775f9f26-7ec4-4f4a-b911-2fb5d36ca4e9","product_resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:32:18.517884Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' headers: Content-Length: - - "692" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:26 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3342,52 +3338,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5776ed2a-956e-4b1b-ad98-c3cf064acb94 - status: 200 OK - code: 200 - duration: 68.972875ms + - d10a6bb9-374a-4ec6-b4c7-17aeccda96a2 + status: 404 Not Found + code: 404 + duration: 27.313674ms - id: 67 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 690 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc/action","href_result":"/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc","id":"907d061c-caaf-4dd7-be28-5269e621876f","progress":0,"started_at":"2025-08-07T11:32:27.047967+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' headers: Content-Length: - - "352" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/907d061c-caaf-4dd7-be28-5269e621876f + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3395,10 +3387,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 938d66b0-a054-4905-be37-143c7da566bc - status: 202 Accepted - code: 202 - duration: 333.809541ms + - f3d7f3b1-14c1-488d-8e77-ca7cb0df102c + status: 200 OK + code: 200 + duration: 38.61654ms - id: 68 request: proto: HTTP/1.1 @@ -3414,8 +3406,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/user_data method: GET response: proto: HTTP/2.0 @@ -3423,20 +3415,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1334 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1334" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:27 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3444,10 +3436,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bd8c9f0-bcb2-49c1-a43d-35f685f3d9b4 + - bf48727a-115e-4fa9-b0cb-dda89790bdd6 status: 200 OK code: 200 - duration: 114.849959ms + duration: 63.906695ms - id: 69 request: proto: HTTP/1.1 @@ -3463,8 +3455,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/private_nics method: GET response: proto: HTTP/2.0 @@ -3472,410 +3464,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1334 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1334" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:32:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e48b8cdf-97dd-4b9f-8d89-aa1d77a18711 - status: 200 OK - code: 200 - duration: 115.756167ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:32:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 35976cd3-4e82-491e-b8a0-084e208bab5a - status: 200 OK - code: 200 - duration: 114.702666ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:32:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb4bcaff-9ab6-456c-b5f5-b5c763efc645 - status: 200 OK - code: 200 - duration: 120.58025ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:32:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 272a2ee5-43c7-46c4-989f-68bc92a25afa - status: 200 OK - code: 200 - duration: 125.957375ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1420 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:32:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 234e3d06-7728-4dce-80df-94cc9127390d - status: 200 OK - code: 200 - duration: 130.945833ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1334 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:32:26.829010+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1334" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:32:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eebae07a-8efa-4a28-8d20-7c0ea7964081 - status: 200 OK - code: 200 - duration: 124.359459ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1218 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:33:01.749738+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1218" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a28599da-682b-4e86-8c8d-765ccf098681 - status: 200 OK - code: 200 - duration: 137.598833ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1218 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:32:18.579024+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:cb","maintenances":[],"modification_date":"2025-08-07T11:33:01.749738+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1218" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 409061cd-1080-4787-856b-08a1206fa9d9 - status: 200 OK - code: 200 - duration: 152.586125ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3883,11 +3487,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcb1c40a-b984-4e7c-845f-8648a3663bd2 - status: 204 No Content - code: 204 - duration: 202.799375ms - - id: 78 + - 9eb2f8e6-7477-452f-80df-643afeac3dbc + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 52.287353ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3902,8 +3508,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -3911,20 +3517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1397 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3932,48 +3538,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c445ca9d-4271-43b4-9a31-d209b0520065 - status: 404 Not Found - code: 404 - duration: 117.771ms - - id: 79 + - 4a607c4f-bd8b-4f9e-b5dc-5a3cdced82d3 + status: 200 OK + code: 200 + duration: 101.050006ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 353 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action","href_result":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e","id":"30882b0d-6f06-4bf6-8cce-9304a55a73e3","progress":0,"started_at":"2025-10-08T23:05:24.836641+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:24 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30882b0d-6f06-4bf6-8cce-9304a55a73e3 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3981,11 +3591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718f8389-4a93-432e-bdc7-bceef3649231 - status: 404 Not Found - code: 404 - duration: 36.90025ms - - id: 80 + - d7488905-38b8-4e28-8aed-db6551ca8352 + status: 202 Accepted + code: 202 + duration: 177.495859ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -4000,8 +3610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -4009,20 +3619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 485 + content_length: 1360 uncompressed: false - body: '{"created_at":"2025-08-07T11:32:12.881097Z","id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","last_detached_at":"2025-08-07T11:33:03.553444Z","name":"tf-volume-optimistic-greider","parent_snapshot_id":"c89555af-f109-43ec-9480-1b0713af1bda","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:33:03.553444Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:24.711161+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "485" + - "1360" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4030,11 +3640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0fe11d5-477b-452c-8b65-303692d4d949 + - 47701e00-3596-4063-ba4e-2781a71a3766 status: 200 OK code: 200 - duration: 38.175583ms - - id: 81 + duration: 93.506123ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -4049,27 +3659,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4077,11 +3689,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 843e12fd-87f0-404c-b836-ba161899d409 - status: 204 No Content - code: 204 - duration: 64.974958ms - - id: 82 + - f5dd25c7-d363-48fd-aa99-19ead800f71e + status: 404 Not Found + code: 404 + duration: 56.500746ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -4096,8 +3708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad2c995f-943b-435b-9cd7-0fd1e6a49dfc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -4105,20 +3717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"ad2c995f-943b-435b-9cd7-0fd1e6a49dfc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' headers: Content-Length: - - "127" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4126,11 +3738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bead8475-dd65-4ea2-81c0-26c855b92c65 + - 04182852-4b89-4a3b-9b52-a0646cee2145 status: 404 Not Found code: 404 - duration: 38.333166ms - - id: 83 + duration: 25.548694ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -4145,8 +3757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -4154,20 +3766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 483 uncompressed: false - body: '{"class":"sbs","created_at":"2025-08-07T11:31:29.115438Z","id":"c89555af-f109-43ec-9480-1b0713af1bda","name":"tf-snapshot-quizzical-euler","parent_volume":{"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-08-07T11:31:29.115438Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":"2025-10-08T23:05:26.291361Z","name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.291361Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "483" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:03 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4175,11 +3787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51418e0c-0cf7-4e50-b740-5220eeaf0b63 + - eb0f95b3-e1b7-4569-855f-275927257bdc status: 200 OK code: 200 - duration: 137.549625ms - - id: 84 + duration: 44.903885ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4194,8 +3806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: DELETE response: proto: HTTP/2.0 @@ -4212,9 +3824,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:04 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4222,11 +3834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 167423f5-1bea-4ed1-85cb-3a56e5dad3f6 + - 966a83cf-918e-4cbe-af91-561d19ff8713 status: 204 No Content code: 204 - duration: 121.24825ms - - id: 85 + duration: 64.259918ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4241,8 +3853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/c89555af-f109-43ec-9480-1b0713af1bda + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 method: GET response: proto: HTTP/2.0 @@ -4250,20 +3862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"c89555af-f109-43ec-9480-1b0713af1bda","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' headers: Content-Length: - - "129" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:04 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,11 +3883,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3edf8e61-2b1e-441c-8eb1-0d763b11ffed + - 3550d430-329e-4cb2-85f2-f7bfe8645b70 status: 404 Not Found code: 404 - duration: 40.313083ms - - id: 86 + duration: 52.193387ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4290,8 +3902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -4299,20 +3911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1943 + content_length: 482 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:31:26.033418+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' headers: Content-Length: - - "1943" + - "482" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:04 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4320,11 +3932,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2efff3cc-f057-4e7b-ba31-033238974f3c + - 9c7e1918-b3c0-437a-bcdc-db5f74621e41 status: 200 OK code: 200 - duration: 122.813333ms - - id: 87 + duration: 361.628351ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4339,131 +3951,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 705 - uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[{"created_at":"2025-08-07T11:31:21.983891Z","id":"787e35bd-8033-42a0-bcfd-1b3345f90293","product_resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:31:21.983891Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "705" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a982b4e3-6620-487a-a45a-11839f836b8b - status: 200 OK - code: 200 - duration: 38.443541ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9/action","href_result":"/servers/4a339f70-270e-4835-bc57-063d2e1f2da9","id":"125ba168-0f9f-4c17-b6d2-e8858ec7139c","progress":0,"started_at":"2025-08-07T11:33:04.649153+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:04 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/125ba168-0f9f-4c17-b6d2-e8858ec7139c - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bf520554-d3ae-4cf1-af5f-4655dfd291a8 - status: 202 Accepted - code: 202 - duration: 397.376958ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1903 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:04 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4471,11 +3979,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f12e0eb8-454f-4067-b432-b7269781a063 - status: 200 OK - code: 200 - duration: 134.289625ms - - id: 90 + - 38b6f4c1-d02f-4aec-a8bc-316503f4f3b4 + status: 204 No Content + code: 204 + duration: 292.172628ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4490,8 +3998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 method: GET response: proto: HTTP/2.0 @@ -4499,20 +4007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1903 + content_length: 129 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","type":"not_found"}' headers: Content-Length: - - "1903" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:09 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4520,11 +4028,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62bf2624-3fe2-47f3-bf16-91fc54204b88 - status: 200 OK - code: 200 - duration: 140.40475ms - - id: 91 + - 88b99fe9-eb57-45f9-8779-4ca59a76603b + status: 404 Not Found + code: 404 + duration: 51.554283ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4539,8 +4047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -4548,20 +4056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1903 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1903" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:15 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4569,97 +4077,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be6beeaa-8645-49db-a58a-e9747e1d3ad4 + - 51fae917-bfea-4bfa-8c61-2587e2adddbf status: 200 OK code: 200 - duration: 112.025375ms - - id: 92 + duration: 92.58288ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1903 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:04.303665+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1903" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Thu, 07 Aug 2025 11:33:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4bfde177-ac38-4c08-8475-4675c7f1254f - status: 200 OK - code: 200 - duration: 156.647166ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:20.229497+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action","href_result":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2","id":"fcaaec86-bfc8-4fd3-bb44-729781b6e61a","progress":0,"started_at":"2025-10-08T23:05:31.170642+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:25 GMT + - Wed, 08 Oct 2025 23:05:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fcaaec86-bfc8-4fd3-bb44-729781b6e61a Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4667,11 +4130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4569c9a-1882-417a-9661-7eab42bbb759 - status: 200 OK - code: 200 - duration: 129.736834ms - - id: 94 + - c6b31c01-0b1e-4c2c-b7b4-d9e7b5f123de + status: 202 Accepted + code: 202 + duration: 174.629564ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4686,8 +4149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -4695,20 +4158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-08-07T11:31:21.787930+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"4a339f70-270e-4835-bc57-063d2e1f2da9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c2:f8:c3","maintenances":[],"modification_date":"2025-08-07T11:33:20.229497+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","placement_group":null,"private_ip":null,"private_nics":[],"project":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"1c1fc99f-b2de-408d-9eb0-da801a3e2744","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:05:31.045881+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1786" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:25 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4716,58 +4179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfc8cbc8-ef2e-4c3a-8b34-f53145fc1056 + - 4792fa3e-bc7b-45d5-b5a6-7e02c77b7bde status: 200 OK code: 200 - duration: 138.482333ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 07 Aug 2025 11:33:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75a906f6-da96-4583-b547-10c673b3e741 - status: 204 No Content - code: 204 - duration: 184.498375ms - - id: 96 + duration: 112.1478ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4782,8 +4198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -4793,7 +4209,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","type":"not_found"}' headers: Content-Length: - "143" @@ -4802,9 +4218,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:25 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4812,11 +4228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cf8364e-15c9-4c02-8eac-4c4f547d61ee + - de45c011-c560-4859-a9fb-a3c82a79ccd9 status: 404 Not Found code: 404 - duration: 180.954875ms - - id: 97 + duration: 44.926465ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4831,8 +4247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -4842,7 +4258,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' headers: Content-Length: - "143" @@ -4851,9 +4267,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:25 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4861,11 +4277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c7656f0-39ff-49b8-a62c-23a08e4c396a + - 77ee3fc0-9a1f-47ea-b949-3e9f63af9200 status: 404 Not Found code: 404 - duration: 39.465584ms - - id: 98 + duration: 35.49715ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4880,8 +4296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: GET response: proto: HTTP/2.0 @@ -4891,7 +4307,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-08-07T11:31:21.983891Z","id":"4bfe6d49-0407-4c0e-8049-c2b0cd23dd99","last_detached_at":"2025-08-07T11:33:25.757170Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"d3520a52-2c75-4ba0-bda8-82dd087f07f2","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-08-07T11:33:25.757170Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":"2025-10-08T23:05:32.853634Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:32.853634Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -4900,9 +4316,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:25 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4910,11 +4326,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eab9bde-196f-4720-a971-06a4a13a5264 + - 8a4b8679-d505-4d38-b54b-02460ee7105e status: 200 OK code: 200 - duration: 44.032208ms - - id: 99 + duration: 33.91507ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4929,8 +4345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4bfe6d49-0407-4c0e-8049-c2b0cd23dd99 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 method: DELETE response: proto: HTTP/2.0 @@ -4947,9 +4363,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:26 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4957,11 +4373,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8569fd20-38b7-461f-875c-44c34c2d9ef3 + - c007d5c5-d323-4081-a58b-c584da3f5c54 status: 204 No Content code: 204 - duration: 68.775834ms - - id: 100 + duration: 77.676918ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4976,8 +4392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c862da0f-3fce-4ee0-b734-5b911846cdcc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e method: GET response: proto: HTTP/2.0 @@ -4987,7 +4403,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c862da0f-3fce-4ee0-b734-5b911846cdcc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","type":"not_found"}' headers: Content-Length: - "143" @@ -4996,9 +4412,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:26 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5006,11 +4422,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a969c656-c101-41bf-b9f9-fab7a34dac58 + - c448e85b-2a72-4325-9652-6bd36dc259c7 status: 404 Not Found code: 404 - duration: 72.833333ms - - id: 101 + duration: 48.117496ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -5025,8 +4441,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4a339f70-270e-4835-bc57-063d2e1f2da9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 method: GET response: proto: HTTP/2.0 @@ -5036,7 +4452,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4a339f70-270e-4835-bc57-063d2e1f2da9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","type":"not_found"}' headers: Content-Length: - "143" @@ -5045,9 +4461,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 07 Aug 2025 11:33:26 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5055,7 +4471,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8d9a943-1402-4a05-be3b-4da890ce1928 + - bd7e512e-9c03-4d3b-98f3-65dc01545eb9 status: 404 Not Found code: 404 - duration: 92.773333ms + duration: 45.918874ms diff --git a/internal/services/instance/testdata/server-root-volume1.cassette.yaml b/internal/services/instance/testdata/server-root-volume1.cassette.yaml index 283471cba..f2a5bfc3e 100644 --- a/internal/services/instance/testdata/server-root-volume1.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume1.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:51 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cebc3bf7-d470-4d15-ae17-cf80b164428e + - 7825ff9d-204b-4fe0-979c-1ccaa1c3ddb8 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 160.491833ms + duration: 41.077535ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:51 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da1f1ec-2d96-4d4e-8436-37a3d7384bd8 + - 6ccc5307-b8bc-4787-a07d-affb776114b6 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 44.933125ms + duration: 40.70769ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "397" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:52 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 089940c2-7c84-4711-a062-3fbef77ffdac + - 3a30cfb6-a450-48ee-a36f-376802099b52 status: 200 OK code: 200 - duration: 101.820917ms + duration: 42.709588ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 342 + content_length: 347 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-tender-jackson","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"4a4d2994-e7e0-4b29-a760-36235e6ba258","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: '{"name":"tf-srv-flamboyant-chatelet","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.250760+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:52 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4794ec9d-bfb4-46e0-b840-bfa849caffb6 + - 9e516bc0-5f3b-4323-8be5-1be8f42c55c6 status: 201 Created code: 201 - duration: 530.188709ms + duration: 566.624422ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.250760+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:52 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ea808ad-222d-40b6-8779-c5e55feb8725 + - fc3944a2-8afc-40ef-b1b2-d24389aed69d status: 200 OK code: 200 - duration: 104.998208ms + duration: 88.673755ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.250760+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:52 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ff08e3e-435f-446e-8a49-812109dce243 + - 13e6eaeb-6bf8-487d-bf4c-69258ea74b0a status: 200 OK code: 200 - duration: 111.575833ms + duration: 98.062588ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/af222d4d-672f-422b-88ab-83b42747a327/action","href_result":"/servers/af222d4d-672f-422b-88ab-83b42747a327","id":"e2c5e1ef-8026-4161-adf9-8a70b400749a","progress":0,"started_at":"2025-09-08T07:22:52.983987+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action","href_result":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a","id":"0b964c0d-94ad-4187-9beb-9ddc73bd4df5","progress":0,"started_at":"2025-10-08T23:04:51.839767+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:53 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e2c5e1ef-8026-4161-adf9-8a70b400749a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b964c0d-94ad-4187-9beb-9ddc73bd4df5 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24adc29f-739c-4a18-b928-740700ce630d + - 3b9bcf5f-d004-4200-928f-f73a38d16dac status: 202 Accepted code: 202 - duration: 183.15425ms + duration: 179.395324ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2238 + content_length: 2253 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.853200+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2238" + - "2253" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:53 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36c1f6a1-e1b6-46be-a5a5-71d3277faf35 + - bc50b4ab-ff0a-4825-9cbd-4df6159c1e2b status: 200 OK code: 200 - duration: 111.522958ms + duration: 86.381148ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.853200+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2341" + - "2357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:22:58 GMT + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 679ad2f3-e45f-4480-ba9d-91e7f4f48313 + - 1ae37d9f-0488-4ff6-a6a4-d946a40cbc81 status: 200 OK code: 200 - duration: 116.663584ms + duration: 90.299064ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 2357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:22:52.853200+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2341" + - "2357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:03 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41e73a48-1f0c-4115-9709-d6330e452e19 + - 58eb74b8-7a67-4463-b33a-a70ae09c5010 status: 200 OK code: 200 - duration: 102.565291ms + duration: 90.587846ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f15b486-8d8a-4ef4-a4a0-b5ed98644b85 + - e4a52283-c828-4a33-9d93-85f49c12c19d status: 200 OK code: 200 - duration: 134.822291ms + duration: 89.094157ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26cee7bc-546e-4ec2-a546-14c250931d33 + - b24b05dd-ca7d-4570-a7a6-633d8896b40b status: 200 OK code: 200 - duration: 123.793ms + duration: 119.675235ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/efb50084-68ac-4d50-9d39-a8ab931fba11 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 526 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 263e83a1-9e65-477b-9cd1-6931498a9b05 + - 287195a2-138c-4f61-86dc-7f11482fc5b5 status: 200 OK code: 200 - duration: 84.570834ms + duration: 65.857383ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 109ce18e-d440-4aaa-a540-1834edd22f1e + - 93eeb74d-0cf8-4580-9925-7c2b2357ecf2 status: 200 OK code: 200 - duration: 70.886791ms + duration: 54.984754ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4606c1e7-0afa-4ef8-b46d-52b188789205 + - 1408ea7b-6967-40f0-aa38-962f9a153131 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.52325ms + duration: 50.682504ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:08 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 132d5934-f0cb-47bd-b2f8-407caf9437fb + - f819c1b3-b3a4-4b12-ad8a-62ddd22366ed status: 200 OK code: 200 - duration: 110.164208ms + duration: 92.034093ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d622fa6-4b13-4577-91d4-7b0f31771056 + - 53c66563-56ba-4194-a0fe-d5e3964dcba4 status: 200 OK code: 200 - duration: 273.291917ms + duration: 95.15798ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/efb50084-68ac-4d50-9d39-a8ab931fba11 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 526 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6202156f-c12a-4144-9a9b-3272a424aaf4 + - e81969d9-2624-4741-9aa4-237a1f211179 status: 200 OK code: 200 - duration: 58.479458ms + duration: 51.85716ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data method: GET response: proto: HTTP/2.0 @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae0a39ab-e43e-409c-8642-483c8f075eba + - e5e1106d-8ddc-4bd5-9a1b-917d5add1616 status: 200 OK code: 200 - duration: 58.787625ms + duration: 52.885184ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics method: GET response: proto: HTTP/2.0 @@ -987,11 +987,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,12 +999,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 180872c4-b2b3-4382-9556-62cbd5cec80f + - 175bd1f1-4bcc-4f40-b97d-ab7b6d405e66 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.42075ms + duration: 64.7705ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 222baced-6669-4bda-86e7-ee1e930c65be + - b94d9f75-17e1-4a5e-b513-fbde7c10c1a1 status: 200 OK code: 200 - duration: 95.204542ms + duration: 74.786634ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/efb50084-68ac-4d50-9d39-a8ab931fba11 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 526 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:09 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01c60684-81db-40d6-8693-693aceeebebf + - 7d84c267-5903-4a7f-bc2f-e00506691f30 status: 200 OK code: 200 - duration: 68.729625ms + duration: 48.780711ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:11 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aae6d387-912e-439e-888d-2639018364b7 + - defdee88-fec8-4bc8-a10e-90d473b92861 status: 200 OK code: 200 - duration: 1.623226958s + duration: 70.836217ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:11 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c920098-42e0-4784-8490-23b784855f82 + - d7137df4-63f1-420f-8d9b-0b3de543a138 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.87575ms + duration: 54.802015ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:11 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a3df166-b3aa-4bfd-b941-c08fdf9a0b35 + - bccf53cd-d70b-4aaf-a2d0-5f8a909be289 status: 200 OK code: 200 - duration: 102.767416ms + duration: 92.853441ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2388 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:05.758902+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,29 +1299,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fa969b1-71ed-4390-b6c2-ecf39db578fb + - f312c475-585f-465e-961f-34db0a47f27c status: 200 OK code: 200 - duration: 116.43875ms + duration: 93.857881ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action method: POST response: proto: HTTP/2.0 @@ -1329,22 +1329,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/af222d4d-672f-422b-88ab-83b42747a327/action","href_result":"/servers/af222d4d-672f-422b-88ab-83b42747a327","id":"1c0b9a05-e13b-4c1a-9cd1-64e30f6211e1","progress":0,"started_at":"2025-09-08T07:23:12.328260+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action","href_result":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a","id":"01eab057-2365-49ac-9817-eec37bce407a","progress":0,"started_at":"2025-10-08T23:05:08.909359+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1c0b9a05-e13b-4c1a-9cd1-64e30f6211e1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/01eab057-2365-49ac-9817-eec37bce407a Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e6cd1ac-c07b-4401-a168-267595e96eb5 + - f6f343b8-31ea-4214-9ad6-8cef3c44f2b8 status: 202 Accepted code: 202 - duration: 388.749ms + duration: 161.87237ms - id: 27 request: proto: HTTP/1.1 @@ -1371,8 +1371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2351 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:08.790392+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:12 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adb32c4e-1e8d-464e-9abf-b06063e5f9af + - 1a198aff-eb07-4414-860a-57e6c1f8f479 status: 200 OK code: 200 - duration: 97.08675ms + duration: 72.125474ms - id: 28 request: proto: HTTP/1.1 @@ -1420,8 +1420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a method: GET response: proto: HTTP/2.0 @@ -1429,20 +1429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","type":"not_found"}' headers: Content-Length: - - "2332" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:18 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48ab8672-d3b7-4f20-8367-164a491ce2bc - status: 200 OK - code: 200 - duration: 1.218703708s + - 7adfd680-57a9-4e43-9d18-83c8e6c11e15 + status: 404 Not Found + code: 404 + duration: 59.612504ms - id: 29 request: proto: HTTP/1.1 @@ -1469,8 +1469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","type":"not_found"}' headers: Content-Length: - - "2332" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:23 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08ecf645-583f-4155-bec8-4f0d20ae2cd8 - status: 200 OK - code: 200 - duration: 173.739583ms + - a509b78f-7c8e-4f58-8fae-e2976989fcda + status: 404 Not Found + code: 404 + duration: 32.428639ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc method: GET response: proto: HTTP/2.0 @@ -1527,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","type":"not_found"}' headers: Content-Length: - - "2332" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:28 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1d690dd-df2f-49b6-b039-c4acaf3d7cf7 - status: 200 OK - code: 200 - duration: 216.263709ms + - 78f4a1d8-bdc1-4a91-910a-c0f290f61d7d + status: 404 Not Found + code: 404 + duration: 17.89604ms - id: 31 request: proto: HTTP/1.1 @@ -1567,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1576,20 +1576,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 39208 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2332" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:34 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1599,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2d354cf-7ef5-45e1-899e-2fa6c68825f7 + - f5bf42b9-a835-4734-9cec-c19ecc7a7fac + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 125.941125ms + duration: 45.873905ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1629,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2332" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:39 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b4c1b2b-b089-4100-bac1-fb4691e5c0f1 + - b8b59a9f-9671-4466-89d2-d50c7283669e + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 111.567708ms + duration: 50.930372ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1674,20 +1682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"32","hypervisor_id":"404","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:12.031638+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2332" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:44 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,48 +1703,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bb967da-7ac3-49ee-b73e-079625a562fd + - 5b12e941-f42f-45ba-84f3-14f69560c51d status: 200 OK code: 200 - duration: 103.073708ms + duration: 41.151478ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 343 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-hardcore-austin","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:49.131377+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:49 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57aa4e35-cfde-47d8-971a-bbc1a3543802 - status: 200 OK - code: 200 - duration: 93.242ms + - 324420ac-3c95-4392-bd02-b686d5ea6d52 + status: 201 Created + code: 201 + duration: 357.385998ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -1772,20 +1784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:22:52.250760+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-jackson","id":"af222d4d-672f-422b-88ab-83b42747a327","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:6f","maintenances":[],"modification_date":"2025-09-08T07:23:49.131377+00:00","name":"tf-srv-tender-jackson","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:22:52.250760+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"af222d4d-672f-422b-88ab-83b42747a327","name":"tf-srv-tender-jackson"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:49 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41444056-bb87-42f2-bc87-6f8f3ae5aa13 + - 84fc0f1e-d961-4623-ad19-51c79dfafedb status: 200 OK code: 200 - duration: 123.684666ms + duration: 84.739388ms - id: 36 request: proto: HTTP/1.1 @@ -1812,27 +1824,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2219 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:49 GMT + - Wed, 08 Oct 2025 23:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,48 +1854,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6562dd11-22c6-4743-81b5-01910852dfe9 - status: 204 No Content - code: 204 - duration: 201.418833ms + - 0b63af5d-e037-4f59-b320-d300c8fc591a + status: 200 OK + code: 200 + duration: 68.020408ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af222d4d-672f-422b-88ab-83b42747a327 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 357 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af222d4d-672f-422b-88ab-83b42747a327","type":"not_found"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action","href_result":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","id":"b0552263-2fea-48e6-8907-1d62235016cb","progress":0,"started_at":"2025-10-08T23:05:14.959139+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:49 GMT + - Wed, 08 Oct 2025 23:05:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0552263-2fea-48e6-8907-1d62235016cb Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1907,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 955a4eb2-53a1-46d0-a1d2-dac2f5c5de14 - status: 404 Not Found - code: 404 - duration: 102.772ms + - 9bca1e39-89c7-4a0b-9181-9931870f12b6 + status: 202 Accepted + code: 202 + duration: 212.568513ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1926,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/efb50084-68ac-4d50-9d39-a8ab931fba11 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -1917,20 +1935,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 2241 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:22:52.250760+00:00","export_uri":null,"id":"efb50084-68ac-4d50-9d39-a8ab931fba11","modification_date":"2025-09-08T07:23:49.705314+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "2241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT + - Wed, 08 Oct 2025 23:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89dde0c9-1927-4bed-94ca-8120ca31221b + - 9019c8ff-cff0-4042-91d4-44f22a037b9c status: 200 OK code: 200 - duration: 65.954708ms + duration: 92.04481ms - id: 39 request: proto: HTTP/1.1 @@ -1957,27 +1975,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/efb50084-68ac-4d50-9d39-a8ab931fba11 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2343 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2343" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT + - Wed, 08 Oct 2025 23:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,10 +2005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db1970ad-9bb5-437c-8f83-ae484841ae6f - status: 204 No Content - code: 204 - duration: 196.362875ms + - 5d51230c-ce90-4bc0-8b67-c3de1168f480 + status: 200 OK + code: 200 + duration: 100.233196ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2013,22 +2033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 2343 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "39208" + - "2343" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,12 +2054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40fa32fa-3961-4c2f-ba33-ae70206da567 - X-Total-Count: - - "75" + - 7bb6f514-cfcb-4fea-abdf-e1035d47b9ef status: 200 OK code: 200 - duration: 50.738083ms + duration: 87.477385ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2066,22 +2082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2374 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2374" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,12 +2103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3690512-49f5-45f7-a851-9ab01525bf25 - X-Total-Count: - - "75" + - 8a3e0bbf-bd7e-48ad-8d1b-38e76b2eacae status: 200 OK code: 200 - duration: 49.530375ms + duration: 90.45574ms - id: 42 request: proto: HTTP/1.1 @@ -2110,8 +2122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2119,20 +2131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 2374 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "397" + - "2374" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,52 +2152,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3df13478-2535-4162-b120-289b55a105d6 + - 08bab01d-9f3a-4738-9cdc-3883fc683da9 status: 200 OK code: 200 - duration: 49.215917ms + duration: 87.854652ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 342 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-crazy-mccarthy","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"4a4d2994-e7e0-4b29-a760-36235e6ba258","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:50.563010+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2216" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2193,10 +2201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1cb08ce-8618-4446-87d1-35d18ac8a650 - status: 201 Created - code: 201 - duration: 444.14675ms + - 95bee1c5-fea9-4f6f-8319-74d4030e0ca1 + status: 200 OK + code: 200 + duration: 66.812957ms - id: 44 request: proto: HTTP/1.1 @@ -2212,8 +2220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/user_data method: GET response: proto: HTTP/2.0 @@ -2221,20 +2229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:50.563010+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2216" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:50 GMT + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2242,10 +2250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b44c6541-f65e-40c8-8468-aa79c9b17974 + - 634c48be-902b-48e0-8589-e4d6b6209f8d status: 200 OK code: 200 - duration: 89.772417ms + duration: 53.982611ms - id: 45 request: proto: HTTP/1.1 @@ -2261,8 +2269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/private_nics method: GET response: proto: HTTP/2.0 @@ -2270,20 +2278,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2216 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:50.563010+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2216" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:51 GMT + - Wed, 08 Oct 2025 23:05:30 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2291,52 +2301,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e4f4143-e068-42da-a391-11fe2a3c30dd + - 65e4d2ba-bd28-46e8-8241-5b8f0a3de186 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 91.28375ms + duration: 46.82852ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2374 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/action","href_result":"/servers/dcac9f19-a686-452a-a98f-209e9fd36f02","id":"01934b1f-5569-4a6d-9365-d87087e6c0a5","progress":0,"started_at":"2025-09-08T07:23:51.227908+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2374" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:51 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/01934b1f-5569-4a6d-9365-d87087e6c0a5 + - Wed, 08 Oct 2025 23:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,10 +2352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d59e3d64-6e87-4e62-b228-207eb3568357 - status: 202 Accepted - code: 202 - duration: 308.395542ms + - e3f9b764-3f0f-455b-87bb-9785d679be31 + status: 200 OK + code: 200 + duration: 94.967998ms - id: 47 request: proto: HTTP/1.1 @@ -2363,8 +2371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2372,20 +2380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2238 + content_length: 2374 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:51.069587+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2238" + - "2374" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:51 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2393,10 +2401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f50018c-94f4-4ff1-8680-80c536a31233 + - 230905a3-e395-4192-9952-98a4a6d6791c status: 200 OK code: 200 - duration: 128.120416ms + duration: 93.001164ms - id: 48 request: proto: HTTP/1.1 @@ -2412,8 +2420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 method: GET response: proto: HTTP/2.0 @@ -2421,20 +2429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2341 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:51.069587+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2341" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:23:56 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,10 +2450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7b98f7-1bea-49c1-8b19-a02b6ae2703f + - 44e13ad1-d1f0-4e9b-a7aa-7c7ced652f9f status: 200 OK code: 200 - duration: 149.67275ms + duration: 50.000646ms - id: 49 request: proto: HTTP/1.1 @@ -2461,8 +2469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/user_data method: GET response: proto: HTTP/2.0 @@ -2470,20 +2478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:59.648819+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2372" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2491,10 +2499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e281acef-075a-4e9e-9435-c6a9c244bf40 + - 580071cd-c549-4df0-8a3a-65431410ab11 status: 200 OK code: 200 - duration: 141.915833ms + duration: 49.290982ms - id: 50 request: proto: HTTP/1.1 @@ -2510,8 +2518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/private_nics method: GET response: proto: HTTP/2.0 @@ -2519,20 +2527,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:59.648819+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2372" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:05:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2540,10 +2550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f4e8446-e902-4ccf-9689-988d8cec9713 + - 5b34c4f1-3afd-4936-b25f-97b3e1dc7437 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 129.199375ms + duration: 55.58538ms - id: 51 request: proto: HTTP/1.1 @@ -2559,8 +2571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/370d86e9-aa12-4d26-b543-1de6d2bf9787 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2568,20 +2580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 2374 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "2374" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:01 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2589,48 +2601,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8b43e6d-a40d-4847-b802-8109ce2b4f56 + - 96fe00b5-5b47-4713-afcd-f1cc4ac0f7c2 status: 200 OK code: 200 - duration: 59.92925ms + duration: 109.010959ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/user_data - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 353 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action","href_result":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","id":"964ce0fe-0462-4d0d-909c-0f97de9fe135","progress":0,"started_at":"2025-10-08T23:05:31.645268+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:05:31 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/964ce0fe-0462-4d0d-909c-0f97de9fe135 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2638,10 +2654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 751a6e65-989f-4998-847e-a1980a611c73 - status: 200 OK - code: 200 - duration: 62.628083ms + - cb97370d-68c6-4d9b-811a-534f68af1f1d + status: 202 Accepted + code: 202 + duration: 210.352021ms - id: 53 request: proto: HTTP/1.1 @@ -2657,8 +2673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2666,22 +2682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2337 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:31.492279+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2337" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2689,12 +2703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ea44ab9-4e15-4c42-9b92-72c2a0863308 - X-Total-Count: - - "0" + - 866cda88-a021-491d-ae2e-eaaffa8cf71d status: 200 OK code: 200 - duration: 52.328292ms + duration: 121.527072ms - id: 54 request: proto: HTTP/1.1 @@ -2710,8 +2722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -2719,20 +2731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:59.648819+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","type":"not_found"}' headers: Content-Length: - - "2372" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2740,10 +2752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be25b0b5-bd4d-4fc2-bc0d-1a3df5ed5998 - status: 200 OK - code: 200 - duration: 118.755833ms + - bfc40ce5-73f9-49d6-a2d0-c1ef948b01e1 + status: 404 Not Found + code: 404 + duration: 49.424146ms - id: 55 request: proto: HTTP/1.1 @@ -2759,8 +2771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 method: GET response: proto: HTTP/2.0 @@ -2768,20 +2780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:59.648819+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d5810871-f493-42c7-a51f-5cc907635034","type":"not_found"}' headers: Content-Length: - - "2372" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2789,10 +2801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d9a2ea8-c1c4-4967-b9c2-df0850ba6994 - status: 200 OK - code: 200 - duration: 102.321584ms + - 787e7337-735d-4715-9daa-d8b8b7250256 + status: 404 Not Found + code: 404 + duration: 27.709194ms - id: 56 request: proto: HTTP/1.1 @@ -2808,8 +2820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/370d86e9-aa12-4d26-b543-1de6d2bf9787 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 method: GET response: proto: HTTP/2.0 @@ -2817,20 +2829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 127 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"d5810871-f493-42c7-a51f-5cc907635034","type":"not_found"}' headers: Content-Length: - - "521" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:02 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2838,10 +2850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac5572af-ff6e-47ab-91ad-2b71ffc4630a - status: 200 OK - code: 200 - duration: 59.932791ms + - 64bc9e11-2f32-4a01-bb6d-6320e2dcbb77 + status: 404 Not Found + code: 404 + duration: 44.672104ms - id: 57 request: proto: HTTP/1.1 @@ -2857,894 +2869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8ad9344-435c-4ba3-88e9-f3113d3ea0d0 - status: 200 OK - code: 200 - duration: 51.008875ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:02 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7a10ea2-0b56-4ea2-9c44-4aa69ddda2d2 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 65.935ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2372 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:23:59.648819+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2372" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 92c42c1a-b1c2-4c8c-8f02-749da270c5e7 - status: 200 OK - code: 200 - duration: 103.716042ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/dcac9f19-a686-452a-a98f-209e9fd36f02/action","href_result":"/servers/dcac9f19-a686-452a-a98f-209e9fd36f02","id":"ee0cd182-095a-450e-ae85-ce62e889737e","progress":0,"started_at":"2025-09-08T07:24:03.097012+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ee0cd182-095a-450e-ae85-ce62e889737e - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b11c05d8-9ca5-48b0-8389-7ee9d59203b9 - status: 202 Accepted - code: 202 - duration: 175.993209ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e687849e-20ca-4495-901a-c5df79e996bf - status: 200 OK - code: 200 - duration: 107.227917ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 637af5f3-b5f1-4fad-80ad-27fc007dee59 - status: 200 OK - code: 200 - duration: 116.775417ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0374dc6a-ef83-4559-8cd2-2299f41c8ed9 - status: 200 OK - code: 200 - duration: 157.372084ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72d42906-d854-45f5-89fd-910f4607d51b - status: 200 OK - code: 200 - duration: 99.18825ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eecd0874-c078-4e6e-b91e-75602c28c20f - status: 200 OK - code: 200 - duration: 175.638291ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c4b24b6b-0ba3-4612-86fa-81d676b6e5c4 - status: 200 OK - code: 200 - duration: 114.036333ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c534b57-366a-4258-8d13-883b83837107 - status: 200 OK - code: 200 - duration: 111.853375ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2332 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"802","node_id":"33","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:02.971707+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2332" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 26012b4e-4df0-467e-b80f-8e4614df4350 - status: 200 OK - code: 200 - duration: 102.114416ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:40.938477+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2216" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aae16f4c-3bb9-4df4-9d32-77b6202eeac9 - status: 200 OK - code: 200 - duration: 183.932125ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2216 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-08T07:23:50.563010+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-crazy-mccarthy","id":"dcac9f19-a686-452a-a98f-209e9fd36f02","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:39.547126+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"4a4d2994-e7e0-4b29-a760-36235e6ba258","modification_date":"2025-06-25T15:47:39.547126+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"37000787-865a-4306-8ac4-5a0b2e2fcbbe","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:c7:26:77","maintenances":[],"modification_date":"2025-09-08T07:24:40.938477+00:00","name":"tf-srv-crazy-mccarthy","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:23:50.563010+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":{"id":"dcac9f19-a686-452a-a98f-209e9fd36f02","name":"tf-srv-crazy-mccarthy"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2216" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3c07b2a8-616f-4d25-b2cf-a178fd9b8822 - status: 200 OK - code: 200 - duration: 116.637458ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 58cf7738-7cb7-4c82-94ee-8d6ac92b764a - status: 204 No Content - code: 204 - duration: 126.820375ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dcac9f19-a686-452a-a98f-209e9fd36f02","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ee124a46-83fd-409a-a610-59f7fbcd25f0 - status: 404 Not Found - code: 404 - duration: 76.218292ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/370d86e9-aa12-4d26-b543-1de6d2bf9787 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:23:50.563010+00:00","export_uri":null,"id":"370d86e9-aa12-4d26-b543-1de6d2bf9787","modification_date":"2025-09-08T07:24:44.450864+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e226adbd-772e-4a0c-a12d-943910266f62 - status: 200 OK - code: 200 - duration: 54.171167ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/370d86e9-aa12-4d26-b543-1de6d2bf9787 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 08 Sep 2025 07:24:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e66939b-1d78-454d-a1dc-7f715b991e79 - status: 204 No Content - code: 204 - duration: 138.33425ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dcac9f19-a686-452a-a98f-209e9fd36f02 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd method: GET response: proto: HTTP/2.0 @@ -3754,7 +2880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dcac9f19-a686-452a-a98f-209e9fd36f02","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","type":"not_found"}' headers: Content-Length: - "143" @@ -3763,9 +2889,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:24:44 GMT + - Wed, 08 Oct 2025 23:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3773,7 +2899,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258bd7a2-c043-44e0-b3a7-3b6cdaa25d66 + - 3a2822dd-9d36-4ae9-8fa7-8a5318a654b4 status: 404 Not Found code: 404 - duration: 68.935916ms + duration: 54.828857ms diff --git a/internal/services/instance/testdata/server-state1.cassette.yaml b/internal/services/instance/testdata/server-state1.cassette.yaml index 7af530cdf..4b2c72de5 100644 --- a/internal/services/instance/testdata/server-state1.cassette.yaml +++ b/internal/services/instance/testdata/server-state1.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -27,7 +27,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf87a6f1-2be7-4b2f-a5e4-103220a0b74b + - 2f356086-c971-4b47-a89f-bc7811e1e196 status: 200 OK code: 200 - duration: 501.03625ms + duration: 42.562828ms - id: 1 request: proto: HTTP/1.1 @@ -65,8 +65,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:45 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d048e93-c0ed-46d3-b086-4b0d45b414d8 + - eecdd388-89cd-4fa7-aef8-fb145a96e954 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 99.939231ms + duration: 74.750264ms - id: 2 request: proto: HTTP/1.1 @@ -114,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -123,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,52 +150,54 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73c3ec90-aa09-4575-b3b5-d8c73b476a7c + - d5241058-b930-4589-878f-16536c240263 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 84.365954ms + duration: 46.580901ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 298 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-awesome-aryabhata","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","state"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2219 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:04:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,54 +205,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b300b810-0828-44c3-88e7-0a64d8d96f1b - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 129.161206ms + - 83bbe66a-4f32-4b11-9107-eb90e2bc8d81 + status: 201 Created + code: 201 + duration: 357.900418ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 297 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-nostalgic-colden","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","state"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.146093+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2433f8be-ffd0-4819-9879-754865bbe8cc - status: 201 Created - code: 201 - duration: 604.038376ms + - 1bb0c82c-3859-4443-9589-b95557ab6ac4 + status: 200 OK + code: 200 + duration: 95.1855ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.146093+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,48 +303,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1a696bf-7185-4f26-ba3d-918337440b0e + - 5ddc3b3b-be39-4a0f-91bf-866996f8e741 status: 200 OK code: 200 - duration: 207.223959ms + duration: 93.362442ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.146093+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"9a469ece-e6bd-4340-b18a-293a7c54e85d","progress":0,"started_at":"2025-10-08T23:04:46.371780+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9a469ece-e6bd-4340-b18a-293a7c54e85d Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,52 +356,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 801542ac-84cb-491d-a45c-97041a4bd5e7 - status: 200 OK - code: 200 - duration: 173.114288ms + - 14f17d2b-bcf6-4107-8ca4-6f9220e360b3 + status: 202 Accepted + code: 202 + duration: 182.578504ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2241 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ec869028-6c10-4527-b866-27bfe5971c81/action","href_result":"/servers/ec869028-6c10-4527-b866-27bfe5971c81","id":"f03824cf-8826-490f-91be-a68922e5f013","progress":0,"started_at":"2025-06-10T15:29:11.021205+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f03824cf-8826-490f-91be-a68922e5f013 + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd99d110-f408-4026-a3eb-c17cb18a321c - status: 202 Accepted - code: 202 - duration: 237.063902ms + - 02f1fbdf-5215-4bde-b4d0-d33a6ba96a7d + status: 200 OK + code: 200 + duration: 78.67265ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2240 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.832850+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2240" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff0f3e8c-eb42-4795-8fa1-bc49e8deab4a + - e7194102-6396-4421-9ccd-189369d1a64e status: 200 OK code: 200 - duration: 199.682616ms + duration: 106.909025ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.832850+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d604dc0a-9921-4523-8ec0-79a5beb7eb58 + - 02cc39fc-697d-4eb8-9dbb-7bdaefde3297 status: 200 OK code: 200 - duration: 156.427563ms + duration: 97.274365ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:10.832850+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:21 GMT + - Wed, 08 Oct 2025 23:05:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9fef8fe-14a9-4a70-bbff-ccd47372d75c + - fb59dabb-d11e-4add-95e1-73b76254b52a status: 200 OK code: 200 - duration: 148.040812ms + duration: 104.141594ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2376 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cbd3e9c-f85b-4d15-9b15-3e707254bc09 + - b5be25a3-c925-4783-a1da-123a79463506 status: 200 OK code: 200 - duration: 158.110498ms + duration: 80.066254ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2376 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Wed, 08 Oct 2025 23:05:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db2e6147-d9d0-4808-9485-25aef35f893a + - 3e6f74ed-8d41-4f91-ae8b-c44aabc8d873 status: 200 OK code: 200 - duration: 227.424352ms + duration: 101.473199ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5041f3f2-f28e-43e7-87b4-ea12954a1165 + - 781d420e-7866-460f-a5ee-824db94501ea status: 200 OK code: 200 - duration: 144.885134ms + duration: 59.108443ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfbabbf3-e7c0-471a-b54d-2378697c7928 + - b08c9aa4-8d90-4613-8de5-d0eeab934f14 status: 200 OK code: 200 - duration: 91.351525ms + duration: 51.505819ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98099e4f-5621-41ed-bb5f-a5bd712ef3c0 + - f424ccc5-7640-48c7-b300-9bcda87af39c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 156.764393ms + duration: 54.572038ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2376 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ce30413-9b4c-4b2f-9e9b-d0bc577dcdbe + - 4e73d2cd-da49-46fe-bb9a-bf8fe3781995 status: 200 OK code: 200 - duration: 158.17042ms + duration: 96.943036ms - id: 17 request: proto: HTTP/1.1 @@ -869,7 +869,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c80d37c2-eea0-4d9a-9e37-88c88bfc874b + - 652ea8f6-ff67-4b52-a75b-f75294f78ab5 status: 200 OK code: 200 - duration: 92.999054ms + duration: 43.480132ms - id: 18 request: proto: HTTP/1.1 @@ -918,7 +918,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74f65a30-c665-46f9-929b-394a6998395f + - bc646dde-bb36-40d1-92cb-d4a2777df327 status: 200 OK code: 200 - duration: 77.386094ms + duration: 36.209304ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2376 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c89b98c2-8c0e-487e-afeb-0847a3aa375f + - 1c6e4ca9-6e53-4077-b771-0c953bef0042 status: 200 OK code: 200 - duration: 209.377997ms + duration: 100.790203ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53138dfe-b2fa-4598-aa9c-e2ad1ff26791 + - 2a90cb77-0239-4b6b-b976-46b33ad44d18 status: 200 OK code: 200 - duration: 106.280423ms + duration: 62.44317ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -1085,9 +1085,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23e21fd3-4847-4c28-bbe7-7ad3d3b59f6d + - 4c3cee57-1b38-4db7-bd0d-f0f00ce1ce9e status: 200 OK code: 200 - duration: 164.985571ms + duration: 58.334208ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -1134,11 +1134,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,12 +1146,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47dd3afb-c50c-4c07-bc46-4b294ec40bf0 + - 2be4f2b1-8ebb-42af-a554-a6be0cd54567 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 110.759463ms + duration: 62.518238ms - id: 23 request: proto: HTTP/1.1 @@ -1167,7 +1167,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79f169fc-a330-4c65-8bee-12e1d6a8b70b + - bb1b968c-40b9-4ea8-9b04-01ab2ffd3f2a status: 200 OK code: 200 - duration: 79.233638ms + duration: 51.642271ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2376 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e8f4088-53fb-4d76-937e-a11053658668 + - fb420a2d-b72e-4adb-8930-c1e77aa23390 status: 200 OK code: 200 - duration: 75.865361ms + duration: 89.768566ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 524 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aafa52c0-ca39-4e36-852e-7cc67a7186d8 + - 58fdb824-40bd-45ad-a6ad-f0a419037301 status: 200 OK code: 200 - duration: 208.952759ms + duration: 52.452262ms - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -1323,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afac5d9b-a7e0-496d-859d-0b48e7fae2c6 + - 9d514d99-eeb8-4124-b416-541d77dbfd84 status: 200 OK code: 200 - duration: 129.524987ms + duration: 53.470388ms - id: 27 request: proto: HTTP/1.1 @@ -1363,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1395,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d1c1331-a400-402d-94d8-87c5eea4a08e + - 83992f30-31cd-4923-bf96-89f64cdfd410 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 119.227765ms + duration: 61.059316ms - id: 28 request: proto: HTTP/1.1 @@ -1412,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1421,22 +1425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2376 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,12 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90a48ec-d7e9-4e26-be09-a7879efe130f - X-Total-Count: - - "0" + - 6e68a49d-46d7-4d97-8cc0-a76d556a2e55 status: 200 OK code: 200 - duration: 140.140576ms + duration: 89.188652ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1474,20 +1474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2376 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,48 +1495,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34e7c184-2c93-4121-a8c8-b23b070a9bd5 + - ce03555f-c474-45be-914d-2d351a91db9f status: 200 OK code: 200 - duration: 63.397769ms + duration: 106.078819ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 26 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"stop_in_place"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"42997bf3-4bb0-4162-9afb-a8914ccb1dae","progress":0,"started_at":"2025-10-08T23:05:08.723619+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/42997bf3-4bb0-4162-9afb-a8914ccb1dae Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42fd2c2f-eedf-4a45-9cc7-41293b5c84c2 - status: 200 OK - code: 200 - duration: 217.327335ms + - f96be82e-2275-40e1-9c34-98b1f03e46c2 + status: 202 Accepted + code: 202 + duration: 176.790935ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1572,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:22.728434+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,52 +1597,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fbf3d04-06fb-403d-a7ea-03adaf7b147a + - 59288ad7-7ff2-417b-8297-3b71fc4f677f status: 200 OK code: 200 - duration: 218.533727ms + duration: 101.539331ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 26 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"stop_in_place"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2345 uncompressed: false - body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/ec869028-6c10-4527-b866-27bfe5971c81/action","href_result":"/servers/ec869028-6c10-4527-b866-27bfe5971c81","id":"d0cf8998-833b-498d-a0f5-f1fd5f71fde7","progress":0,"started_at":"2025-06-10T15:29:32.718905+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d0cf8998-833b-498d-a0f5-f1fd5f71fde7 + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a68b90e-5c7f-4244-b3a8-dbb13681434d - status: 202 Accepted - code: 202 - duration: 253.324426ms + - 8b4deafc-993a-48fd-8e72-2f5d5f94979c + status: 200 OK + code: 200 + duration: 78.71551ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1674,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:05:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eda1a08-13b9-4767-a013-046e039373c7 + - 4eabd3d8-1ac3-4387-a7d7-33c1e5fa88c4 status: 200 OK code: 200 - duration: 216.104191ms + duration: 89.085446ms - id: 34 request: proto: HTTP/1.1 @@ -1714,8 +1714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1723,20 +1723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:38 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 411f1435-755c-48ba-933f-249a7f5d9840 + - 99c9db26-8c44-41ce-8ae6-92eb1d63fdcb status: 200 OK code: 200 - duration: 174.08212ms + duration: 111.557199ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1772,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Wed, 08 Oct 2025 23:05:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc1cebb2-e5e5-4d4e-b314-10b5221ab54b + - 3bbdabc7-8bec-4061-9d5f-38fbe93d2cfa status: 200 OK code: 200 - duration: 280.1107ms + duration: 82.131802ms - id: 36 request: proto: HTTP/1.1 @@ -1812,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1821,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Wed, 08 Oct 2025 23:05:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43dad11c-b8bc-43e2-bb60-e609b902dd19 + - 271e4f74-1cb4-4960-82bd-5924cc22ac57 status: 200 OK code: 200 - duration: 155.757504ms + duration: 108.309217ms - id: 37 request: proto: HTTP/1.1 @@ -1861,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1870,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:54 GMT + - Wed, 08 Oct 2025 23:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aa93adb-18cf-4ebb-becc-f98c1a0a986a + - c50dc3e9-d147-4ad0-9126-478612e68aff status: 200 OK code: 200 - duration: 784.275376ms + duration: 89.779424ms - id: 38 request: proto: HTTP/1.1 @@ -1910,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1919,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:59 GMT + - Wed, 08 Oct 2025 23:05:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c01ee5d4-7d13-4e03-96d6-8ac381653880 + - 24f72f5e-a61a-4d86-a268-b6253e1e20ba status: 200 OK code: 200 - duration: 187.299808ms + duration: 89.070049ms - id: 39 request: proto: HTTP/1.1 @@ -1959,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -1968,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:29:32.560734+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:05:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feeb9731-c77e-4336-a9ae-0af71000dc8f + - 10f866b7-c682-49da-bfa4-7feeab834700 status: 200 OK code: 200 - duration: 171.067185ms + duration: 91.610863ms - id: 40 request: proto: HTTP/1.1 @@ -2008,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4a5bc95-67ef-4064-8656-46aca3d5628c + - 37bd6c4f-82e8-4c25-b03c-a768894d2f9e status: 200 OK code: 200 - duration: 252.60347ms + duration: 93.087376ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0320a7f-e832-426d-9674-a7959b2a7277 + - 63ca1839-4240-4139-8c76-dbc2ef8db35a status: 200 OK code: 200 - duration: 190.701827ms + duration: 94.593205ms - id: 42 request: proto: HTTP/1.1 @@ -2106,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2115,20 +2115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09a75cfc-7c76-46df-8cb8-18c1595de4fb + - 27b0b934-0b94-4af9-a48c-43a480ba2edb status: 200 OK code: 200 - duration: 227.977265ms + duration: 105.460713ms - id: 43 request: proto: HTTP/1.1 @@ -2155,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -2164,20 +2164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f86dda58-a828-488d-b2b2-cb5eb31b7c31 + - 63420696-336d-453b-80e1-d37530c742d0 status: 200 OK code: 200 - duration: 156.831747ms + duration: 55.934701ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -2224,9 +2224,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2410222f-a332-4b0d-9232-5e2df302423f + - af3269a3-546d-4185-bcd0-f0b90283206a status: 200 OK code: 200 - duration: 142.738305ms + duration: 49.419023ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -2273,11 +2273,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,12 +2285,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fb86dcc-fd12-403e-82ba-03c74eac06b9 + - ff07cfd4-e263-4fa0-b035-1d1091a15ec6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 89.400845ms + duration: 48.827728ms - id: 46 request: proto: HTTP/1.1 @@ -2306,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2315,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 516b9290-f763-4ffd-b33a-fed2ab2605a3 + - c59b7a3e-eda9-43f2-8a7a-7270020b6d85 status: 200 OK code: 200 - duration: 227.159972ms + duration: 94.146298ms - id: 47 request: proto: HTTP/1.1 @@ -2355,7 +2355,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2366,7 +2366,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -2375,9 +2375,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 136fe40e-34d2-4e7a-9efb-8921b836b6e5 + - 0ea5d4c9-33ed-4c61-9f06-e26b15952b17 status: 200 OK code: 200 - duration: 115.414371ms + duration: 52.845279ms - id: 48 request: proto: HTTP/1.1 @@ -2404,7 +2404,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2415,7 +2415,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -2424,9 +2424,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e1fde96-92e9-420a-8c51-9496a64f8052 + - cac5b98c-fec9-4bf3-ac6e-5bf4c01783dd status: 200 OK code: 200 - duration: 120.459303ms + duration: 41.23235ms - id: 49 request: proto: HTTP/1.1 @@ -2453,8 +2453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2462,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 906bb089-2e65-42ac-8a87-05aa206bc244 + - 0f0f7b3f-b22e-4ac1-bdf0-26fec7263369 status: 200 OK code: 200 - duration: 214.212891ms + duration: 105.087421ms - id: 50 request: proto: HTTP/1.1 @@ -2502,8 +2502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -2511,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 524 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbcb1a13-9b9a-46e9-ae7e-b95f331b299f + - 202d79ae-19ef-45ee-952d-d6e9d286c5df status: 200 OK code: 200 - duration: 129.679143ms + duration: 63.91914ms - id: 51 request: proto: HTTP/1.1 @@ -2551,8 +2551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -2571,9 +2571,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,10 +2581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d191ca4-426c-4293-8099-62f2506efe37 + - 3b1075af-b611-46b2-886b-f598a4d7b57d status: 200 OK code: 200 - duration: 160.503011ms + duration: 60.03203ms - id: 52 request: proto: HTTP/1.1 @@ -2600,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -2620,11 +2620,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2632,12 +2632,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60734793-19c8-45dc-8379-023662925183 + - 44e72cec-0cde-4482-ad31-94f5bdb03fd2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 180.467623ms + duration: 69.001233ms - id: 53 request: proto: HTTP/1.1 @@ -2653,7 +2653,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2664,7 +2664,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -2673,9 +2673,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60a8e3c1-a4d3-451e-b256-6e153ea4dffc + - af7259fc-9021-4e10-96cb-948c108cc75d status: 200 OK code: 200 - duration: 74.178456ms + duration: 44.425294ms - id: 54 request: proto: HTTP/1.1 @@ -2702,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2711,20 +2711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2381 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,10 +2732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbc202c0-4b19-4f05-aa19-3c0708161b11 + - a4976071-6b22-4f57-a092-c5d5aac7d599 status: 200 OK code: 200 - duration: 77.912118ms + duration: 89.025ms - id: 55 request: proto: HTTP/1.1 @@ -2751,8 +2751,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -2760,20 +2760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 524 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2781,10 +2781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c174b35e-9f65-4d40-8006-0eff557098e6 + - 3c38f5c9-0b6f-4135-ba17-f2b7dc9c1403 status: 200 OK code: 200 - duration: 231.595971ms + duration: 67.71478ms - id: 56 request: proto: HTTP/1.1 @@ -2800,8 +2800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -2809,20 +2809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2830,10 +2830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9950161e-adaa-4c1a-8a8b-688626372ae4 + - d26a2c59-9d17-4f9a-a1c7-aa3d8645e44b status: 200 OK code: 200 - duration: 151.712946ms + duration: 54.119399ms - id: 57 request: proto: HTTP/1.1 @@ -2849,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -2858,20 +2858,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:56 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,10 +2881,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4f53fe8-21f2-402d-a0b6-6c07e52e75c0 + - a9327984-2a7f-40b8-b518-90591b8cd1d4 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 191.961849ms + duration: 59.99418ms - id: 58 request: proto: HTTP/1.1 @@ -2898,8 +2902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2907,22 +2911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2381 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2930,12 +2932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a910fe8-1a9b-4c00-8f14-c58ccb7340b2 - X-Total-Count: - - "0" + - 94b039bc-de91-4c41-bc37-57aba0acd773 status: 200 OK code: 200 - duration: 157.050476ms + duration: 83.549268ms - id: 59 request: proto: HTTP/1.1 @@ -2951,8 +2951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -2960,20 +2960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2381 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 08 Oct 2025 23:05:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2981,48 +2981,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fb74b19-ffbb-4882-af6e-24c28cbd96d9 + - bcd408db-0a7c-40e4-9851-5187b684633a status: 200 OK code: 200 - duration: 71.744862ms + duration: 93.741296ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 360 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"6169caa2-ab8e-46b9-8dc4-ae026c3f36ac","progress":0,"started_at":"2025-10-08T23:05:56.904388+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "360" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 08 Oct 2025 23:05:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6169caa2-ab8e-46b9-8dc4-ae026c3f36ac Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3030,10 +3034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a957ea65-faa1-4c29-be9c-f94013010905 - status: 200 OK - code: 200 - duration: 211.440851ms + - 382b6f76-77f7-47b0-9fb2-5697a4b80054 + status: 202 Accepted + code: 202 + duration: 167.091994ms - id: 61 request: proto: HTTP/1.1 @@ -3049,8 +3053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3058,20 +3062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2379 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2379" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3079,52 +3083,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08c7a070-768d-432f-a3b8-c3c6fa7317e6 + - 96fffe2a-11a8-4e30-866b-f0a1b43518e3 status: 200 OK code: 200 - duration: 220.907565ms + duration: 97.051908ms - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 2376 uncompressed: false - body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/ec869028-6c10-4527-b866-27bfe5971c81/action","href_result":"/servers/ec869028-6c10-4527-b866-27bfe5971c81","id":"883bdcc6-dd9b-4d7e-9bfe-5b9e275a4eec","progress":0,"started_at":"2025-06-10T15:30:16.423016+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:58.063506+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "360" + - "2376" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/883bdcc6-dd9b-4d7e-9bfe-5b9e275a4eec + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,48 +3132,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceed69d7-1252-4f2d-b898-3065642036d3 - status: 202 Accepted - code: 202 - duration: 329.080124ms + - 905aba22-f990-459c-b2ca-1cfe86661f38 + status: 200 OK + code: 200 + duration: 94.280822ms - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 352 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:05.780627+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"10f0e62d-c4e2-4563-b407-63a1279058f8","progress":0,"started_at":"2025-10-08T23:06:02.298769+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10f0e62d-c4e2-4563-b407-63a1279058f8 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,10 +3185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c744dd2f-b818-4246-b2fb-1f23d6e1ed6e - status: 200 OK - code: 200 - duration: 214.443904ms + - a52bf936-fec3-4e85-8f25-b0b67fdbc255 + status: 202 Accepted + code: 202 + duration: 211.311581ms - id: 64 request: proto: HTTP/1.1 @@ -3200,8 +3204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3209,20 +3213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:18.482823+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 08 Oct 2025 23:06:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,52 +3234,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 852d32b9-66d1-42b8-a243-8fded69be1e8 + - 0a734d9b-352f-4af7-b8b4-f6310e27fee1 status: 200 OK code: 200 - duration: 191.525551ms + duration: 84.84734ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 2336 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/ec869028-6c10-4527-b866-27bfe5971c81/action","href_result":"/servers/ec869028-6c10-4527-b866-27bfe5971c81","id":"36ecdfab-a802-41b9-b884-c554d10ca5a8","progress":0,"started_at":"2025-06-10T15:30:22.237033+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/36ecdfab-a802-41b9-b884-c554d10ca5a8 + - Wed, 08 Oct 2025 23:06:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,10 +3283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f97d6aa5-6fb6-433e-a948-a0d694622651 - status: 202 Accepted - code: 202 - duration: 301.210277ms + - cf5804e1-330d-4128-a823-f3b91f29b790 + status: 200 OK + code: 200 + duration: 91.959351ms - id: 66 request: proto: HTTP/1.1 @@ -3302,8 +3302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3311,20 +3311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 08 Oct 2025 23:06:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,10 +3332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48657996-9263-4d13-9ac1-7883e02310f2 + - 53bf31e2-f4f9-4a93-b04c-40337ca0d674 status: 200 OK code: 200 - duration: 244.801486ms + duration: 102.458626ms - id: 67 request: proto: HTTP/1.1 @@ -3351,8 +3351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3360,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:06:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,10 +3381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb960d2-b93b-42bc-bb5d-946130ae676b + - 7f065ca5-0ecb-4287-8e06-5c99f842ccb5 status: 200 OK code: 200 - duration: 263.909331ms + duration: 94.641154ms - id: 68 request: proto: HTTP/1.1 @@ -3400,8 +3400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3409,20 +3409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,10 +3430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1e3a156-cf11-43fe-a87a-354b48b43b47 + - b951e78c-1979-417e-863e-30a972c9d3bc status: 200 OK code: 200 - duration: 215.684358ms + duration: 83.699518ms - id: 69 request: proto: HTTP/1.1 @@ -3449,8 +3449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3458,20 +3458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:38 GMT + - Wed, 08 Oct 2025 23:06:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,10 +3479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01b76cb5-f6d5-44c0-b0c9-5e36ac9d517d + - 19a72571-5eea-48bf-8864-af124cbea819 status: 200 OK code: 200 - duration: 183.091713ms + duration: 102.025848ms - id: 70 request: proto: HTTP/1.1 @@ -3498,8 +3498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3507,20 +3507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:43 GMT + - Wed, 08 Oct 2025 23:06:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,10 +3528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6daa33e3-ccb9-44e2-991c-9800ed60bd38 + - ccea8bef-732e-4977-a799-3bfaab9be98e status: 200 OK code: 200 - duration: 159.686348ms + duration: 83.900517ms - id: 71 request: proto: HTTP/1.1 @@ -3547,8 +3547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3556,20 +3556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:48 GMT + - Wed, 08 Oct 2025 23:06:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,10 +3577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fa66fc3-01e3-4e13-ba0e-87ac1610566b + - 5dc09522-e949-4dea-8c0b-e36b68090d8c status: 200 OK code: 200 - duration: 546.285099ms + duration: 100.417665ms - id: 72 request: proto: HTTP/1.1 @@ -3596,8 +3596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3605,20 +3605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:54 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,10 +3626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f1481f9-98c9-49d6-b917-5c01596ea8c6 + - 2147e325-2aa1-4090-9f21-90bcb403f078 status: 200 OK code: 200 - duration: 210.234266ms + duration: 84.78985ms - id: 73 request: proto: HTTP/1.1 @@ -3645,8 +3645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3654,20 +3654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2334 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"2002","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:30:22.002050+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2334" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3675,10 +3675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 157267fd-c4c9-44a2-8afb-a47b03cc74db + - 844294f1-aaa6-44d6-aa79-998b54dd9936 status: 200 OK code: 200 - duration: 199.571698ms + duration: 90.704975ms - id: 74 request: proto: HTTP/1.1 @@ -3694,8 +3694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3703,20 +3703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 2219 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3724,10 +3724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 358d597b-57b4-4b7b-bdba-df9725fc802b + - 1cdf2011-35c5-47fc-b5d7-931e69c992c7 status: 200 OK code: 200 - duration: 157.209512ms + duration: 77.032935ms - id: 75 request: proto: HTTP/1.1 @@ -3743,8 +3743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -3752,20 +3752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 524 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3773,10 +3773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4aab356-7a90-4a3a-b039-b3b27cee04ad + - 5733c024-669f-4df5-8d56-1163a69aa99d status: 200 OK code: 200 - duration: 156.276301ms + duration: 54.466071ms - id: 76 request: proto: HTTP/1.1 @@ -3792,8 +3792,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -3801,20 +3801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2218" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3822,10 +3822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 647fea9d-4200-449b-a673-4b1e955f8b9f + - 47a4448f-8bc2-4d19-be52-c74f8d400373 status: 200 OK code: 200 - duration: 221.326828ms + duration: 48.874455ms - id: 77 request: proto: HTTP/1.1 @@ -3841,8 +3841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -3850,20 +3850,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Wed, 08 Oct 2025 23:06:43 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3871,10 +3873,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3368d37f-3b71-4cf5-9f88-5db1e2c97db6 + - 7ef50abb-6594-4b23-b2cf-d8104d92d47f + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 332.507045ms + duration: 55.389531ms - id: 78 request: proto: HTTP/1.1 @@ -3890,8 +3894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -3899,20 +3903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2219 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3920,10 +3924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a5287f0-4974-428e-ad53-3134e0eb1d51 + - e2f40b10-251e-42b5-a143-7b0b349cbe5b status: 200 OK code: 200 - duration: 92.877874ms + duration: 88.976134ms - id: 79 request: proto: HTTP/1.1 @@ -3939,8 +3943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3948,22 +3952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3971,12 +3973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c945bb2-012f-40fd-8ba2-f6925ab29387 - X-Total-Count: - - "0" + - 73b067b3-5190-4d95-9836-ec436d5133ca status: 200 OK code: 200 - duration: 87.951745ms + duration: 54.587446ms - id: 80 request: proto: HTTP/1.1 @@ -3992,8 +3992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -4001,20 +4001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2218" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:05 GMT + - Wed, 08 Oct 2025 23:06:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4022,10 +4022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5e9c9b8-80ec-4030-952d-7ad5f12ccb64 + - 065e77a1-ba19-4d4e-b2da-7cf91fcb6a84 status: 200 OK code: 200 - duration: 137.276068ms + duration: 53.79637ms - id: 81 request: proto: HTTP/1.1 @@ -4041,8 +4041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4050,20 +4050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2219 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4071,10 +4071,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 735f2d36-b810-4f71-bdc0-34b1f907f6ae + - ac361b26-8b98-4116-85ba-41f776092d1e status: 200 OK code: 200 - duration: 71.22741ms + duration: 85.015798ms - id: 82 request: proto: HTTP/1.1 @@ -4090,8 +4090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -4099,20 +4099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 524 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "524" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4120,10 +4120,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d251f1b5-a87c-49d1-8030-4cfc935de557 + - 74163845-b334-4e2c-8ae5-2a3ecc7176f7 status: 200 OK code: 200 - duration: 92.715759ms + duration: 52.155942ms - id: 83 request: proto: HTTP/1.1 @@ -4139,8 +4139,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data method: GET response: proto: HTTP/2.0 @@ -4148,20 +4148,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2218" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4169,10 +4169,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31ba4849-4f23-4dba-907b-dbb8d2248fc4 + - 1ce23a57-0a98-4d2c-8183-918985e18058 status: 200 OK code: 200 - duration: 139.958509ms + duration: 54.035553ms - id: 84 request: proto: HTTP/1.1 @@ -4188,8 +4188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics method: GET response: proto: HTTP/2.0 @@ -4197,20 +4197,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:06:44 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4218,10 +4220,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b02898-039a-4ebc-b7c8-b64cbac718ed + - 1681eda1-2188-4675-af49-ab80018aca39 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 162.03971ms + duration: 47.675194ms - id: 85 request: proto: HTTP/1.1 @@ -4237,8 +4241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4246,20 +4250,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2219 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2219" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4267,50 +4271,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a183df8-d1d9-410b-b3fd-6aa5e595c6d7 + - 4a86ad0a-b582-4b0e-86c9-76d9cf8af5ad status: 200 OK code: 200 - duration: 107.288649ms + duration: 101.732718ms - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81/private_nics - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 357 uncompressed: false - body: '{"private_nics":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"82eb910e-8176-4766-94c3-0893d6b674ba","progress":0,"started_at":"2025-10-08T23:06:44.681044+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:06:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/82eb910e-8176-4766-94c3-0893d6b674ba Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4318,12 +4324,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 879bd99c-3dd2-425f-8daf-bb9126321e68 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 120.486331ms + - 8b1b9b3f-38df-428d-b9f6-44163aad2c7d + status: 202 Accepted + code: 202 + duration: 197.27973ms - id: 87 request: proto: HTTP/1.1 @@ -4339,8 +4343,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4348,20 +4352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2241 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2241" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:06:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4369,10 +4373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b28f5d50-a313-4852-a9f3-9afeb1e8ba3b + - 3e6841ed-1049-4d22-a253-a9a3de72b991 status: 200 OK code: 200 - duration: 114.6315ms + duration: 92.774428ms - id: 88 request: proto: HTTP/1.1 @@ -4388,8 +4392,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4397,20 +4401,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Wed, 08 Oct 2025 23:06:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4418,10 +4422,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0331aaac-f4db-456b-a3ae-e04385727884 + - 182c82d0-ba3e-4757-b687-ba715d664380 status: 200 OK code: 200 - duration: 182.654721ms + duration: 83.392721ms - id: 89 request: proto: HTTP/1.1 @@ -4437,8 +4441,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4446,20 +4450,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2218 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:10.146093+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-nostalgic-colden","id":"ec869028-6c10-4527-b866-27bfe5971c81","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:0d","maintenances":[],"modification_date":"2025-06-10T15:31:00.345431+00:00","name":"tf-srv-nostalgic-colden","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:29:10.146093+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"ec869028-6c10-4527-b866-27bfe5971c81","name":"tf-srv-nostalgic-colden"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2218" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:06:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4467,10 +4471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2eaf65f0-4f0e-403f-8a06-4980632f0e97 + - a4431f42-936d-4fdb-b96c-33212882f3ee status: 200 OK code: 200 - duration: 162.238543ms + duration: 90.454147ms - id: 90 request: proto: HTTP/1.1 @@ -4486,27 +4490,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2375 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:56.853361+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:07:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4514,11 +4520,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437d0d63-e436-41f3-be6f-5fb2486eba5c - status: 204 No Content - code: 204 - duration: 207.096348ms + - f26a8197-5dad-422b-aa74-b26ab6d7c592 + status: 200 OK + code: 200 + duration: 82.387185ms - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"3a2ae975-4e7e-44b1-860a-7802522770ed","progress":0,"started_at":"2025-10-08T23:07:00.210353+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:07:00 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3a2ae975-4e7e-44b1-860a-7802522770ed + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70169436-a641-4e52-b4d9-195705808cc0 + status: 202 Accepted + code: 202 + duration: 172.832853ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4533,8 +4592,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2338 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:07:00.077136+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2338" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 08 Oct 2025 23:07:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 058bbcd6-c602-4251-961c-18ca875f6156 + status: 200 OK + code: 200 + duration: 93.246056ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4544,7 +4652,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ec869028-6c10-4527-b866-27bfe5971c81","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"60f71793-9a90-4e1c-b854-6535ead22eab","type":"not_found"}' headers: Content-Length: - "143" @@ -4553,9 +4661,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:07:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4563,11 +4671,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fccb9dc3-5be4-455c-8408-f1337c37ef6c + - 75b0a3f1-7bac-4d23-b0bb-42182901b684 status: 404 Not Found code: 404 - duration: 106.35043ms - - id: 92 + duration: 44.294069ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4582,8 +4690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 method: GET response: proto: HTTP/2.0 @@ -4591,20 +4699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:10.146093+00:00","export_uri":null,"id":"e046efe0-c8c3-4c56-876c-fda159ab5411","modification_date":"2025-06-10T15:31:09.064578+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5219332d-3299-4250-a4a0-2780c015a433","type":"not_found"}' headers: Content-Length: - - "446" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:07:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4612,11 +4720,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 353f688b-8644-42c8-8bba-1facebc3cc8a - status: 200 OK - code: 200 - duration: 139.198363ms - - id: 93 + - c2567f66-bf25-46ac-9dc4-ea7fe0e15164 + status: 404 Not Found + code: 404 + duration: 28.754682ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4631,27 +4739,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e046efe0-c8c3-4c56-876c-fda159ab5411 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 127 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"volume","resource_id":"5219332d-3299-4250-a4a0-2780c015a433","type":"not_found"}' headers: + Content-Length: + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:07:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4659,11 +4769,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a28a0c8a-d82f-4ceb-8fa0-ca7da2a29054 - status: 204 No Content - code: 204 - duration: 246.31474ms - - id: 94 + - 646d6c39-a37e-47eb-accf-fece4027e78c + status: 404 Not Found + code: 404 + duration: 23.675304ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4678,8 +4788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ec869028-6c10-4527-b866-27bfe5971c81 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab method: GET response: proto: HTTP/2.0 @@ -4689,7 +4799,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ec869028-6c10-4527-b866-27bfe5971c81","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"60f71793-9a90-4e1c-b854-6535ead22eab","type":"not_found"}' headers: Content-Length: - "143" @@ -4698,9 +4808,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:07:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4708,7 +4818,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd20be61-d821-408f-a564-52248b370538 + - fcc528b7-70ab-4275-be50-16a078b4bfbb status: 404 Not Found code: 404 - duration: 136.427006ms + duration: 46.624545ms diff --git a/internal/services/instance/testdata/server-state2.cassette.yaml b/internal/services/instance/testdata/server-state2.cassette.yaml index 8e851a7bf..5f2ebe0f6 100644 --- a/internal/services/instance/testdata/server-state2.cassette.yaml +++ b/internal/services/instance/testdata/server-state2.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -27,7 +27,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3693cac6-740c-4b60-8a17-b76fc23efacf + - cdb77e4a-573e-44de-a1d9-ae92f5bb89b5 status: 200 OK code: 200 - duration: 75.140092ms + duration: 49.548328ms - id: 1 request: proto: HTTP/1.1 @@ -65,8 +65,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:44 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9823a61-db57-4dae-9915-0c86121ba83a + - 428baece-4abb-475e-a1da-a93b78580c04 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 77.834625ms + duration: 148.449222ms - id: 2 request: proto: HTTP/1.1 @@ -114,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -123,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,52 +150,54 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bffb75c8-827a-444c-8ecd-e17f247b82c7 + - d4139ffb-855f-40d8-8565-67dd6e90a072 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 95.314658ms + duration: 55.391693ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 295 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-dreamy-meitner","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","state"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 2210 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 08 Oct 2025 23:04:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,54 +205,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0211a2f-b2c5-4a06-8305-b9eb2a64da9c - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 69.4181ms + - 3b3239b2-b80e-4b3a-a7fe-9536085f5fdf + status: 201 Created + code: 201 + duration: 352.377658ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 299 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-intelligent-panini","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","state"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 2210 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bef95424-7415-48ac-b666-e5a9c40a13b2 - status: 201 Created - code: 201 - duration: 693.792286ms + - b104960a-67cb-4a44-8163-caeb27494819 + status: 200 OK + code: 200 + duration: 83.248057ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 2210 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5157e74-3eb3-40d5-8253-4d37d738463a + - 8109c7ee-9d15-43bf-a8b8-50cd67ac4f28 status: 200 OK code: 200 - duration: 184.793412ms + duration: 101.635148ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 2210 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9419c9a2-3fc7-45e8-8757-acb34ad3bf91 + - 69d7cb06-a00d-42d3-9637-b50c86e9aabd status: 200 OK code: 200 - duration: 171.870024ms + duration: 93.766792ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +371,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -380,20 +380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 521 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcb15c72-2823-4cf2-8523-ca45a6809224 + - 69b75043-3f7a-4704-ab1c-b0dc1604c05b status: 200 OK code: 200 - duration: 153.282294ms + duration: 48.113771ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data method: GET response: proto: HTTP/2.0 @@ -429,20 +429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "525" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2972d85-7e7a-48ee-9154-4f4539307a93 + - dcf77621-d981-4966-ac2a-c88ca4149f39 status: 200 OK code: 200 - duration: 113.479075ms + duration: 51.933136ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics method: GET response: proto: HTTP/2.0 @@ -478,20 +478,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:45 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +501,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2abbc7f-e85e-464c-a552-6e152e439296 + - a7e6fa51-2811-4815-8fff-1b0d81bd9d2e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 143.160171ms + duration: 49.454043ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -527,22 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2210 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc2b935f-1f1d-4b69-a0fe-bb29b7bf5359 - X-Total-Count: - - "0" + - bb864937-8c18-48a8-ad49-041878ebef01 status: 200 OK code: 200 - duration: 106.647121ms + duration: 89.696873ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2224" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bcf5085-b7c6-49ca-a2ad-b02ffba8fd9e + - 6da3147e-1484-428c-be94-cef7a3ecd278 status: 200 OK code: 200 - duration: 158.150544ms + duration: 44.102159ms - id: 12 request: proto: HTTP/1.1 @@ -620,7 +620,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbf9535f-f146-4732-986d-a9bcc243f7f0 + - e1692f28-1292-408a-a317-f7a4ced4d095 status: 200 OK code: 200 - duration: 484.027242ms + duration: 47.407131ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2210 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4af5a1c5-62dd-4244-afce-6fe219b37f87 + - 0f5c6ac9-e3bf-475a-acab-e1e51ac03e9b status: 200 OK code: 200 - duration: 109.085445ms + duration: 85.857831ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -727,20 +727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 521 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e3f9174-75de-4f90-9617-76326160acfe + - 05f930d2-68c2-4829-8e20-1b4b2e2122c6 status: 200 OK code: 200 - duration: 151.884963ms + duration: 48.843462ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data method: GET response: proto: HTTP/2.0 @@ -776,20 +776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "525" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c926acdb-635c-4c3c-bdd8-9e5620524429 + - 632cdf52-61cb-461a-9ea6-bd363de42c39 status: 200 OK code: 200 - duration: 374.662211ms + duration: 63.987526ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics method: GET response: proto: HTTP/2.0 @@ -825,20 +825,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 08 Oct 2025 23:04:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -846,10 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10c2bfd9-cd56-4418-8c45-67d9b0794b9b + - 89ae66b4-897f-4f2b-98e2-b4215a318510 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 99.41585ms + duration: 49.465824ms - id: 17 request: proto: HTTP/1.1 @@ -865,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -874,22 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,12 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ddda560-512b-442e-b72c-b17765f6785f - X-Total-Count: - - "0" + - 447e7061-9a20-4590-9b11-fd6bae279d00 status: 200 OK code: 200 - duration: 110.620935ms + duration: 56.407174ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2210 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d467eb2a-a054-4b23-8f3f-bff2710799bb + - db3744ff-b316-49cb-a76d-b06c436416f5 status: 200 OK code: 200 - duration: 105.22789ms + duration: 86.00277ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 521 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82089138-73ff-4ab8-9948-56682d3c6d02 + - 600e4bba-2f2e-4c18-b40f-43d3bb05b41d status: 200 OK code: 200 - duration: 102.976247ms + duration: 50.69934ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2224" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8ea71e5-b468-41ec-9cc9-e7e6f74e4e9f + - 5024a936-37d9-4a0d-892c-d9e93c179581 status: 200 OK code: 200 - duration: 141.788678ms + duration: 50.893981ms - id: 21 request: proto: HTTP/1.1 @@ -1065,8 +1065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics method: GET response: proto: HTTP/2.0 @@ -1074,20 +1074,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "525" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e38a5b3a-29f9-4158-a5fe-d07952da7db7 + - 71de3857-29b2-4a5a-a4d6-9d9dcfa0f725 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 122.682625ms + duration: 62.573197ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1123,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2210 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1144,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec49c760-6a90-46c9-b766-3143f7940191 + - 317ffa0a-6273-4760-ad05-d956da43f771 status: 200 OK code: 200 - duration: 152.541054ms + duration: 90.671598ms - id: 23 request: proto: HTTP/1.1 @@ -1163,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1172,22 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2210 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2210" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,50 +1197,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c04466ef-b7f2-43e8-8c20-aa425daa5e0a - X-Total-Count: - - "0" + - 5539787c-d920-477f-b4c4-d75b0031a718 status: 200 OK code: 200 - duration: 112.504958ms + duration: 91.539676ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 357 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"682ec0cb-6cd9-4cab-9eef-7a9410807b6f","progress":0,"started_at":"2025-10-08T23:04:47.536163+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/682ec0cb-6cd9-4cab-9eef-7a9410807b6f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3216f28-d48b-408d-9b0e-0d5d36222fcf - status: 200 OK - code: 200 - duration: 85.081527ms + - 8db8eebf-77cb-48b1-a344-603556a89ab0 + status: 202 Accepted + code: 202 + duration: 362.429083ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1274,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 2232 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "2232" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7eb79ef5-8d24-465c-ab27-aec8505a8931 + - 89be8956-9842-4701-a48e-0057ef480959 status: 200 OK code: 200 - duration: 187.450474ms + duration: 89.089878ms - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1323,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2224 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:05.845226+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2224" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,52 +1348,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 273fcf1c-6f9a-4d44-80a1-a0e72823f7f8 + - 90119ffc-18b0-4136-ba46-256658e73696 status: 200 OK code: 200 - duration: 156.461706ms + duration: 90.816975ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2336 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action","href_result":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8","id":"b9bab119-5707-44f6-b842-b39df726039f","progress":0,"started_at":"2025-06-10T15:29:12.922740+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b9bab119-5707-44f6-b842-b39df726039f + - Wed, 08 Oct 2025 23:04:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9101f406-e9c3-4b05-ad41-33a4ca34864d - status: 202 Accepted - code: 202 - duration: 275.799239ms + - b45a84d8-97b9-4432-b44e-a6eb9b8a3875 + status: 200 OK + code: 200 + duration: 85.530901ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1425,20 +1425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2246 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:12.718078+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2246" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5628aafa-d4dc-4433-bb64-e4c36eb9f4af + - 26174919-3892-440e-ad51-baadf1a98409 status: 200 OK code: 200 - duration: 180.067869ms + duration: 87.193669ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1474,20 +1474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2367 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:12.718078+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:06.517394+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,48 +1495,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beb3f603-97ce-4f69-af4a-aa0c6238c18c + - d9bd37af-e8e0-46df-9dae-70d32a249c39 status: 200 OK code: 200 - duration: 185.85446ms + duration: 94.090793ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 26 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"stop_in_place"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:12.718078+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"9e527b48-8a71-427f-91f6-ee0d4f7a6b01","progress":0,"started_at":"2025-10-08T23:05:08.174161+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:23 GMT + - Wed, 08 Oct 2025 23:05:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e527b48-8a71-427f-91f6-ee0d4f7a6b01 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 487ef20d-7614-4407-b584-2cf68de2e78f - status: 200 OK - code: 200 - duration: 155.725325ms + - 6c6b152d-a1b4-4147-a70c-d28b3f4d07ae + status: 202 Accepted + code: 202 + duration: 188.09772ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1572,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2380 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:24.008248+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2380" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,52 +1597,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 399e1e88-958d-461e-bb69-a37aff5c3105 + - b7b28817-5dcd-4a70-81c5-bf9f2ca5617d status: 200 OK code: 200 - duration: 218.095036ms + duration: 89.12304ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 26 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"stop_in_place"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2336 uncompressed: false - body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action","href_result":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8","id":"8b72acd2-c983-40f8-ae8e-0155fed7633a","progress":0,"started_at":"2025-06-10T15:29:28.972724+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8b72acd2-c983-40f8-ae8e-0155fed7633a + - Wed, 08 Oct 2025 23:05:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4784427-3abe-4fab-8f89-e906cd476d01 - status: 202 Accepted - code: 202 - duration: 303.182342ms + - b210e735-c979-4c80-a9e1-bbcda7758134 + status: 200 OK + code: 200 + duration: 85.285651ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1674,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:05:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79142273-56c4-4a45-8be5-b211dea133ec + - ce7c8b8f-fd80-4a71-8ff9-145d06e0e34e status: 200 OK code: 200 - duration: 294.220213ms + duration: 84.76822ms - id: 34 request: proto: HTTP/1.1 @@ -1714,8 +1714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1723,20 +1723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:34 GMT + - Wed, 08 Oct 2025 23:05:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b124986-211f-4990-bd17-33c192d4017e + - 457d3c89-03ff-4ed0-a672-f115f9c5f096 status: 200 OK code: 200 - duration: 195.539894ms + duration: 81.062985ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1772,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:39 GMT + - Wed, 08 Oct 2025 23:05:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fefa02f3-a06d-4d22-a2fe-2b70a22c0c75 + - 9fd9c54f-5f75-425a-aa68-e4e054e50c9b status: 200 OK code: 200 - duration: 205.193648ms + duration: 87.188659ms - id: 36 request: proto: HTTP/1.1 @@ -1812,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1821,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:44 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df82d8d1-03a5-4c0b-801b-a100341e1530 + - 1d85af47-d7c6-4371-a868-ea07a6417c3f status: 200 OK code: 200 - duration: 171.001693ms + duration: 89.519725ms - id: 37 request: proto: HTTP/1.1 @@ -1861,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1870,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f5558fc-c972-41e6-a855-2d2301e94de3 + - 04d2bdfd-a8ba-4350-a337-92dd8ed08dfe status: 200 OK code: 200 - duration: 206.864331ms + duration: 86.65085ms - id: 38 request: proto: HTTP/1.1 @@ -1910,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1919,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ad3092c-bbf4-46c1-b893-45ff61d2547b + - 4c07e396-0297-4748-bcf5-14a98fefa693 status: 200 OK code: 200 - duration: 178.844611ms + duration: 77.886083ms - id: 39 request: proto: HTTP/1.1 @@ -1959,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -1968,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:29:28.750031+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:00 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 030c8afd-d9ad-43ac-887d-4495ba53b65d + - 6d83d864-bb18-4bd6-b436-dd6869a1c518 status: 200 OK code: 200 - duration: 219.314258ms + duration: 93.904962ms - id: 40 request: proto: HTTP/1.1 @@ -2008,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2385 + content_length: 2372 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2385" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c13765e-a106-49cf-aa66-456ea7c4f6ae + - 5bee7dd3-0bde-4743-9977-961c39e23004 status: 200 OK code: 200 - duration: 261.283789ms + duration: 85.944265ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2385 + content_length: 2372 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2385" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f2a350-56bf-4b71-a719-6a79a5c606d9 + - f3efcf27-f3ab-439c-8eec-e53188d2b521 status: 200 OK code: 200 - duration: 224.21529ms + duration: 89.643857ms - id: 42 request: proto: HTTP/1.1 @@ -2106,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2115,20 +2115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2385 + content_length: 2372 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2385" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52ddd404-ffd3-41bf-8647-b67e3b3e7037 + - fc059bd5-305a-44c0-b89e-f7ea29733857 status: 200 OK code: 200 - duration: 271.446358ms + duration: 86.013683ms - id: 43 request: proto: HTTP/1.1 @@ -2155,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -2164,20 +2164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 521 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "525" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca40da37-bf7b-4427-ac60-dfee9f9ed701 + - 07bde9c8-4b13-4a27-a9dd-54cb58ce9683 status: 200 OK code: 200 - duration: 185.1044ms + duration: 53.553581ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data method: GET response: proto: HTTP/2.0 @@ -2224,9 +2224,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af785df6-6ca3-49eb-ba85-2b648e8d4453 + - 918ad3cd-9dab-4000-9964-acea907bcf90 status: 200 OK code: 200 - duration: 126.868483ms + duration: 60.176409ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics method: GET response: proto: HTTP/2.0 @@ -2273,11 +2273,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,12 +2285,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64105825-f556-4c06-b7f7-82c5f5c59add + - c457c4b0-e023-43a1-b524-cfd637cf43a7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.842846ms + duration: 55.912621ms - id: 46 request: proto: HTTP/1.1 @@ -2306,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2315,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2385 + content_length: 2372 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2385" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c8d8535-e0a6-4b61-93ed-c640f07597e5 + - 2dbee1c9-032a-416f-bd07-2e357c31ce87 status: 200 OK code: 200 - duration: 201.281269ms + duration: 88.549861ms - id: 47 request: proto: HTTP/1.1 @@ -2355,7 +2355,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2366,7 +2366,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -2375,9 +2375,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 08 Oct 2025 23:05:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 170b6fc7-a82b-4f4f-ad5c-3908beef4ede + - 94b25958-41ba-4e95-8ff6-759032f449a3 status: 200 OK code: 200 - duration: 185.61646ms + duration: 136.490948ms - id: 48 request: proto: HTTP/1.1 @@ -2404,7 +2404,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -2415,7 +2415,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -2424,9 +2424,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fa35aaf-1eb6-4fd2-9150-3abea5757b88 + - 3effa2e0-235b-423d-875d-1c8c09231562 status: 200 OK code: 200 - duration: 111.922472ms + duration: 48.845011ms - id: 49 request: proto: HTTP/1.1 @@ -2453,8 +2453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2462,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2385 + content_length: 2372 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2385" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80478ea8-27f3-4f47-9cc6-462c93de3273 + - e3b5f968-0f38-4d13-bb99-da93bbd41bf3 status: 200 OK code: 200 - duration: 233.145839ms + duration: 94.793395ms - id: 50 request: proto: HTTP/1.1 @@ -2502,8 +2502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -2511,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 521 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "525" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45132996-7846-4651-b13f-c98f44ce6079 + - 36ffa76b-1d66-4531-a833-934e337c7de3 status: 200 OK code: 200 - duration: 153.652434ms + duration: 57.321101ms - id: 51 request: proto: HTTP/1.1 @@ -2551,8 +2551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data method: GET response: proto: HTTP/2.0 @@ -2571,9 +2571,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,10 +2581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 611e54da-0879-4f71-aa1e-06c48e21be4c + - f4a53924-ccc3-46bc-883f-26edb03916cd status: 200 OK code: 200 - duration: 100.237327ms + duration: 64.557662ms - id: 52 request: proto: HTTP/1.1 @@ -2600,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics method: GET response: proto: HTTP/2.0 @@ -2620,11 +2620,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2632,12 +2632,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ec201c-d22e-455e-a75b-bcddd583a967 + - 52ff4c4c-e0c6-4be4-b851-2ea929de2473 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 145.007832ms + duration: 49.829433ms - id: 53 request: proto: HTTP/1.1 @@ -2653,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2662,20 +2662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2372 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,60 +2683,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abdefe9b-26ea-496a-b87e-8049a8d8059a + - e9161294-4924-457b-a736-6ce8a3de72de status: 200 OK code: 200 - duration: 79.183804ms + duration: 87.295818ms - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2385 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2385" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3828526-01c3-416e-aae3-b91ee98ee5c9 - status: 200 OK - code: 200 - duration: 222.304145ms - - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2753,8 +2704,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action method: POST response: proto: HTTP/2.0 @@ -2764,7 +2715,7 @@ interactions: trailer: {} content_length: 360 uncompressed: false - body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action","href_result":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8","id":"cadfc33c-db62-49e8-82ca-658acca77881","progress":0,"started_at":"2025-06-10T15:30:10.659584+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"2a23dedb-441c-4308-8cbe-15698b9634e3","progress":0,"started_at":"2025-10-08T23:05:55.808703+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "360" @@ -2773,11 +2724,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cadfc33c-db62-49e8-82ca-658acca77881 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a23dedb-441c-4308-8cbe-15698b9634e3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,11 +2736,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f061731-47f1-4b9b-981a-3e81f0be6645 + - 44726aa9-7520-43c9-91b3-0c78a4b7b439 status: 202 Accepted code: 202 - duration: 456.222031ms - - id: 56 + duration: 169.135941ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2804,8 +2755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2813,20 +2764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2336 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:01.936655+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,11 +2785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b28ac54d-ce24-4825-9de0-21a6760d4834 + - add94e75-2f05-4c50-8511-a1974d104cab status: 200 OK code: 200 - duration: 262.189547ms - - id: 57 + duration: 99.402171ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2853,8 +2804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2862,20 +2813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2380 + content_length: 2367 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:12.604774+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:57.372142+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2380" + - "2367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2883,29 +2834,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 590d8982-9585-4dcc-9dd2-a1881a9bbd76 + - d036d8e8-7dfb-460f-bbe5-70527424d50e status: 200 OK code: 200 - duration: 295.255249ms - - id: 58 + duration: 100.213121ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action method: POST response: proto: HTTP/2.0 @@ -2913,22 +2864,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8/action","href_result":"/servers/d0426526-ea67-4636-af6b-398a95bee4d8","id":"7037639e-784a-430a-b760-4ef4c7054186","progress":0,"started_at":"2025-06-10T15:30:16.524647+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"93a3aeb7-c3bd-4c52-9fff-33b8f58f0f50","progress":0,"started_at":"2025-10-08T23:06:01.203762+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7037639e-784a-430a-b760-4ef4c7054186 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93a3aeb7-c3bd-4c52-9fff-33b8f58f0f50 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,11 +2887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e29b567-4637-425e-ab2f-12676d411c0e + - 5049c62a-4f86-4b22-8d82-7edae88aa710 status: 202 Accepted code: 202 - duration: 286.048492ms - - id: 59 + duration: 191.651468ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2955,8 +2906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -2964,20 +2915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 2330 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:06:01.058874+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2340" + - "2330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 08 Oct 2025 23:06:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,11 +2936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50396712-20f3-4d36-8d07-cdd07487c97b + - 6e149199-605f-4c18-ae98-bd9f6c7f4215 status: 200 OK code: 200 - duration: 227.576913ms - - id: 60 + duration: 92.750469ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3004,8 +2955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -3013,20 +2964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f0c2591e-77dd-470f-8cb4-874510a351c5","type":"not_found"}' headers: Content-Length: - - "2340" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,11 +2985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 434409ec-645b-4324-b81a-a5866e412dda - status: 200 OK - code: 200 - duration: 176.690609ms - - id: 61 + - 20f77bdf-6681-4c2a-9552-4ba8cbba54ed + status: 404 Not Found + code: 404 + duration: 41.710093ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3053,8 +3004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -3062,20 +3013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","type":"not_found"}' headers: Content-Length: - - "2340" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,11 +3034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bf2c1a0-80b6-41d3-a546-3041cfcc114e - status: 200 OK - code: 200 - duration: 192.120826ms - - id: 62 + - 2cd7b605-36f8-46b4-80a8-17fb1c265b15 + status: 404 Not Found + code: 404 + duration: 30.037384ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3102,8 +3053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d method: GET response: proto: HTTP/2.0 @@ -3111,20 +3062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2340 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","type":"not_found"}' headers: Content-Length: - - "2340" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,546 +3083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9411ba3b-7f33-4da1-b793-bb711f72297a - status: 200 OK - code: 200 - duration: 157.863049ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5d9ea45-e4f5-4654-abde-987bc8cb2d72 - status: 200 OK - code: 200 - duration: 217.647019ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9cbb257-87e6-45a5-b720-497b06a00cdc - status: 200 OK - code: 200 - duration: 187.985631ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b04afbd-4dc3-40d5-bc14-15b7b0c5e2a9 - status: 200 OK - code: 200 - duration: 188.998099ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:53 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cea25123-91bc-4c47-98a1-264346ecbe9e - status: 200 OK - code: 200 - duration: 214.690823ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2340 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"901","node_id":"16","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:30:16.334162+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2340" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9fd514a6-885a-4ace-b1ad-338f00fa7392 - status: 200 OK - code: 200 - duration: 192.69956ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2224 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:31:02.852449+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2224" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 994c6d9f-2311-4e28-90f8-06c110fa91c2 - status: 200 OK - code: 200 - duration: 498.320903ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2224 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:05.845226+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-intelligent-panini","id":"d0426526-ea67-4636-af6b-398a95bee4d8","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:07","maintenances":[],"modification_date":"2025-06-10T15:31:02.852449+00:00","name":"tf-srv-intelligent-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:29:05.845226+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"d0426526-ea67-4636-af6b-398a95bee4d8","name":"tf-srv-intelligent-panini"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2224" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 38e27afc-a27d-4807-bf3d-b37180ce3bd2 - status: 200 OK - code: 200 - duration: 190.395179ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e26c07c-83a7-4b57-966e-fa958311d956 - status: 204 No Content - code: 204 - duration: 202.986191ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0426526-ea67-4636-af6b-398a95bee4d8","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aa16302a-0db7-4c0d-b372-8f19456d787b + - 111baae7-6a83-4061-8d92-872b52950169 status: 404 Not Found code: 404 - duration: 98.793158ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 446 - uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:29:05.845226+00:00","export_uri":null,"id":"7c3608a8-273a-43c6-accd-0e076af119d6","modification_date":"2025-06-10T15:31:04.075867+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "446" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 64cad7d6-8e7c-43d0-8031-e65ede118d04 - status: 200 OK - code: 200 - duration: 91.536318ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7c3608a8-273a-43c6-accd-0e076af119d6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5b23a9f3-dad3-4405-b82a-c66849f595df - status: 204 No Content - code: 204 - duration: 175.461241ms - - id: 74 + duration: 18.689937ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3686,8 +3102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0426526-ea67-4636-af6b-398a95bee4d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 method: GET response: proto: HTTP/2.0 @@ -3697,7 +3113,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0426526-ea67-4636-af6b-398a95bee4d8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f0c2591e-77dd-470f-8cb4-874510a351c5","type":"not_found"}' headers: Content-Length: - "143" @@ -3706,9 +3122,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:06:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3716,7 +3132,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c69e633-860b-4628-89e2-0d8ba7a1c65b + - d1a49b4c-305f-488f-b309-52f57961f427 status: 404 Not Found code: 404 - duration: 160.625888ms + duration: 40.767447ms diff --git a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml index c0621bfc9..9cb96d18a 100644 --- a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 08 Oct 2025 23:05:24 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ec6d764-34aa-4f28-897f-231bcc5f76b2 + - 19f0181b-66a8-4400-a926-d16377c635a4 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 63.960182ms + duration: 77.453819ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35fdd11-8eed-483b-8300-4ea3a7edb2a8 + - 8c292cb9-78f5-43d1-86f9-8c670ef81739 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 86.670402ms + duration: 121.522087ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1a886ba-122d-40d4-a62c-e1e75791bd58 + - 8f9f0438-cef1-4421-8765-c6c5ed82d66b status: 200 OK code: 200 - duration: 129.007021ms + duration: 52.079778ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 237 + content_length: 232 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-focused-blackwell","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-goofy-panini","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:52.346618+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1722" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a858979-a9b6-4cd0-98a0-74a55ef44a8f + - bee1f9a0-3e4a-4c77-befb-451648eb0c4d status: 201 Created code: 201 - duration: 819.23466ms + duration: 523.968112ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:52.346618+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1722" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5dc18a1-27f1-4dd3-9830-f38c6fa97a5d + - 07368c65-b424-40ed-b6aa-c2037194918d status: 200 OK code: 200 - duration: 184.622643ms + duration: 112.593699ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:52.346618+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1722" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e59ef1b-16f3-4a98-84cf-a810c994c16f + - 76fee9d7-ca23-478d-b245-45a4e70ff972 status: 200 OK code: 200 - duration: 202.91546ms + duration: 98.308348ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:52.533732Z","id":"082506dc-9012-47f2-9328-b23bf81d7b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:52.533732Z","id":"fee803ac-65a7-4cc0-a8d0-3b9e34a40bb0","product_resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:52.533732Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:05:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51cb2f7b-d373-40f6-90f5-0af003092888 + - 7bbc476e-2b6c-43fe-9bf0-11d919f5de52 status: 200 OK code: 200 - duration: 90.414063ms + duration: 57.825581ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/action","href_result":"/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed","id":"52aebbed-1555-4bdf-acd3-bc55a926f7e6","progress":0,"started_at":"2025-06-10T15:30:53.617176+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action","href_result":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","id":"f2918482-f7ca-4c80-9c96-2138272f8381","progress":0,"started_at":"2025-10-08T23:05:26.153741+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/52aebbed-1555-4bdf-acd3-bc55a926f7e6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f2918482-f7ca-4c80-9c96-2138272f8381 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a6c66e3-ab3f-4d22-9394-891eaee76313 + - e33fbe7a-f35a-449b-af9d-7269808e57e1 status: 202 Accepted code: 202 - duration: 293.683186ms + duration: 207.024013ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1744 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:53.410488+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.990198+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1744" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a7b7f9-8e5b-4ee0-be59-e5ca325c48fd + - c276b11f-90a8-444c-a0ee-c9276fef1b17 status: 200 OK code: 200 - duration: 171.741595ms + duration: 93.023198ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8732c112-069f-48e9-b624-83b2cb2e7f8f + - 6685e41d-d9bf-4e59-bda0-dc788910f619 status: 200 OK code: 200 - duration: 200.949773ms + duration: 104.263235ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c98505-9eab-4372-82cc-8804856d2cf8 + - d1068477-897f-46ce-877c-f7cebbe26237 status: 200 OK code: 200 - duration: 213.371779ms + duration: 130.780733ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"082506dc-9012-47f2-9328-b23bf81d7b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a7bb551-ffa2-40f0-91d6-20777aa3742b + - 5eeebb98-2c8c-4ccf-97bb-7d25db291082 status: 404 Not Found code: 404 - duration: 61.577793ms + duration: 30.666954ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:52.533732Z","id":"082506dc-9012-47f2-9328-b23bf81d7b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:52.533732Z","id":"fee803ac-65a7-4cc0-a8d0-3b9e34a40bb0","product_resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:52.533732Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a891c038-6a3e-497d-8d08-f6d9d9b14057 + - 09e4e1fd-3cdf-42fe-8581-51766391c56b status: 200 OK code: 200 - duration: 121.384946ms + duration: 48.262205ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fcda5ec-70da-4b62-ab73-ff845ccaf845 + - 2942b866-10cd-4643-a7c5-09eea39037bf status: 200 OK code: 200 - duration: 140.811018ms + duration: 52.237269ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f340612-1b6e-4e77-955a-64fea2d997e6 + - 36ddfbdd-21e8-4f7d-973c-85466d1fb890 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 99.568612ms + duration: 67.243153ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff60ce64-b872-48a0-9b89-816d512d18f2 + - e57cd2f1-4831-4f97-99fa-e2e217123f54 status: 200 OK code: 200 - duration: 183.783809ms + duration: 128.048932ms - id: 16 request: proto: HTTP/1.1 @@ -825,8 +825,8 @@ interactions: Content-Type: - text/plain User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -843,9 +843,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:30:59 GMT + - Wed, 08 Oct 2025 23:05:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -853,10 +853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d39a033-108f-46ce-8c64-3763e91ffe6f + - 6857eff0-ca19-489e-81ab-e9934bc18aa9 status: 204 No Content code: 204 - duration: 125.494964ms + duration: 74.298151ms - id: 17 request: proto: HTTP/1.1 @@ -872,8 +872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -881,20 +881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -902,10 +902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eb00590-2f01-4ee2-a47e-4bc8012fbf20 + - 1b379d84-04b7-437f-8c3b-bd9f2a33d459 status: 200 OK code: 200 - duration: 245.752686ms + duration: 100.908912ms - id: 18 request: proto: HTTP/1.1 @@ -921,8 +921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -944,9 +944,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:31:00 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -954,10 +954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f9c2cf6-5712-4202-a9c9-64d765dbb3ca + - 6772680e-51f9-4477-bb5b-405bcd1d96f9 status: 200 OK code: 200 - duration: 126.431781ms + duration: 55.801109ms - id: 19 request: proto: HTTP/1.1 @@ -973,8 +973,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -982,20 +982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,10 +1003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b738b2a-2131-4709-adcf-7fd4179801ba + - 8ae18f13-aa01-489f-912b-0cb2be78de96 status: 200 OK code: 200 - duration: 233.664556ms + duration: 90.592112ms - id: 20 request: proto: HTTP/1.1 @@ -1022,8 +1022,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -1033,7 +1033,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"082506dc-9012-47f2-9328-b23bf81d7b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' headers: Content-Length: - "143" @@ -1042,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06ebc314-0d49-4292-aee8-b5e234946701 + - 769198e4-59eb-4c3a-9a07-a343aefd0142 status: 404 Not Found code: 404 - duration: 43.512313ms + duration: 26.266853ms - id: 21 request: proto: HTTP/1.1 @@ -1071,8 +1071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:52.533732Z","id":"082506dc-9012-47f2-9328-b23bf81d7b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:52.533732Z","id":"fee803ac-65a7-4cc0-a8d0-3b9e34a40bb0","product_resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:52.533732Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1091,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bdb9e0b-8075-4a33-83ce-3c9ac3385ccf + - b2ff49ad-b4f5-4dce-85da-ba4aa636c26e status: 200 OK code: 200 - duration: 135.575439ms + duration: 44.014007ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data method: GET response: proto: HTTP/2.0 @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d828495-53ae-4236-955d-8b8e2d8f032a + - f9125dce-87ab-4570-995b-87ee7df6e739 status: 200 OK code: 200 - duration: 102.632849ms + duration: 48.549958ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1192,9 +1192,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1202,10 +1202,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e38cd3c9-8c1f-4dbe-8d5d-f72b4c33d4bd + - bacdceb9-4c2d-4d47-94f7-a7db008590f4 status: 200 OK code: 200 - duration: 107.110325ms + duration: 55.467271ms - id: 24 request: proto: HTTP/1.1 @@ -1221,8 +1221,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/private_nics method: GET response: proto: HTTP/2.0 @@ -1241,11 +1241,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1253,12 +1253,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbddfaf-ba24-400f-ad95-f4ee187adf48 + - 7634aacb-30c4-4ab8-99ba-db511d5a92dc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 123.267828ms + duration: 53.651528ms - id: 25 request: proto: HTTP/1.1 @@ -1274,8 +1274,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -1283,20 +1283,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1304,10 +1304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b19d813-4c78-4909-bec1-c48c75dfad9d + - f55635ae-e5ac-4b51-aa69-fbe8b2c6bc4f status: 200 OK code: 200 - duration: 224.435768ms + duration: 112.551126ms - id: 26 request: proto: HTTP/1.1 @@ -1323,8 +1323,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1346,9 +1346,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e879ce28-d456-4891-8371-6e66c81f82bd + - b0053d62-cab4-4c11-8aa5-37411eb522da status: 200 OK code: 200 - duration: 123.278687ms + duration: 60.904162ms - id: 27 request: proto: HTTP/1.1 @@ -1375,8 +1375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init method: DELETE response: proto: HTTP/2.0 @@ -1393,9 +1393,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,10 +1403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf771f4-0b23-4cbd-ac43-4e4e5e18f187 + - ba7f6fc1-7d5f-4d01-9d1a-7a1fe915a296 status: 204 No Content code: 204 - duration: 110.616731ms + duration: 66.716347ms - id: 28 request: proto: HTTP/1.1 @@ -1422,8 +1422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:30:57.013487+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1878" + - "1891" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,78 +1452,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0298a8f4-4d6f-40aa-bd8a-2ba70762c432 + - 91646985-e405-4b95-8b88-cedd02d7713a status: 200 OK code: 200 - duration: 170.245088ms + duration: 118.650713ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:30:52.533732Z","id":"082506dc-9012-47f2-9328-b23bf81d7b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:30:52.533732Z","id":"fee803ac-65a7-4cc0-a8d0-3b9e34a40bb0","product_resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:52.533732Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce2c4588-fc08-49be-9b5d-690f41bc1933 - status: 200 OK - code: 200 - duration: 546.144753ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action method: POST response: proto: HTTP/2.0 @@ -1531,22 +1482,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed/action","href_result":"/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed","id":"3bcbe7ec-a1cb-440f-83d9-5abc04ac71c6","progress":0,"started_at":"2025-06-10T15:31:04.129674+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action","href_result":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","id":"0161fbe0-1b33-4949-8ab3-d836db6398f5","progress":0,"started_at":"2025-10-08T23:05:33.533769+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3bcbe7ec-a1cb-440f-83d9-5abc04ac71c6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0161fbe0-1b33-4949-8ab3-d836db6398f5 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1554,403 +1505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdce27a5-c36f-40c6-be3d-70794e898978 + - 4da2e08d-172d-45b1-9f93-4a9798ec00da status: 202 Accepted code: 202 - duration: 242.640529ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0109994-415d-4d48-8b96-0dad5e1bcbc5 - status: 200 OK - code: 200 - duration: 227.101397ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0ddbbd46-63ae-4ff9-9939-3164a3daf86b - status: 200 OK - code: 200 - duration: 203.243603ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 54da274c-7af4-42d7-94be-cbfc97419bc9 - status: 200 OK - code: 200 - duration: 192.455812ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed2a505f-1eb2-488f-8426-6171c292c662 - status: 200 OK - code: 200 - duration: 195.387439ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c7bacc48-2404-40db-a90b-9c44a15f20ad - status: 200 OK - code: 200 - duration: 533.9346ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:30 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - adeb9c72-73bc-475c-8570-17cd4049baea - status: 200 OK - code: 200 - duration: 202.156102ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1838 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"802","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:03.964751+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1838" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 62f52345-0886-4e99-9645-dcc1878cf8a6 - status: 200 OK - code: 200 - duration: 240.564463ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1722 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:36.916725+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1722" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b25bf3e-2d56-49e9-8c3d-407d084d1b5f - status: 200 OK - code: 200 - duration: 155.169894ms - - id: 39 + duration: 174.804988ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1965,8 +1524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -1974,20 +1533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1722 + content_length: 1854 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:30:52.346618+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-blackwell","id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:73","maintenances":[],"modification_date":"2025-06-10T15:31:36.916725+00:00","name":"tf-srv-focused-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"082506dc-9012-47f2-9328-b23bf81d7b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:33.407100+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1722" + - "1854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:05:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,58 +1554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd97311f-1965-49eb-be60-94a71bd68297 + - c20c8297-28ea-4867-8b3b-f7990d3d88b7 status: 200 OK code: 200 - duration: 166.454468ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52f8a595-f47e-462e-b056-764679839475 - status: 204 No Content - code: 204 - duration: 341.261027ms - - id: 41 + duration: 122.563231ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2061,8 +1573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -2072,7 +1584,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","type":"not_found"}' headers: Content-Length: - "143" @@ -2081,9 +1593,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,11 +1603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f93fea7a-5bad-4b3c-b882-267c3f261778 + - f6234516-f926-430a-8aa7-af469740c3a8 status: 404 Not Found code: 404 - duration: 95.151677ms - - id: 42 + duration: 52.16882ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2110,8 +1622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -2121,7 +1633,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"082506dc-9012-47f2-9328-b23bf81d7b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' headers: Content-Length: - "143" @@ -2130,9 +1642,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,11 +1652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74e6bf8f-ac59-40b2-b550-c1b1fcfb977c + - 900980c8-4c9c-4572-9ca7-43a63a9f5125 status: 404 Not Found code: 404 - duration: 48.541645ms - - id: 43 + duration: 29.375491ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2159,8 +1671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: GET response: proto: HTTP/2.0 @@ -2170,7 +1682,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:52.533732Z","id":"082506dc-9012-47f2-9328-b23bf81d7b19","last_detached_at":"2025-06-10T15:31:41.702067Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:41.702067Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":"2025-10-08T23:05:34.797080Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:34.797080Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2179,9 +1691,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,11 +1701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68a6c973-d4cd-4efe-a927-c54eb2fc179a + - ed3d7e75-770e-4964-a850-cada53489735 status: 200 OK code: 200 - duration: 169.324179ms - - id: 44 + duration: 43.754795ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2208,8 +1720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/082506dc-9012-47f2-9328-b23bf81d7b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 method: DELETE response: proto: HTTP/2.0 @@ -2226,9 +1738,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,11 +1748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9493c7e4-0741-4ac9-a7c5-73b86f92a5fe + - 361e9dcb-e051-4f9d-a9a8-b76cce3aba39 status: 204 No Content code: 204 - duration: 128.360295ms - - id: 45 + duration: 74.516073ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2255,8 +1767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0ac79cc4-07f0-4fad-9317-1845d16067ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 method: GET response: proto: HTTP/2.0 @@ -2266,7 +1778,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0ac79cc4-07f0-4fad-9317-1845d16067ed","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","type":"not_found"}' headers: Content-Length: - "143" @@ -2275,9 +1787,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,7 +1797,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c817c9b1-0122-4dcd-b2d4-d2a58140122e + - 62f32a96-4eeb-4a7d-8651-e09724e54759 status: 404 Not Found code: 404 - duration: 73.173228ms + duration: 47.828119ms diff --git a/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml b/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml index 709efeed3..e086cb6fe 100644 --- a/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d4a0e2b-bca4-4da4-956e-11ffa230fd9e + - 439410bf-7697-4cbd-8da9-2f447b8c7f6f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 47.248582ms + duration: 47.80025ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 782a1fba-4fc6-4893-8400-dac16df62eb7 + - 5b191a09-1ff9-4b18-84f3-fec65eec99c7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 96.708402ms + duration: 47.987607ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d520354a-fa19-4058-ae3e-cd6b3f72a2b8 + - ca7a9857-e908-4cff-a41c-53786f96573f status: 200 OK code: 200 - duration: 128.479298ms + duration: 53.660707ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 231 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-eager-cohen","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-vigorous-beaver","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:02.993620+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 408f9410-9701-4514-8355-363bfb4d5263 + - 9bf2a613-7405-4646-927f-3c3e7103cd07 status: 201 Created code: 201 - duration: 841.995566ms + duration: 586.957862ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:02.993620+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f86f763-c1bc-4f38-9b7a-5f5037ffc525 + - ed348ff5-81fa-4164-8d21-059a6822d6f7 status: 200 OK code: 200 - duration: 164.220478ms + duration: 98.772466ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:02.993620+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 795852e2-f6a5-4ea8-b3da-009b0130a837 + - 447f74c0-323f-4948-8454-ffe6e0c1e67a status: 200 OK code: 200 - duration: 174.467125ms + duration: 94.865749ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data method: GET response: proto: HTTP/2.0 @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9aa39f4-7d95-4c4c-9002-3143affd7e91 + - 85329244-8c37-40e5-8a40-36e3f1c945bb status: 200 OK code: 200 - duration: 95.444131ms + duration: 61.04194ms - id: 7 request: proto: HTTP/1.1 @@ -376,8 +376,8 @@ interactions: Content-Type: - text/plain User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -394,9 +394,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -404,10 +404,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e5d0ee-631e-44ed-95b7-a5267863f324 + - 1b394a2e-4481-474c-9888-192a4dcc3dd1 status: 204 No Content code: 204 - duration: 158.845488ms + duration: 77.062158ms - id: 8 request: proto: HTTP/1.1 @@ -425,8 +425,8 @@ interactions: Content-Type: - text/plain User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/foo + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo method: PATCH response: proto: HTTP/2.0 @@ -443,9 +443,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -453,10 +453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4346a6bb-917e-4fda-919c-9578ea40ea49 + - 97c51cf9-279c-4260-9fca-e1fed57eaa1a status: 204 No Content code: 204 - duration: 182.757364ms + duration: 56.808118ms - id: 9 request: proto: HTTP/1.1 @@ -472,8 +472,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -481,20 +481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:02.993620+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -502,10 +502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e43c13b-86dc-403d-9602-2d81f6d4dd8a + - 100d8603-491c-4532-819b-02d1b701504d status: 200 OK code: 200 - duration: 167.944993ms + duration: 96.890299ms - id: 10 request: proto: HTTP/1.1 @@ -521,8 +521,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -532,7 +532,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:03.166278Z","id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:03.166278Z","id":"b6450679-b1bd-46b9-af23-eac948f42061","product_resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:03.166278Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -541,9 +541,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -551,10 +551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6f32edf-c464-4592-a4e5-f2e3019a6e72 + - d6756814-c157-4fbf-b2fc-1827844e9800 status: 200 OK code: 200 - duration: 93.639777ms + duration: 39.121032ms - id: 11 request: proto: HTTP/1.1 @@ -572,8 +572,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action method: POST response: proto: HTTP/2.0 @@ -583,7 +583,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/action","href_result":"/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee","id":"ee6ae009-6e8d-4df7-ba3d-dc4a1e412b0f","progress":0,"started_at":"2025-06-10T15:29:04.820729+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action","href_result":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","id":"f2bc8806-f03f-431e-b32d-be9bcb83b35e","progress":0,"started_at":"2025-10-08T23:04:44.157917+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -592,11 +592,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ee6ae009-6e8d-4df7-ba3d-dc4a1e412b0f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f2bc8806-f03f-431e-b32d-be9bcb83b35e Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -604,10 +604,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4818893b-03c3-4b33-b8b4-0566b5dc966f + - b2cfd3d5-12ed-4516-ad52-cc6d750eda36 status: 202 Accepted code: 202 - duration: 345.786728ms + duration: 202.471929ms - id: 12 request: proto: HTTP/1.1 @@ -623,8 +623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -632,20 +632,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1732 + content_length: 1762 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:04.625412+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:44.013611+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1732" + - "1762" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,10 +653,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21da2c14-3d27-4c57-b0c0-d537787f717f + - f1045ea0-2412-4909-bfbe-80adf4e4cb31 status: 200 OK code: 200 - duration: 193.786779ms + duration: 95.780674ms - id: 13 request: proto: HTTP/1.1 @@ -672,8 +672,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -681,20 +681,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + content_length: 1897 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:08.210578+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1865" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -702,10 +702,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f436a094-3c3c-439f-9dac-6aaf5c7395cd + - 50c4b46e-10ce-45c8-bb2a-76caf61a6df3 status: 200 OK code: 200 - duration: 177.644794ms + duration: 95.577124ms - id: 14 request: proto: HTTP/1.1 @@ -721,8 +721,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -730,20 +730,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + content_length: 1897 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:08.210578+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1865" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,10 +751,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 611adb09-a0db-438d-9ecf-4b8e2bcdfd28 + - d9441b9d-d71f-4ba1-8ac1-e50eef25c887 status: 200 OK code: 200 - duration: 196.352059ms + duration: 101.96095ms - id: 15 request: proto: HTTP/1.1 @@ -770,8 +770,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -781,7 +781,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' headers: Content-Length: - "143" @@ -790,9 +790,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -800,10 +800,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efdac966-7d5d-4d61-b7f7-f66f6b03229c + - 5fa2c5d0-31e7-468c-93cc-0095e1cd6fe8 status: 404 Not Found code: 404 - duration: 52.697492ms + duration: 29.071254ms - id: 16 request: proto: HTTP/1.1 @@ -819,8 +819,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -830,7 +830,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:03.166278Z","id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:03.166278Z","id":"b6450679-b1bd-46b9-af23-eac948f42061","product_resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:03.166278Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -839,9 +839,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -849,10 +849,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca8eb77d-047e-4759-b14c-0ab0d5eba5c7 + - 3f99f244-5887-4d7d-89d7-bf16ba533fbd status: 200 OK code: 200 - duration: 100.457713ms + duration: 40.903413ms - id: 17 request: proto: HTTP/1.1 @@ -868,8 +868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data method: GET response: proto: HTTP/2.0 @@ -888,9 +888,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -898,10 +898,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90001727-5c30-4732-8d01-c761111ec7f6 + - 85044fa5-602f-46ef-a3c4-87e7d9711a2f status: 200 OK code: 200 - duration: 118.861349ms + duration: 59.165313ms - id: 18 request: proto: HTTP/1.1 @@ -917,8 +917,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -940,9 +940,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbdc4346-3f4e-41de-9c32-9554ec9eae96 + - 4e58074d-ab04-4c65-ae71-38e4d5ee6175 status: 200 OK code: 200 - duration: 150.584865ms + duration: 61.870113ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/foo + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo method: GET response: proto: HTTP/2.0 @@ -989,9 +989,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69edffaa-1757-4b85-b43f-7929b3e0dee7 + - bb17211a-6e48-4328-b69b-d65faf752411 status: 200 OK code: 200 - duration: 131.814692ms + duration: 57.312329ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/private_nics method: GET response: proto: HTTP/2.0 @@ -1038,11 +1038,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:49 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,12 +1050,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ba6f4f4-ec0a-48de-9ffe-adb5a93521b3 + - 4439730b-1524-47bf-804e-4ffdc03545fa X-Total-Count: - "0" status: 200 OK code: 200 - duration: 133.89845ms + duration: 54.600927ms - id: 21 request: proto: HTTP/1.1 @@ -1071,8 +1071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -1080,20 +1080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + content_length: 1897 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:08.210578+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1865" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2e1d664-aa89-4455-b1ea-7f1584e4a5f3 + - 93a99fab-3280-484b-ae1e-3f5ca857167c status: 200 OK code: 200 - duration: 186.535078ms + duration: 106.483317ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -1129,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + content_length: 1897 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:08.210578+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1865" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bbe0d9e-86f6-46a9-b782-2db55850ef17 + - 57c476f0-be91-4478-b450-e087c4382943 status: 200 OK code: 200 - duration: 190.359631ms + duration: 102.39865ms - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' headers: Content-Length: - "143" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f990a31c-3e89-42f0-b5a9-82f2455754a0 + - 93ac47e6-fe95-4cb7-aa01-667f51c045fd status: 404 Not Found code: 404 - duration: 51.822931ms + duration: 25.308824ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:03.166278Z","id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:03.166278Z","id":"b6450679-b1bd-46b9-af23-eac948f42061","product_resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:03.166278Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a64b829-c16e-4996-8db7-b2e5bb2529bb + - d1fbddc3-dd15-4079-ac0e-f1d1752f2a95 status: 200 OK code: 200 - duration: 124.312843ms + duration: 44.935191ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data method: GET response: proto: HTTP/2.0 @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 520a8148-d6c5-425a-a2b3-da9c7e6b2db2 + - d7df0160-079a-433f-9d3c-8d62be8192ea status: 200 OK code: 200 - duration: 112.532279ms + duration: 56.871713ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1339,9 +1339,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1349,10 +1349,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d650a77-0b73-4539-b5f7-a890e5bc82cf + - d36f0921-b938-442b-9287-c8adb732f809 status: 200 OK code: 200 - duration: 154.049142ms + duration: 71.924007ms - id: 27 request: proto: HTTP/1.1 @@ -1368,8 +1368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/user_data/foo + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo method: GET response: proto: HTTP/2.0 @@ -1388,9 +1388,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1398,10 +1398,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 249360d8-fbe9-4f15-b2b0-0b0c09fc91ab + - 6a7c06d7-992e-4863-a149-2935a93ba8b4 status: 200 OK code: 200 - duration: 88.074099ms + duration: 52.682593ms - id: 28 request: proto: HTTP/1.1 @@ -1417,8 +1417,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/private_nics method: GET response: proto: HTTP/2.0 @@ -1437,11 +1437,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1449,12 +1449,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b012196a-6c40-4c9f-b988-f9dfec8dc8fe + - c68964c6-19eb-4ded-8958-1fc5b1410eeb X-Total-Count: - "0" status: 200 OK code: 200 - duration: 159.041164ms + duration: 50.688018ms - id: 29 request: proto: HTTP/1.1 @@ -1470,8 +1470,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -1479,20 +1479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1865 + content_length: 1897 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:08.210578+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1865" + - "1897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1500,78 +1500,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab9a2e98-631c-43e0-a9c5-ba20e7a15981 + - f6c1e3c1-112e-428c-9a8f-7deb3aea05c7 status: 200 OK code: 200 - duration: 190.618596ms + duration: 98.996769ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:29:03.166278Z","id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:29:03.166278Z","id":"b6450679-b1bd-46b9-af23-eac948f42061","product_resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:03.166278Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dccb7c72-bd0b-433e-8673-59756106387b - status: 200 OK - code: 200 - duration: 117.728323ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action method: POST response: proto: HTTP/2.0 @@ -1579,22 +1530,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee/action","href_result":"/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee","id":"d00319ad-5241-431f-a3ef-737edc357c4d","progress":0,"started_at":"2025-06-10T15:29:14.685860+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action","href_result":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","id":"6a435266-7db9-4728-85f7-ded36f8e959e","progress":0,"started_at":"2025-10-08T23:04:51.168204+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d00319ad-5241-431f-a3ef-737edc357c4d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6a435266-7db9-4728-85f7-ded36f8e959e Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1602,501 +1553,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5606b656-380b-4341-a2b1-9c08b0a90e80 + - 7cd598c7-1e47-4a21-958b-d3beb30f6705 status: 202 Accepted code: 202 - duration: 268.645992ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63766c99-3b4c-449c-8cba-8cd7dba31b8e - status: 200 OK - code: 200 - duration: 232.19493ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c8d57534-b2de-4a82-a72e-154ade266a80 - status: 200 OK - code: 200 - duration: 211.426419ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8718145-86b6-42b8-8dfe-e2ae710ad0ab - status: 200 OK - code: 200 - duration: 154.544881ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:30 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f0c5a0b1-e100-46b2-a96f-2b9da1228f5c - status: 200 OK - code: 200 - duration: 239.376527ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3845f560-9011-4d84-8f57-5c2ee3acbe66 - status: 200 OK - code: 200 - duration: 225.509941ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e4bebfa3-af4c-4fbe-a627-88d5841999c8 - status: 200 OK - code: 200 - duration: 192.42957ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0892e4a5-e071-4769-89cc-8e74a2756fe2 - status: 200 OK - code: 200 - duration: 214.095102ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b1ce5096-ab28-47bd-9ef9-a7342b15a600 - status: 200 OK - code: 200 - duration: 233.275703ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1825 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"502","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:14.511713+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1825" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9027299-e83c-4604-8f1c-986aeddf6f18 - status: 200 OK - code: 200 - duration: 186.513664ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1710 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:57.520298+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1710" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a3d2eda-797b-44cb-8cb4-f1cc37b4eddf - status: 200 OK - code: 200 - duration: 220.287514ms - - id: 42 + duration: 159.421373ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2111,8 +1572,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -2120,20 +1581,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1860 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:29:02.993620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eager-cohen","id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:05","maintenances":[],"modification_date":"2025-06-10T15:29:57.520298+00:00","name":"tf-srv-eager-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:51.045282+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1860" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2141,58 +1602,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17b149d5-dc43-4251-8941-18d630128e6b + - f5597215-d1de-49f3-8eb5-0c0a24738a32 status: 200 OK code: 200 - duration: 253.05086ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ceaed84d-5f5a-4faf-b404-4ea9b9d4a6f1 - status: 204 No Content - code: 204 - duration: 832.137365ms - - id: 44 + duration: 116.549263ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2207,8 +1621,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -2218,7 +1632,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","type":"not_found"}' headers: Content-Length: - "143" @@ -2227,9 +1641,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2237,11 +1651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a865a7a-77a0-45d4-bd76-c778db291c23 + - fa5df8fd-3ae7-4f0f-b255-9ff90a710a80 status: 404 Not Found code: 404 - duration: 154.122215ms - - id: 45 + duration: 49.5404ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2256,8 +1670,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -2267,7 +1681,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' headers: Content-Length: - "143" @@ -2276,9 +1690,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2286,11 +1700,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f749cec3-c503-48c1-989b-a8d21dfe8bd4 + - 0b345a84-f0ce-4115-a529-52773831b209 status: 404 Not Found code: 404 - duration: 92.67738ms - - id: 46 + duration: 24.265691ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2305,8 +1719,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: GET response: proto: HTTP/2.0 @@ -2316,7 +1730,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:03.166278Z","id":"5bed7363-a69a-4516-96b3-9d5a8c27c5cc","last_detached_at":"2025-06-10T15:30:02.988105Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:02.988105Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":"2025-10-08T23:04:52.436115Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:52.436115Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2325,9 +1739,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2335,11 +1749,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a18c4aa-b5e4-4284-b307-bcdb4cc4ab42 + - 97d8474a-a67b-48ef-9675-b695e78efd74 status: 200 OK code: 200 - duration: 148.873522ms - - id: 47 + duration: 36.383058ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2354,8 +1768,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5bed7363-a69a-4516-96b3-9d5a8c27c5cc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce method: DELETE response: proto: HTTP/2.0 @@ -2372,9 +1786,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2382,11 +1796,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02d941dc-b841-42a7-8f3d-16f6735a1c04 + - 396abc07-e1a4-46d3-b07d-300006bdc8d8 status: 204 No Content code: 204 - duration: 219.884808ms - - id: 48 + duration: 75.634809ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2401,8 +1815,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d539936e-43ad-4a9a-b285-6e46b79b05ee + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 method: GET response: proto: HTTP/2.0 @@ -2412,7 +1826,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d539936e-43ad-4a9a-b285-6e46b79b05ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","type":"not_found"}' headers: Content-Length: - "143" @@ -2421,9 +1835,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2431,7 +1845,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83ab9a26-37d3-4378-9b56-cf0fdc80efdd + - a61e87b6-deba-4f93-a8c5-ae32b87d1257 status: 404 Not Found code: 404 - duration: 125.836156ms + duration: 302.95666ms diff --git a/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml b/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml index 9f49fd6f0..00c61cc82 100644 --- a/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31245ec6-41df-47f9-b3a5-fd40c9abff3e + - 07b016b3-9659-48c4-8764-803f72cfbdfc X-Total-Count: - "75" status: 200 OK code: 200 - duration: 47.350734ms + duration: 57.791101ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1555155d-62c0-4186-82f4-fd8879a00578 + - f65a92f6-edee-4be4-9d17-fe40569b4835 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 62.293439ms + duration: 60.066036ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1eeabe26-5a5a-49ee-8927-0b46d47c54d4 + - eacb55ac-df2c-498e-83e7-2010fa009f37 status: 200 OK code: 200 - duration: 100.572349ms + duration: 56.267589ms - id: 3 request: proto: HTTP/1.1 @@ -167,13 +167,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-modest-pascal","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false,"size":20000000000}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","user_data"]}' + body: '{"name":"tf-srv-amazing-bassi","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false,"size":20000000000}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","user_data"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1771 + content_length: 1793 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:28:58.634821+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1771" + - "1793" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44e9f28d-e753-47c1-89d3-b203257e9b61 + - 7e9e033f-2ddd-4cc8-a333-96b5e27ccd07 status: 201 Created code: 201 - duration: 877.964797ms + duration: 523.512095ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1771 + content_length: 1793 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:28:58.634821+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1771" + - "1793" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc66bb42-f1a8-4360-932b-69db6b3d01c1 + - b9b6f713-5f77-4021-be95-0922e3ccd6cc status: 200 OK code: 200 - duration: 211.165953ms + duration: 93.472182ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1771 + content_length: 1793 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:28:58.634821+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1771" + - "1793" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c020a59-a2ee-4459-9ba9-b9c66be9aa44 + - 3fa45a24-d162-4920-a02d-68c857158eb5 status: 200 OK code: 200 - duration: 284.104867ms + duration: 99.433777ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36e5ab91-c3b2-4565-8ab7-a28e20a837ea + - d35c1bb7-03a4-4197-bcc2-862ccf111e64 status: 200 OK code: 200 - duration: 143.456297ms + duration: 34.542932ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/97634643-5595-4edd-949a-0f15a8b29240/action","href_result":"/servers/97634643-5595-4edd-949a-0f15a8b29240","id":"98d041ad-20b8-42e2-8146-547f5b590b75","progress":0,"started_at":"2025-06-10T15:29:00.136320+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action","href_result":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","id":"419bce87-5401-41c6-901b-3bcca4a28cdd","progress":0,"started_at":"2025-10-08T23:04:32.935538+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/98d041ad-20b8-42e2-8146-547f5b590b75 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/419bce87-5401-41c6-901b-3bcca4a28cdd Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8dd705d-ff75-4cf9-87be-32c4a446b938 + - 2e9c7f7f-8745-414c-8d2a-eab29610265b status: 202 Accepted code: 202 - duration: 285.936793ms + duration: 183.120762ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1793 + content_length: 1815 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:28:59.927715+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.797980+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1793" + - "1815" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42b8ee42-43e0-4518-b737-5dfaf517ec81 + - 5eadee24-352d-4de8-b64a-2a1d59754ec4 status: 200 OK code: 200 - duration: 224.854966ms + duration: 97.532554ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9159934-2007-41ab-bc63-52ee1751caca + - 496ab7ad-487b-43f8-8fbc-273b29e22860 status: 200 OK code: 200 - duration: 199.383225ms + duration: 98.825275ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e612cc37-f12a-4c4c-b965-088098a6e6f1 + - 666d201e-a1be-46df-ba38-19b936368874 status: 200 OK code: 200 - duration: 206.231668ms + duration: 93.840682ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b833bd3-b8ce-487e-9c8c-ea8317c4f104 + - 91666f61-7360-466f-8a6e-6cacf500c2b0 status: 404 Not Found code: 404 - duration: 43.234164ms + duration: 31.018733ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13346963-44da-4c47-afe1-c787f911167a + - a24b190c-b006-48cd-8704-d075bec78d84 status: 200 OK code: 200 - duration: 107.213294ms + duration: 66.1966ms - id: 13 request: proto: HTTP/1.1 @@ -669,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 308e5442-4243-4c52-b9b0-d228864ff2ec + - cb5d6cb5-d113-464d-99e9-8c8c4c9a348a status: 200 OK code: 200 - duration: 199.953183ms + duration: 74.338454ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +718,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a74a82e-1035-4630-9b8d-b7b733780ecc + - fa0c601a-70e7-4759-a4be-e020335b0877 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 182.001756ms + duration: 46.688582ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a1452d0-e275-4ed8-ac77-9ec6762e0ac2 + - bb642719-1600-44f5-a2e2-1a8e9dd66b76 status: 200 OK code: 200 - duration: 241.439389ms + duration: 98.142141ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80275859-34a4-4882-a9dd-8ac19be1726f + - 910d9bda-d5ed-46ab-acaa-d351475bfd9a status: 200 OK code: 200 - duration: 497.942568ms + duration: 120.118984ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1992959b-5e52-4a27-a54f-aa82e569c1a2 + - 86882909-e2c7-42cd-bb7a-587405e109d3 status: 404 Not Found code: 404 - duration: 45.321027ms + duration: 29.367033ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61186965-0de7-4182-ab5d-403e9a949dbd + - 0da36c67-3cd6-4d0f-b855-6a47a7af0484 status: 200 OK code: 200 - duration: 80.752587ms + duration: 61.592121ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca87a888-1ee6-41e6-aa13-22d552cab7e9 + - a1bdd6ef-9a2a-46cd-8490-dcb622aa3a3b status: 200 OK code: 200 - duration: 145.043322ms + duration: 44.866847ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e43effe-3127-4af2-a43c-3d33eba464fb + - c09bd822-f078-4cda-8ccd-88bef451cad4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 149.178478ms + duration: 58.035833ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75ceb7d9-5285-4f69-8f88-b2ef723fab48 + - 415383ac-6eae-4769-912b-9b9765ecc614 status: 200 OK code: 200 - duration: 200.18051ms + duration: 116.057158ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ded99a56-1e06-4a9c-8ead-a8df2a23e7a8 + - 7036c8ad-b9ba-4bba-a2c9-48b1a95dac46 status: 404 Not Found code: 404 - duration: 80.003463ms + duration: 24.734482ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2570009-755a-4b25-bef8-c169683d70ba + - ee0c2b49-c20e-4efb-9b04-04f790539ff0 status: 200 OK code: 200 - duration: 82.660606ms + duration: 38.839481ms - id: 24 request: proto: HTTP/1.1 @@ -1216,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddd5bc28-a6db-45bb-863b-9405c8d48b73 + - cca7e724-1d5a-4a1f-9748-0ed9ae3285b6 status: 200 OK code: 200 - duration: 136.875274ms + duration: 55.48674ms - id: 25 request: proto: HTTP/1.1 @@ -1265,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17971a56-456d-4bc8-b25a-9a53a704d2f5 + - 0cd5fe04-ce5b-4eb6-812f-265bfd2f6585 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 150.776324ms + duration: 53.147517ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb65c8e5-cea3-47e0-92c2-0067bcffd8c6 + - eaafe333-9477-4543-b365-2094a9014ec4 status: 200 OK code: 200 - duration: 194.574997ms + duration: 102.857676ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62bdf4f9-15b2-4891-a717-dabaac16c06d + - ec7a285a-9ed3-4a00-a89c-2bc432690b1c status: 200 OK code: 200 - duration: 201.278468ms + duration: 99.935082ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b71166-198c-432e-8cdd-66160a2add2d + - c56de499-30ed-41ac-b76f-886a00872b89 status: 200 OK code: 200 - duration: 118.460988ms + duration: 55.664699ms - id: 29 request: proto: HTTP/1.1 @@ -1470,8 +1470,8 @@ interactions: Content-Type: - text/plain User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -1488,9 +1488,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1498,10 +1498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 687513b3-325d-48da-9a69-cd0ea3a88f91 + - d29410a9-3284-4300-b774-a27ced395c70 status: 204 No Content code: 204 - duration: 143.739446ms + duration: 102.153721ms - id: 30 request: proto: HTTP/1.1 @@ -1517,8 +1517,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1526,20 +1526,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1547,10 +1547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb86842-896f-4c53-962c-0b0e459ae357 + - 205397c3-45aa-42bf-b6b0-ecd3929bc21f status: 200 OK code: 200 - duration: 208.590011ms + duration: 98.203885ms - id: 31 request: proto: HTTP/1.1 @@ -1566,8 +1566,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1575,20 +1575,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1596,10 +1596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c36c8111-6e3b-408c-91e7-e51d28018a7e + - 7861fc84-a64a-4164-9d96-a9b6a467117a status: 200 OK code: 200 - duration: 203.049269ms + duration: 87.45424ms - id: 32 request: proto: HTTP/1.1 @@ -1615,8 +1615,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -1626,7 +1626,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -1635,9 +1635,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1645,10 +1645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64c4768f-d897-4857-a108-44e319b760bf + - 3910afb5-e2d7-4035-85cb-b08fad6ac887 status: 404 Not Found code: 404 - duration: 50.606009ms + duration: 30.625445ms - id: 33 request: proto: HTTP/1.1 @@ -1664,8 +1664,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -1675,7 +1675,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1684,9 +1684,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1694,10 +1694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33c446ad-5656-4b03-9ce0-deb0b76a1556 + - 42537354-e0aa-424c-8902-95ebf644164a status: 200 OK code: 200 - duration: 94.428316ms + duration: 39.797605ms - id: 34 request: proto: HTTP/1.1 @@ -1713,8 +1713,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -1733,9 +1733,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1743,10 +1743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2803efc1-23aa-4823-b86d-65850bece668 + - dbbca08d-3e90-45f8-9e64-43514ff9dd09 status: 200 OK code: 200 - duration: 144.13041ms + duration: 56.672006ms - id: 35 request: proto: HTTP/1.1 @@ -1762,8 +1762,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1785,9 +1785,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2d63841-811e-4366-bcb4-cf73347b7386 + - c74b32cc-ce63-4490-8fe0-c26931e963f5 status: 200 OK code: 200 - duration: 87.41329ms + duration: 46.975754ms - id: 36 request: proto: HTTP/1.1 @@ -1814,8 +1814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics method: GET response: proto: HTTP/2.0 @@ -1834,11 +1834,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1846,12 +1846,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0da7013f-829d-47dc-b421-a7ca0346e385 + - 0312ed49-bef0-47ad-8e50-aadc80557908 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 124.080136ms + duration: 58.249578ms - id: 37 request: proto: HTTP/1.1 @@ -1867,8 +1867,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1876,20 +1876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1897,10 +1897,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24e89d74-1f00-4664-8b67-e5e6a63ddd3f + - 714f0d7d-a8ca-4c38-9aa0-78df5f974817 status: 200 OK code: 200 - duration: 197.235916ms + duration: 106.576725ms - id: 38 request: proto: HTTP/1.1 @@ -1916,8 +1916,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -1925,20 +1925,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,10 +1946,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc41d67f-32cf-4f82-a3ef-f06cb01061bf + - 56aaf411-fbb3-4638-b6cf-497870ff17d5 status: 200 OK code: 200 - duration: 190.115632ms + duration: 103.841288ms - id: 39 request: proto: HTTP/1.1 @@ -1965,8 +1965,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -1976,7 +1976,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -1985,9 +1985,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,10 +1995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7887c5d5-2f00-4a05-93f5-61274cad93bb + - 2976f539-145e-491b-a5db-4531efd7f0d7 status: 404 Not Found code: 404 - duration: 36.233754ms + duration: 30.036503ms - id: 40 request: proto: HTTP/1.1 @@ -2014,8 +2014,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -2025,7 +2025,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2034,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,10 +2044,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da0f69a3-ad80-4323-84be-9bdb9c373713 + - 3b035f11-abd4-4466-a138-7e9998eaf0fe status: 200 OK code: 200 - duration: 84.925483ms + duration: 52.379062ms - id: 41 request: proto: HTTP/1.1 @@ -2063,8 +2063,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data method: GET response: proto: HTTP/2.0 @@ -2083,9 +2083,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2093,10 +2093,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c44a631d-8fe3-4563-9968-6f6d154d60b3 + - 8514b529-3738-4c58-b39c-8c80466a7828 status: 200 OK code: 200 - duration: 141.972343ms + duration: 53.292956ms - id: 42 request: proto: HTTP/1.1 @@ -2112,8 +2112,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/user_data/cloud-init + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -2135,9 +2135,9 @@ interactions: Content-Type: - text/plain Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2145,10 +2145,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d7f84f-348c-4b5a-9ae5-b06048b5b04a + - 7470bba8-5193-497e-ba2b-02106778e3ae status: 200 OK code: 200 - duration: 135.555558ms + duration: 54.749815ms - id: 43 request: proto: HTTP/1.1 @@ -2164,8 +2164,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics method: GET response: proto: HTTP/2.0 @@ -2184,11 +2184,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2196,12 +2196,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9af2379-982b-4c0a-b348-5234cbc3a6d8 + - ecec86f7-e169-4cb5-b832-187d7c0e9702 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 107.535969ms + duration: 57.331016ms - id: 44 request: proto: HTTP/1.1 @@ -2217,8 +2217,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -2226,20 +2226,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1949 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:03.449376+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1949" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2247,78 +2247,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f3beeff-08ff-4ddf-b0e5-a4d528184049 + - 104c8c06-2842-4d24-882e-fd809ba9f03b status: 200 OK code: 200 - duration: 177.731016ms + duration: 104.261507ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.826902Z","id":"c5f2d0e8-ed51-461e-8d66-32df8c75ea4f","product_resource_id":"97634643-5595-4edd-949a-0f15a8b29240","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.826902Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78d22349-ead7-44cb-a5a9-677d578f2048 - status: 200 OK - code: 200 - duration: 83.997092ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action method: POST response: proto: HTTP/2.0 @@ -2326,22 +2277,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/97634643-5595-4edd-949a-0f15a8b29240/action","href_result":"/servers/97634643-5595-4edd-949a-0f15a8b29240","id":"60b7c177-946e-413f-9f25-9e7d482e67ce","progress":0,"started_at":"2025-06-10T15:29:16.231093+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action","href_result":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","id":"b13e0de6-3dd9-48f4-a57b-fa4224af177c","progress":0,"started_at":"2025-10-08T23:04:42.205396+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/60b7c177-946e-413f-9f25-9e7d482e67ce + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b13e0de6-3dd9-48f4-a57b-fa4224af177c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2349,501 +2300,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b01d8e-de2e-40a0-9c79-3f08e592b48e + - 95f44942-12d2-4fcf-90f5-53f9e7e12d91 status: 202 Accepted code: 202 - duration: 299.552967ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0a8348e-524a-4496-bfde-6676c886c3f6 - status: 200 OK - code: 200 - duration: 265.260142ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9ec3e185-d9b0-48a0-b1f2-a236965d809a - status: 200 OK - code: 200 - duration: 189.3787ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b1b7144-9a2a-4610-bc84-abc1f1209ecb - status: 200 OK - code: 200 - duration: 165.234889ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b70aa414-4994-435e-8267-2feef82a74a1 - status: 200 OK - code: 200 - duration: 220.192228ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4959194e-4db2-4d0c-806b-634c03db1b15 - status: 200 OK - code: 200 - duration: 302.017916ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 04536b4b-9d36-443e-bf3b-c7db6f40aec0 - status: 200 OK - code: 200 - duration: 193.154038ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5d3a87be-6360-432b-b3c7-ed2522873a0a - status: 200 OK - code: 200 - duration: 232.421802ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a2aa5fd-ba3e-4c9f-8559-9e47a3698a19 - status: 200 OK - code: 200 - duration: 166.260511ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"801","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:16.027482+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 60ff77f0-d873-41df-bbed-0c477ebf809a - status: 200 OK - code: 200 - duration: 298.440104ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1771 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:59.196297+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1771" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d15050d-9ac3-49c5-9190-4e140cb87af8 - status: 200 OK - code: 200 - duration: 310.555665ms - - id: 57 + duration: 430.915356ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2858,8 +2319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -2867,20 +2328,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1771 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:28:58.634821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-modest-pascal","id":"97634643-5595-4edd-949a-0f15a8b29240","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f1","maintenances":[],"modification_date":"2025-06-10T15:29:59.196297+00:00","name":"tf-srv-modest-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"0f315fc8-79a8-4999-9b17-82555b252b19","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:41.817836+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1771" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2888,58 +2349,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd5bc351-11c3-4e0b-b5cc-4976cc38f159 + - c388ae23-f568-4024-a350-98220456af6c status: 200 OK code: 200 - duration: 232.25088ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b84b8137-47b0-463d-a882-00fefe488a16 - status: 204 No Content - code: 204 - duration: 374.540393ms - - id: 59 + duration: 105.065875ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2954,8 +2368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -2965,7 +2379,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"97634643-5595-4edd-949a-0f15a8b29240","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","type":"not_found"}' headers: Content-Length: - "143" @@ -2974,9 +2388,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2984,11 +2398,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3610b7cf-a16e-417a-b8e3-6f4cb4e081df + - 9001c842-a0d5-46b2-94a7-b925c5d9696d status: 404 Not Found code: 404 - duration: 106.47725ms - - id: 60 + duration: 39.277822ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3003,8 +2417,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -3014,7 +2428,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f315fc8-79a8-4999-9b17-82555b252b19","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' headers: Content-Length: - "143" @@ -3023,9 +2437,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3033,11 +2447,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5dcb339-9183-45e0-a5a3-b81da43ee491 + - d8684a59-2788-40de-bd45-164c08f4c63f status: 404 Not Found code: 404 - duration: 84.597957ms - - id: 61 + duration: 31.649931ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3052,8 +2466,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: GET response: proto: HTTP/2.0 @@ -3063,7 +2477,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.826902Z","id":"0f315fc8-79a8-4999-9b17-82555b252b19","last_detached_at":"2025-06-10T15:30:04.296369Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:04.296369Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":"2025-10-08T23:04:43.292005Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.292005Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3072,9 +2486,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3082,11 +2496,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a249ebe6-cd76-4e9a-bbbb-20022ee0b7a8 + - ce16c7a0-9497-4765-adff-e8a6e4d8c8b0 status: 200 OK code: 200 - duration: 138.873306ms - - id: 62 + duration: 54.688069ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3101,8 +2515,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f315fc8-79a8-4999-9b17-82555b252b19 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 method: DELETE response: proto: HTTP/2.0 @@ -3119,9 +2533,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3129,11 +2543,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2026dea3-9052-448b-9ccc-2ad9fbfcceb1 + - 8191b3f0-986f-45fc-8fb5-b58864ed71fb status: 204 No Content code: 204 - duration: 178.684391ms - - id: 63 + duration: 70.173104ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3148,8 +2562,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/97634643-5595-4edd-949a-0f15a8b29240 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d method: GET response: proto: HTTP/2.0 @@ -3159,7 +2573,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"97634643-5595-4edd-949a-0f15a8b29240","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","type":"not_found"}' headers: Content-Length: - "143" @@ -3168,9 +2582,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3178,7 +2592,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e57543f-f51e-48df-a765-8e0cbc4dbf8c + - 3bead1fb-b7cc-41bf-be26-3902b1305ec6 status: 404 Not Found code: 404 - duration: 103.48589ms + duration: 43.755146ms diff --git a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml index a328ce070..8b40d4299 100644 --- a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml +++ b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-brave-lederberg","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"max_availability"}' + body: '{"name":"tf-pg-charming-snyder","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","policy_mode":"enforced","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 327 uncompressed: false - body: '{"placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "327" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0b4dd050-4eaf-4e3a-b4f4-e8752c33309a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2227bade-cae3-4c2c-9b51-4df7490aa68e + - 6fe6037a-3791-45b7-8d42-3f720f4b72f2 status: 201 Created code: 201 - duration: 236.674354ms + duration: 133.535074ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0b4dd050-4eaf-4e3a-b4f4-e8752c33309a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 327 uncompressed: false - body: '{"placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "327" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b2b1c73-a920-40e7-b473-d8af072831ce + - 52071e66-4fe9-4a3d-8362-bac4eb7ad83d status: 200 OK code: 200 - duration: 120.330936ms + duration: 59.76572ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d4452fd-1703-40e2-a69e-4b61d2f20a62 + - 9f695b2b-9598-478e-b88b-a53621c7a3d3 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 58.721319ms + duration: 43.757304ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 948267b9-564a-47e3-aed9-fe1b76d3ed45 + - 6a367308-3458-4c5e-977c-7e225b7da35c X-Total-Count: - "75" status: 200 OK code: 200 - duration: 76.183499ms + duration: 45.211648ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -244,11 +244,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -256,12 +256,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 535e42e6-511f-40fc-9abb-1c722f783c1d + - 4065589d-86f2-41f1-b99d-5a3ebd1ca0de X-Total-Count: - "75" status: 200 OK code: 200 - duration: 76.065157ms + duration: 53.054928ms - id: 5 request: proto: HTTP/1.1 @@ -277,7 +277,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -297,11 +297,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -309,12 +309,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52d9042b-8fe9-4b00-b4e7-ce3d3b486afc + - 2bd31cc7-bb38-4dce-93d3-204c28607e2d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.655998ms + duration: 59.173243ms - id: 6 request: proto: HTTP/1.1 @@ -330,7 +330,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -350,11 +350,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -362,12 +362,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1445dc0-40fd-4cee-8181-a219d72600db + - dee020f0-6290-4c45-9f2f-b8eb2d74acd4 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 54.393173ms + duration: 50.868929ms - id: 7 request: proto: HTTP/1.1 @@ -383,7 +383,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -403,11 +403,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -415,12 +415,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f1121f-f434-4dec-90e4-d69e3cac6a3c + - 93fb8de7-c4e8-4094-a1fe-5a838680f5ae X-Total-Count: - "75" status: 200 OK code: 200 - duration: 57.176873ms + duration: 69.860602ms - id: 8 request: proto: HTTP/1.1 @@ -436,7 +436,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -445,20 +445,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -466,10 +466,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4b169e8-ce5b-4834-a011-f5f8335f2564 + - 3dc715c0-b694-48a7-b583-967c492cafb3 status: 200 OK code: 200 - duration: 77.706776ms + duration: 49.15853ms - id: 9 request: proto: HTTP/1.1 @@ -485,7 +485,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -494,20 +494,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -515,10 +515,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b5e3bea-1f78-4081-97a2-6c236d9717d7 + - cd4856b8-6807-4515-9ff4-8f0bc25a2350 status: 200 OK code: 200 - duration: 98.649563ms + duration: 54.598117ms - id: 10 request: proto: HTTP/1.1 @@ -534,7 +534,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -543,20 +543,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -564,10 +564,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcea2105-3b6d-4918-89a0-599a2eae000a + - b0527500-c6b7-402c-bbec-5f5a2a07d28f status: 200 OK code: 200 - duration: 122.90304ms + duration: 67.245577ms - id: 11 request: proto: HTTP/1.1 @@ -579,13 +579,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a"}' + body: '{"name":"tf-tests-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -594,22 +594,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:28:58.665284+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -617,10 +617,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3065957-f752-40a8-89aa-8cc105f711c0 + - bd4d3a32-6f3c-4607-99b7-8e11c3106323 status: 201 Created code: 201 - duration: 1.131732107s + duration: 515.764389ms - id: 12 request: proto: HTTP/1.1 @@ -636,8 +636,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -645,20 +645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:28:58.665284+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -666,48 +666,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f1cefee-e631-4eb6-9726-826f98c4a6a6 + - 15df9c5b-43b2-416d-a153-97ed915084bf status: 200 OK code: 200 - duration: 224.828496ms + duration: 106.654615ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 383 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:28:58.665284+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 08 Oct 2025 23:04:29 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -715,52 +719,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad507759-ef85-47a5-b198-44347776e157 - status: 200 OK - code: 200 - duration: 217.110842ms + - 109cae56-9afa-4cb5-a14b-60f5324bb264 + status: 201 Created + code: 201 + duration: 705.553437ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:28:59.582350+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -768,10 +768,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0850890-eb19-48b3-821b-aac4f9bfb37c - status: 201 Created - code: 201 - duration: 1.600207894s + - 1b32e4d8-c8fa-4f09-9f70-17d0e0715bc4 + status: 200 OK + code: 200 + duration: 106.968787ms - id: 15 request: proto: HTTP/1.1 @@ -787,8 +787,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -796,20 +796,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2142 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.843453Z","id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.843453Z","id":"12e10221-16b5-448d-bf7e-677641bd1c8b","product_resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.843453Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,10 +817,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3064bad8-3523-4411-97cd-d3ee9b0597d1 + - e1b011bd-e966-4725-afd7-45c25d045e57 status: 200 OK code: 200 - duration: 104.306853ms + duration: 88.831056ms - id: 16 request: proto: HTTP/1.1 @@ -836,8 +836,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -845,20 +845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:28:59.582350+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' headers: Content-Length: - - "2120" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -866,52 +866,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ae6acad-cfb6-4b8e-9914-027fd65aefe3 + - 450af152-c40b-438b-81c1-bfe765a9adab status: 200 OK code: 200 - duration: 282.858068ms + duration: 46.172818ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2142 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/action","href_result":"/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","id":"a2d1e5d3-3250-46de-a901-73fc180ed7de","progress":0,"started_at":"2025-06-10T15:29:00.308804+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a2d1e5d3-3250-46de-a901-73fc180ed7de + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -919,48 +915,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3993c68-b7de-4ff6-a3a0-9d322007c4e8 - status: 202 Accepted - code: 202 - duration: 294.486948ms + - 66b6bf57-33a9-487a-97c4-7d10ac5f8664 + status: 200 OK + code: 200 + duration: 105.860444ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 383 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:28:59.582350+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -968,10 +968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e17fb30-2e66-43ea-abdb-341f4e80429d - status: 200 OK - code: 200 - duration: 161.977773ms + - 84787122-6307-4b66-845a-afe86c1e761a + status: 201 Created + code: 201 + duration: 900.969489ms - id: 19 request: proto: HTTP/1.1 @@ -987,8 +987,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -996,20 +996,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:00.087971+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' headers: Content-Length: - - "2142" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1017,10 +1017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ee1730-0063-44f0-b790-05afbda40a92 + - 2d3d1f78-172b-4fa3-b29f-0cc7725919d5 status: 200 OK code: 200 - duration: 220.235202ms + duration: 47.207165ms - id: 20 request: proto: HTTP/1.1 @@ -1036,8 +1036,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -1045,20 +1045,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2142 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.862399Z","id":"5db62e72-aaac-41ac-b39f-54c900e0df45","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.862399Z","id":"a71116ee-8398-4f11-a9a2-dc4a033fe35c","product_resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.862399Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1066,52 +1066,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af08a53f-fa91-4f43-b05d-d937fbc52fca + - 4ecb9ab4-6f96-4ee4-8554-a9c4009d67f8 status: 200 OK code: 200 - duration: 135.532134ms + duration: 105.008575ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2142 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:00.157043+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1119,10 +1115,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9464cd40-a1dd-4b02-b083-c91bdc34b9bb - status: 201 Created - code: 201 - duration: 2.220401221s + - 63772870-5869-4c23-9f6b-40bdcbb738db + status: 200 OK + code: 200 + duration: 110.895121ms - id: 22 request: proto: HTTP/1.1 @@ -1140,8 +1136,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/action method: POST response: proto: HTTP/2.0 @@ -1151,7 +1147,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/action","href_result":"/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","id":"cc83f54c-3690-4006-a45b-966249d4c3c3","progress":0,"started_at":"2025-06-10T15:29:00.835236+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3486feb6-39cc-485c-9746-db487fed0c26/action","href_result":"/servers/3486feb6-39cc-485c-9746-db487fed0c26","id":"458885cc-a5b0-4d82-b5d4-a8ecb85a3d5d","progress":0,"started_at":"2025-10-08T23:04:30.247452+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1160,11 +1156,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cc83f54c-3690-4006-a45b-966249d4c3c3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/458885cc-a5b0-4d82-b5d4-a8ecb85a3d5d Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1172,10 +1168,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a423bb3a-128b-4839-b5d9-66d556986371 + - 56d67fa6-cf88-43fc-b5ca-c6f8518f9912 status: 202 Accepted code: 202 - duration: 309.319636ms + duration: 212.939805ms - id: 23 request: proto: HTTP/1.1 @@ -1191,8 +1187,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -1200,20 +1196,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:00.157043+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' headers: Content-Length: - - "2120" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1221,48 +1217,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2618e8b4-a589-40eb-b565-682767d5bf82 + - ccc1e88c-b44e-4cbf-9740-f0cc253a1912 status: 200 OK code: 200 - duration: 243.4764ms + duration: 44.472118ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:00.635616+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action","href_result":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71","id":"cf662c5b-aa81-44a5-918e-59ee0ec963fd","progress":0,"started_at":"2025-10-08T23:04:30.266717+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:04:30 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cf662c5b-aa81-44a5-918e-59ee0ec963fd Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1270,10 +1270,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45e8022-4476-4f7e-9d20-40df7118c0d5 - status: 200 OK - code: 200 - duration: 240.525255ms + - d74cf796-a65f-4635-9670-c83b472529ba + status: 202 Accepted + code: 202 + duration: 384.262422ms - id: 25 request: proto: HTTP/1.1 @@ -1289,8 +1289,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -1298,20 +1298,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2120 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:00.157043+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2120" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1319,10 +1319,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c182c91f-8557-46f7-bbc6-f0c12385e1d7 + - 371d0d4b-b208-440f-b5a9-d8166540acb8 status: 200 OK code: 200 - duration: 255.280168ms + duration: 111.414834ms - id: 26 request: proto: HTTP/1.1 @@ -1338,8 +1338,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -1347,20 +1347,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2164 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.932780Z","id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.932780Z","id":"55ed33c0-fba5-4d5a-b30d-93e365fd653c","product_resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.932780Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.938447+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1368,10 +1368,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fefb5751-2237-450f-bea3-19f734acd99c + - 81898c9d-91b8-4054-bde6-f2bc43c4cc93 status: 200 OK code: 200 - duration: 93.087902ms + duration: 101.460082ms - id: 27 request: proto: HTTP/1.1 @@ -1389,8 +1389,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action method: POST response: proto: HTTP/2.0 @@ -1400,7 +1400,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/action","href_result":"/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7","id":"eee82658-4fe9-443b-92e4-7d2278d6475e","progress":0,"started_at":"2025-06-10T15:29:01.483322+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action","href_result":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09","id":"16fc436c-6225-48de-877d-3c9242e321cb","progress":0,"started_at":"2025-10-08T23:04:30.469361+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1409,11 +1409,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eee82658-4fe9-443b-92e4-7d2278d6475e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16fc436c-6225-48de-877d-3c9242e321cb Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1421,10 +1421,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56da14f9-4b53-4c71-8aae-38fcfa0edf5f + - 48b65fe5-d6e0-48e0-aa81-774ce7c05a0b status: 202 Accepted code: 202 - duration: 260.392025ms + duration: 214.813266ms - id: 28 request: proto: HTTP/1.1 @@ -1440,8 +1440,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -1449,20 +1449,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:01.308136+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1470,10 +1470,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31b9a40d-1ab2-4e45-b916-2ddd1dd229f1 + - d1538796-cf6b-4f6d-aeae-1c70960aead3 status: 200 OK code: 200 - duration: 188.932666ms + duration: 119.005686ms - id: 29 request: proto: HTTP/1.1 @@ -1489,8 +1489,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -1498,20 +1498,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:03.435164+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1519,10 +1519,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12c83252-97ec-441b-a3c6-018a604d7c58 + - 85c46c53-5756-4ebf-a7a7-e8a8eeaeacb6 status: 200 OK code: 200 - duration: 259.521872ms + duration: 112.214943ms - id: 30 request: proto: HTTP/1.1 @@ -1538,8 +1538,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -1547,20 +1547,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2298 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:03.435164+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1568,10 +1568,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 510ded32-1e58-4011-ae1f-ae1c21692281 + - a0c2b415-2a06-4e01-9452-791b9e655cd8 status: 200 OK code: 200 - duration: 252.991815ms + duration: 103.569947ms - id: 31 request: proto: HTTP/1.1 @@ -1587,8 +1587,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -1596,20 +1596,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2298 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1617,10 +1617,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7651996-cee3-4e62-89c9-acde1a7b8966 - status: 404 Not Found - code: 404 - duration: 77.913233ms + - ac8ffaea-a291-4e3a-8962-ac73840e99fd + status: 200 OK + code: 200 + duration: 91.29612ms - id: 32 request: proto: HTTP/1.1 @@ -1636,8 +1636,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -1645,20 +1645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.843453Z","id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.843453Z","id":"12e10221-16b5-448d-bf7e-677641bd1c8b","product_resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.843453Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1666,10 +1666,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4187548a-8f46-471f-a7b3-9b9d97a346ce - status: 200 OK - code: 200 - duration: 140.98501ms + - cdfd3214-fdea-44c6-af62-b48b010a44e4 + status: 404 Not Found + code: 404 + duration: 27.471933ms - id: 33 request: proto: HTTP/1.1 @@ -1685,8 +1685,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -1694,20 +1694,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1715,10 +1715,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a2e64a6-f219-4ebb-b2e4-bf7bea1ba002 + - c6a3fa58-fb0f-4e02-a3eb-3c3f3cd54b3f status: 200 OK code: 200 - duration: 89.186856ms + duration: 53.760553ms - id: 34 request: proto: HTTP/1.1 @@ -1734,8 +1734,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -1743,20 +1743,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:00.635616+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1764,10 +1764,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5bb67d7-0ed6-4cc7-b3e9-e99bd2cb0fb7 + - 1647bf43-d111-4c66-9cbe-c23d120bff10 status: 200 OK code: 200 - duration: 243.387893ms + duration: 111.691313ms - id: 35 request: proto: HTTP/1.1 @@ -1783,8 +1783,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/user_data method: GET response: proto: HTTP/2.0 @@ -1792,22 +1792,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1815,12 +1813,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be18f206-0ff2-422d-908c-e859ec527ad6 - X-Total-Count: - - "0" + - 33457f46-c6f0-4e8e-9ff9-73cf5474c13d status: 200 OK code: 200 - duration: 108.537867ms + duration: 53.249257ms - id: 36 request: proto: HTTP/1.1 @@ -1836,8 +1832,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/private_nics method: GET response: proto: HTTP/2.0 @@ -1845,20 +1841,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:01.308136+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2142" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 08 Oct 2025 23:04:35 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1866,10 +1864,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f27c9534-6915-4854-900e-14e135ea93c6 + - ea6c5f6d-8af4-4e45-91ad-be2bbe7073a0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 218.377427ms + duration: 53.222027ms - id: 37 request: proto: HTTP/1.1 @@ -1885,8 +1885,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -1894,20 +1894,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:00.635616+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1915,10 +1915,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5f326ee-a107-4398-b631-85712d2ced51 + - 064acdab-c095-425d-ba28-a9ff9938e904 status: 200 OK code: 200 - duration: 245.582248ms + duration: 121.776673ms - id: 38 request: proto: HTTP/1.1 @@ -1934,8 +1934,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -1943,20 +1943,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2164 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:01.308136+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1964,10 +1964,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cc87408-12d4-4be8-87bc-f27585fd1065 + - cd0c7815-2e2f-406f-9b72-846daa7f39ad status: 200 OK code: 200 - duration: 198.2563ms + duration: 110.425525ms - id: 39 request: proto: HTTP/1.1 @@ -1983,8 +1983,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -1992,20 +1992,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2268 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:16.138024+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2268" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2013,10 +2013,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40dce9ed-ab3d-4523-9639-f06d16a2dc30 + - 473fc8ad-fa5f-40aa-aaad-dd324f31895d status: 200 OK code: 200 - duration: 181.111616ms + duration: 113.744421ms - id: 40 request: proto: HTTP/1.1 @@ -2032,8 +2032,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -2041,20 +2041,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2266 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:16.138024+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2266" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2062,10 +2062,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 896c12f6-0179-4994-96ba-ab7f43f41174 + - 67afe5aa-b36b-4035-8313-19dbf9b9d033 status: 200 OK code: 200 - duration: 210.803181ms + duration: 116.290116ms - id: 41 request: proto: HTTP/1.1 @@ -2081,8 +2081,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -2090,20 +2090,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2299 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5db62e72-aaac-41ac-b39f-54c900e0df45","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2111,10 +2111,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3ded476-5dc4-4ec3-b38f-3f29d2b964c2 - status: 404 Not Found - code: 404 - duration: 34.776691ms + - 60c44e22-1c81-4777-8680-ee1a0849fe92 + status: 200 OK + code: 200 + duration: 122.857871ms - id: 42 request: proto: HTTP/1.1 @@ -2130,8 +2130,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -2139,20 +2139,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2299 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.862399Z","id":"5db62e72-aaac-41ac-b39f-54c900e0df45","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.862399Z","id":"a71116ee-8398-4f11-a9a2-dc4a033fe35c","product_resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.862399Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2160,10 +2160,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e48eed8b-e662-4e01-86ac-7d636af3340c + - 452a3085-1abc-43d7-8be8-3eb7614fa8d8 status: 200 OK code: 200 - duration: 79.094809ms + duration: 117.861645ms - id: 43 request: proto: HTTP/1.1 @@ -2179,8 +2179,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -2188,20 +2188,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2209,10 +2209,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29cf0b60-a92b-4c5f-87d1-d7e05e4b146f - status: 200 OK - code: 200 - duration: 129.354699ms + - 2414d404-5653-47a5-b0aa-498841d81f7a + status: 404 Not Found + code: 404 + duration: 28.863859ms - id: 44 request: proto: HTTP/1.1 @@ -2228,8 +2228,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -2237,20 +2237,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:01.308136+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' headers: Content-Length: - - "2142" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2258,10 +2258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8bdd0a2-f455-4681-989a-3588fdd4704b + - 4839d4ba-4d01-438b-8f76-7f4d45e5a74d status: 200 OK code: 200 - duration: 201.627181ms + duration: 40.96675ms - id: 45 request: proto: HTTP/1.1 @@ -2277,8 +2277,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -2286,22 +2286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2297 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT - Link: - - ; rel="last" + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2309,12 +2307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8622df3a-c377-480e-a453-a3c15e935c0d - X-Total-Count: - - "0" + - 6e143aa9-5b0b-4462-b984-a645fbc3cfc4 status: 200 OK code: 200 - duration: 118.972597ms + duration: 105.578301ms - id: 46 request: proto: HTTP/1.1 @@ -2330,8 +2326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/user_data method: GET response: proto: HTTP/2.0 @@ -2339,20 +2335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2244 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:01.308136+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2244" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:22 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2360,10 +2356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb82a089-4033-4718-a2bc-2247884e012d + - 2b3bbff1-69f6-4b72-8036-fcfd99c0881d status: 200 OK code: 200 - duration: 203.529118ms + duration: 52.898132ms - id: 47 request: proto: HTTP/1.1 @@ -2379,8 +2375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/private_nics method: GET response: proto: HTTP/2.0 @@ -2388,20 +2384,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:23.093784+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2275" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:04:51 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2409,10 +2407,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d558551-713a-4d44-848e-2b2d89eaa81b + - 6c330d01-eb61-40dd-b39d-415fd0657574 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 177.327639ms + duration: 53.415671ms - id: 48 request: proto: HTTP/1.1 @@ -2428,8 +2428,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -2437,20 +2437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:23.093784+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2275" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2458,10 +2458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2681eb0a-8b17-42ec-a3c2-0ad6c55a5d8b + - 915ce5a8-3fa2-4e37-9a94-3d16f4327843 status: 200 OK code: 200 - duration: 189.73637ms + duration: 101.015408ms - id: 49 request: proto: HTTP/1.1 @@ -2477,8 +2477,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -2488,7 +2488,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' headers: Content-Length: - "143" @@ -2497,9 +2497,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:27 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2507,10 +2507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a43b44b5-d2ac-4553-a3b1-1bdbde639bf7 + - 1052c18b-b415-4d7a-94a0-7868577a35c4 status: 404 Not Found code: 404 - duration: 36.910173ms + duration: 27.306394ms - id: 50 request: proto: HTTP/1.1 @@ -2526,8 +2526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -2537,7 +2537,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.932780Z","id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.932780Z","id":"55ed33c0-fba5-4d5a-b30d-93e365fd653c","product_resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.932780Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2546,9 +2546,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2556,10 +2556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a4a2211-e3a5-46a4-9bbd-f225b1c39f42 + - 254acc95-4eca-4d55-8f2c-17dd5e5557ea status: 200 OK code: 200 - duration: 98.155305ms + duration: 46.252581ms - id: 51 request: proto: HTTP/1.1 @@ -2575,8 +2575,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/user_data method: GET response: proto: HTTP/2.0 @@ -2595,9 +2595,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2605,10 +2605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 568e650e-c1c8-4402-813c-b018bab1573f + - bb435770-29ff-499b-83e5-5daaddbbcca9 status: 200 OK code: 200 - duration: 101.729237ms + duration: 56.333646ms - id: 52 request: proto: HTTP/1.1 @@ -2624,8 +2624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/private_nics method: GET response: proto: HTTP/2.0 @@ -2644,11 +2644,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2656,12 +2656,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35584945-d349-4fe3-af6a-36b8dc09c774 + - e2810df3-b3a4-40fb-949f-6b5683a902b9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.074933ms + duration: 46.006505ms - id: 53 request: proto: HTTP/1.1 @@ -2677,8 +2677,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -2686,20 +2686,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2298 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:16.138024+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2707,10 +2707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d26ebf6b-2f42-4888-b936-5abc815f6853 + - ad866c08-d379-4c02-a25e-21b6073518a0 status: 200 OK code: 200 - duration: 220.760014ms + duration: 103.546476ms - id: 54 request: proto: HTTP/1.1 @@ -2726,8 +2726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -2735,20 +2735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:23.093784+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2275" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:28 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2756,10 +2756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2db7603f-fbd1-49b2-bfb2-c722196ef1e5 + - 2faeff4b-014a-4abd-9230-6b1c928c1c1a status: 200 OK code: 200 - duration: 247.367404ms + duration: 103.239799ms - id: 55 request: proto: HTTP/1.1 @@ -2775,8 +2775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -2784,20 +2784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2299 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:03.435164+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2805,10 +2805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d45bb10-57fd-467c-86e2-52147f176128 + - 939651f0-60c0-4aca-b6a8-45199e0f8e1e status: 200 OK code: 200 - duration: 276.553932ms + duration: 110.905228ms - id: 56 request: proto: HTTP/1.1 @@ -2824,8 +2824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0b4dd050-4eaf-4e3a-b4f4-e8752c33309a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 method: GET response: proto: HTTP/2.0 @@ -2835,7 +2835,7 @@ interactions: trailer: {} content_length: 327 uncompressed: false - body: '{"placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "327" @@ -2844,9 +2844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Wed, 08 Oct 2025 23:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2854,10 +2854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f7747f-b986-4e22-b258-81fc3c6fabbb + - cab63117-a40b-464f-b4b4-4440e5d6ab4b status: 200 OK code: 200 - duration: 136.091823ms + duration: 58.115146ms - id: 57 request: proto: HTTP/1.1 @@ -2873,8 +2873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0b4dd050-4eaf-4e3a-b4f4-e8752c33309a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 method: GET response: proto: HTTP/2.0 @@ -2884,7 +2884,7 @@ interactions: trailer: {} content_length: 327 uncompressed: false - body: '{"placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "327" @@ -2893,9 +2893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2903,10 +2903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 436b4ae7-3e51-4a74-9013-446294b525da + - f5e24b85-a8c4-4f6a-9c12-068fe84b6197 status: 200 OK code: 200 - duration: 97.162673ms + duration: 63.188333ms - id: 58 request: proto: HTTP/1.1 @@ -2922,8 +2922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -2931,20 +2931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:03.435164+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2952,10 +2952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3595f09f-5436-487a-b71b-5ccae43d670f + - f0528402-a87b-4a25-8cc8-02281531d7e2 status: 200 OK code: 200 - duration: 255.585136ms + duration: 96.967348ms - id: 59 request: proto: HTTP/1.1 @@ -2971,8 +2971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -2980,20 +2980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2276 + content_length: 2299 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:16.138024+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2276" + - "2299" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3001,10 +3001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da5306c-6e18-47e3-97ee-8a1ff939ed5c + - dd0b0cc4-891b-42e7-b283-1ebbf8d2d198 status: 200 OK code: 200 - duration: 273.864136ms + duration: 100.009233ms - id: 60 request: proto: HTTP/1.1 @@ -3020,8 +3020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -3029,20 +3029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2275 + content_length: 2298 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:23.093784+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0b4dd050-4eaf-4e3a-b4f4-e8752c33309a","name":"tf-pg-brave-lederberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2275" + - "2298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3050,10 +3050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6aa95d1c-65de-4127-b19e-0044c07aada3 + - 113db688-f50b-47da-a9c8-0edf88f67c94 status: 200 OK code: 200 - duration: 290.741339ms + duration: 109.04371ms - id: 61 request: proto: HTTP/1.1 @@ -3069,8 +3069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -3080,7 +3080,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' headers: Content-Length: - "143" @@ -3089,9 +3089,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3099,10 +3099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bac693cc-a5e2-49df-8f92-914ecbcd5fa0 + - 487a96df-6195-4513-8788-7f251027e14d status: 404 Not Found code: 404 - duration: 43.027997ms + duration: 30.017105ms - id: 62 request: proto: HTTP/1.1 @@ -3118,8 +3118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -3129,7 +3129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5db62e72-aaac-41ac-b39f-54c900e0df45","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' headers: Content-Length: - "143" @@ -3138,9 +3138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,10 +3148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 231b6a9f-23ef-479d-8dcf-885ef05de241 + - b68091d5-ff4e-4bae-9eb2-6b43976c3435 status: 404 Not Found code: 404 - duration: 51.08141ms + duration: 35.562148ms - id: 63 request: proto: HTTP/1.1 @@ -3167,8 +3167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -3178,7 +3178,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' headers: Content-Length: - "143" @@ -3187,9 +3187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3197,10 +3197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7d87b07-d2bd-411b-b421-f974d54c7c59 + - 8b51c0f0-141f-4171-9913-ec2509a99011 status: 404 Not Found code: 404 - duration: 67.869424ms + duration: 30.042142ms - id: 64 request: proto: HTTP/1.1 @@ -3216,8 +3216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -3227,7 +3227,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.843453Z","id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.843453Z","id":"12e10221-16b5-448d-bf7e-677641bd1c8b","product_resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.843453Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3236,9 +3236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3246,10 +3246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f524b3e2-53d7-4c21-b562-3beb4264a18a + - e6cb4c95-256b-43bc-8848-ff2d98a4a24e status: 200 OK code: 200 - duration: 108.431066ms + duration: 43.176032ms - id: 65 request: proto: HTTP/1.1 @@ -3265,8 +3265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -3276,7 +3276,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.862399Z","id":"5db62e72-aaac-41ac-b39f-54c900e0df45","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.862399Z","id":"a71116ee-8398-4f11-a9a2-dc4a033fe35c","product_resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.862399Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3285,9 +3285,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,10 +3295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb81e278-e86a-40e4-bbd2-c7ce23994a84 + - c48c0971-197b-4457-9e87-f477b334e38c status: 200 OK code: 200 - duration: 126.655295ms + duration: 39.986113ms - id: 66 request: proto: HTTP/1.1 @@ -3314,8 +3314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -3325,7 +3325,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.932780Z","id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.932780Z","id":"55ed33c0-fba5-4d5a-b30d-93e365fd653c","product_resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.932780Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3334,9 +3334,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,10 +3344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 548c08c9-af3b-4dcf-a756-0e70e1e27017 + - 326e373c-9cce-4146-add9-9af6aaa1fa5e status: 200 OK code: 200 - duration: 138.490962ms + duration: 51.5421ms - id: 67 request: proto: HTTP/1.1 @@ -3363,8 +3363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/user_data method: GET response: proto: HTTP/2.0 @@ -3383,9 +3383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3393,10 +3393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66ba15e4-7576-488e-b5aa-2815ff5bd5bc + - c6ce62cf-1d91-4c6c-b8ae-9e4d52cd427d status: 200 OK code: 200 - duration: 106.584994ms + duration: 47.60657ms - id: 68 request: proto: HTTP/1.1 @@ -3412,8 +3412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/user_data method: GET response: proto: HTTP/2.0 @@ -3432,9 +3432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3442,10 +3442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c80ead24-0711-49dc-bdcc-1aff0dd75322 + - e96efafc-dfc3-4592-91ce-0fa121acba7c status: 200 OK code: 200 - duration: 132.008555ms + duration: 56.536351ms - id: 69 request: proto: HTTP/1.1 @@ -3461,8 +3461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/user_data method: GET response: proto: HTTP/2.0 @@ -3481,9 +3481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3491,10 +3491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa41edca-089d-4eba-b55f-365198eb9674 + - 651adf54-0855-43fa-a193-84b061704201 status: 200 OK code: 200 - duration: 114.285807ms + duration: 55.089141ms - id: 70 request: proto: HTTP/1.1 @@ -3510,8 +3510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/private_nics method: GET response: proto: HTTP/2.0 @@ -3530,11 +3530,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3542,12 +3542,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 605f5fba-ef47-4099-91a1-57e1c9ca6a04 + - 87a05fb7-eb01-43fd-b9e6-cf856689d47a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 133.83514ms + duration: 54.526648ms - id: 71 request: proto: HTTP/1.1 @@ -3563,8 +3563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/private_nics method: GET response: proto: HTTP/2.0 @@ -3583,11 +3583,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3595,12 +3595,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40a1e0ef-bebb-47c4-a85c-2997ccb5d1eb + - 3f0da72c-6da6-40fa-9bf5-862813ad4b39 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 130.574486ms + duration: 57.355138ms - id: 72 request: proto: HTTP/1.1 @@ -3616,8 +3616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/private_nics method: GET response: proto: HTTP/2.0 @@ -3636,11 +3636,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3648,12 +3648,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b7e043f-ac82-4178-8a1f-13debadb1db8 + - 85581c66-eef0-45c9-8347-d80714f9feb8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 139.121435ms + duration: 51.760024ms - id: 73 request: proto: HTTP/1.1 @@ -3671,8 +3671,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: PATCH response: proto: HTTP/2.0 @@ -3680,20 +3680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.155958+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.775864+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3701,10 +3701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3db2bc9b-8fc9-496f-b8ac-21e23f44ff96 + - 4bc5cc0d-06a4-4b68-920c-a06708e1a8a8 status: 200 OK code: 200 - duration: 320.056398ms + duration: 135.523862ms - id: 74 request: proto: HTTP/1.1 @@ -3722,8 +3722,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: PATCH response: proto: HTTP/2.0 @@ -3731,20 +3731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1973 + content_length: 1994 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.196255+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:52.769776+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1973" + - "1994" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3752,10 +3752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17be2fa5-ee52-4e28-a1cd-1890c2e54b37 + - 3b7a9f83-401a-4f9a-ac93-a80d0d1d1fa0 status: 200 OK code: 200 - duration: 344.750811ms + duration: 157.672101ms - id: 75 request: proto: HTTP/1.1 @@ -3773,8 +3773,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: PATCH response: proto: HTTP/2.0 @@ -3782,20 +3782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1974 + content_length: 1996 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.149374+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:52.789250+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1974" + - "1996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3803,10 +3803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23e8379d-4c18-4977-9c2f-c9069e4a26c9 + - f30c068e-f49c-4472-b419-7bcdee2345e7 status: 200 OK code: 200 - duration: 378.947073ms + duration: 203.625628ms - id: 76 request: proto: HTTP/1.1 @@ -3822,8 +3822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -3831,20 +3831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1974 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.149374+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.775864+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1974" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3852,10 +3852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 340597b0-2def-4b79-a363-450d16fde9d2 + - bf551e53-9c17-454a-95fc-14bce1887010 status: 200 OK code: 200 - duration: 181.65858ms + duration: 88.011928ms - id: 77 request: proto: HTTP/1.1 @@ -3871,8 +3871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -3880,20 +3880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1994 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.155958+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:52.769776+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1994" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3901,10 +3901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea47d897-68c1-4627-9cb4-c477a754bd49 + - aa25b9aa-0615-4935-be08-e3069255f080 status: 200 OK code: 200 - duration: 242.896108ms + duration: 105.803697ms - id: 78 request: proto: HTTP/1.1 @@ -3920,8 +3920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -3929,20 +3929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1973 + content_length: 1996 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.196255+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:52.789250+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1973" + - "1996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3950,48 +3950,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24a7a5d6-2cbe-427b-b3ab-3f29777b5e32 + - d2f81a59-ca38-4d1e-adb0-b24209f7ef78 status: 200 OK code: 200 - duration: 233.701263ms + duration: 119.790808ms - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 353 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.843453Z","id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.843453Z","id":"12e10221-16b5-448d-bf7e-677641bd1c8b","product_resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.843453Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action","href_result":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71","id":"721964c5-ec3b-4485-82c9-8a24aa73ca04","progress":0,"started_at":"2025-10-08T23:04:53.080599+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/721964c5-ec3b-4485-82c9-8a24aa73ca04 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3999,48 +4003,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496e9880-8f99-46ca-ab55-9d79907e4bbd - status: 200 OK - code: 200 - duration: 92.150743ms + - f6ad02f9-f153-4688-b18a-bcde5dbab64a + status: 202 Accepted + code: 202 + duration: 169.695103ms - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 353 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.932780Z","id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.932780Z","id":"55ed33c0-fba5-4d5a-b30d-93e365fd653c","product_resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.932780Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/3486feb6-39cc-485c-9746-db487fed0c26/action","href_result":"/servers/3486feb6-39cc-485c-9746-db487fed0c26","id":"eea3f3e0-410f-42f0-b37d-a7a0549bb58c","progress":0,"started_at":"2025-10-08T23:04:53.173612+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:53 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eea3f3e0-410f-42f0-b37d-a7a0549bb58c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4048,10 +4056,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b290083-14ee-4610-b87b-9533ccb59468 - status: 200 OK - code: 200 - duration: 93.699127ms + - 4d050304-6cae-446e-85dd-e2637e099c54 + status: 202 Accepted + code: 202 + duration: 160.03082ms - id: 81 request: proto: HTTP/1.1 @@ -4067,8 +4075,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -4076,20 +4084,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1958 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.862399Z","id":"5db62e72-aaac-41ac-b39f-54c900e0df45","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:58.862399Z","id":"a71116ee-8398-4f11-a9a2-dc4a033fe35c","product_resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:58.862399Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4097,52 +4105,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0081143-c39a-4133-bfcb-285f095370ef + - 7294a31a-c5e7-4824-af7e-c7308afcf435 status: 200 OK code: 200 - duration: 131.88331ms + duration: 105.71337ms - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1959 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7/action","href_result":"/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7","id":"172d720a-f9c4-4c07-9da5-fbc6c918f43e","progress":0,"started_at":"2025-06-10T15:29:32.968810+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:53.058581+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1959" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/172d720a-f9c4-4c07-9da5-fbc6c918f43e + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4150,29 +4154,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 264b5fa8-7ce3-4346-a1b8-06ddcc774a23 - status: 202 Accepted - code: 202 - duration: 292.188102ms + - e1495b73-e0ad-411f-a036-281fe6101a6b + status: 200 OK + code: 200 + duration: 104.552308ms - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action method: POST response: proto: HTTP/2.0 @@ -4180,22 +4184,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f/action","href_result":"/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","id":"adfca5b9-fd49-44f0-acbd-6add6e73ddd5","progress":0,"started_at":"2025-06-10T15:29:33.015135+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action","href_result":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09","id":"c8179cb0-ec89-49cb-a1ce-a5cd96d12b76","progress":0,"started_at":"2025-10-08T23:04:53.330205+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Wed, 08 Oct 2025 23:04:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/adfca5b9-fd49-44f0-acbd-6add6e73ddd5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c8179cb0-ec89-49cb-a1ce-a5cd96d12b76 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4203,52 +4207,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74e4ff43-9ed1-4e46-a04f-00debfd7786b + - 6537b285-d63d-479a-95de-fe612c7ac4ea status: 202 Accepted code: 202 - duration: 329.347923ms + duration: 379.46365ms - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1957 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f/action","href_result":"/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","id":"447b9d4b-4f11-4510-8321-83a61794a8f5","progress":0,"started_at":"2025-06-10T15:29:33.022828+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/447b9d4b-4f11-4510-8321-83a61794a8f5 + - Wed, 08 Oct 2025 23:04:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4256,10 +4256,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b286a85b-e496-4d69-b7c1-ac36e1dde9ad - status: 202 Accepted - code: 202 - duration: 271.315727ms + - ab26df9b-aea3-4611-8c41-23d45bf04bce + status: 200 OK + code: 200 + duration: 111.539151ms - id: 85 request: proto: HTTP/1.1 @@ -4275,8 +4275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -4284,20 +4284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1932 + content_length: 1958 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1932" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4305,10 +4305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d662398-9164-47c3-b95d-228f5752d896 + - 159c83fc-1c9a-4d8c-ad77-ad7e1b14d916 status: 200 OK code: 200 - duration: 196.98806ms + duration: 103.778443ms - id: 86 request: proto: HTTP/1.1 @@ -4324,8 +4324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -4333,20 +4333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1934 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","type":"not_found"}' headers: Content-Length: - - "1934" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4354,10 +4354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a3a8f6a-6928-4f63-9311-49632f4c11f7 - status: 200 OK - code: 200 - duration: 227.27952ms + - f347ac28-f874-49f9-9a74-39202e7dc47c + status: 404 Not Found + code: 404 + duration: 51.954321ms - id: 87 request: proto: HTTP/1.1 @@ -4373,8 +4373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -4382,20 +4382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' headers: Content-Length: - - "1933" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4403,1087 +4403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2003696-b80c-4174-9738-5040922f70a7 - status: 200 OK - code: 200 - duration: 248.189295ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b39bd20b-a406-4427-bbc7-ad6aa8d0e0de - status: 200 OK - code: 200 - duration: 210.327547ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e33a264c-a0af-4c21-a327-f0547a983e5d - status: 200 OK - code: 200 - duration: 309.660059ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d8b1edf-fb3b-482e-a11e-6e815bdfec98 - status: 200 OK - code: 200 - duration: 2.438644912s - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4cac8f2a-8f5b-407b-ba69-719cd3e2919a - status: 200 OK - code: 200 - duration: 242.496868ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4b73c984-1c8e-41f1-b353-4c163035f0e8 - status: 200 OK - code: 200 - duration: 242.186135ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63969c0a-6f55-4abb-8a39-23d966a859a0 - status: 200 OK - code: 200 - duration: 246.542906ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c94e917-0c07-4bad-8f9c-4efa250b61e4 - status: 200 OK - code: 200 - duration: 222.797542ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0949c834-910f-4a80-a163-5b664952b30c - status: 200 OK - code: 200 - duration: 235.176849ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7beafba7-ba7f-4b05-907f-4a82903c8c1f - status: 200 OK - code: 200 - duration: 224.415156ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0fae1593-2112-4171-b916-d4ab4219afc5 - status: 200 OK - code: 200 - duration: 189.857835ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ed8d211d-c7a8-4678-9670-3f0b6e408e56 - status: 200 OK - code: 200 - duration: 174.442445ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:56 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d513fd3-f7af-4c85-9bf2-9068d839e88c - status: 200 OK - code: 200 - duration: 229.834178ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 78785186-0c3c-48f0-9a3d-43a71c496449 - status: 200 OK - code: 200 - duration: 156.959988ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75f4e3d4-a062-414a-868f-2d5286ce4934 - status: 200 OK - code: 200 - duration: 215.854591ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1932 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"83","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:29:32.771529+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1932" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 951b594a-2577-4186-b310-497aeaa24d27 - status: 200 OK - code: 200 - duration: 200.004544ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1934 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"147","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:29:32.772536+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1934" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 93e6498a-bae1-4c99-9db9-e680233b1690 - status: 200 OK - code: 200 - duration: 246.474264ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1933 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"140","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:29:32.845079+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1933" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1063fb99-f92e-43e5-aabf-4ef7a3452526 - status: 200 OK - code: 200 - duration: 184.847057ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1817 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:30:06.132854+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1817" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 30560056-c54d-4656-af23-0725b679bc3d - status: 200 OK - code: 200 - duration: 206.250478ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1817 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:29:00.157043+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:01","maintenances":[],"modification_date":"2025-06-10T15:30:06.132854+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1817" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d215b33a-831e-4af0-9e7c-df199fad9981 - status: 200 OK - code: 200 - duration: 361.300723ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ade7b301-8ca2-4185-aed6-3e5deba9d2f0 - status: 204 No Content - code: 204 - duration: 482.901757ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f0945efb-4cb0-4e77-900e-4757627b9eb2 - status: 404 Not Found - code: 404 - duration: 167.534098ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 216e3bb5-c339-447f-8524-c9fe4be9ded3 + - 9d318017-dfe1-4a66-b91c-13447ad4f94e status: 404 Not Found code: 404 - duration: 36.436834ms - - id: 110 + duration: 33.471263ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -5498,8 +4422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: GET response: proto: HTTP/2.0 @@ -5509,7 +4433,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.932780Z","id":"9720d020-e7f3-4e24-a096-8a94c104e3c2","last_detached_at":"2025-06-10T15:30:07.696393Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:07.696393Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":"2025-10-08T23:04:54.696805Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:54.696805Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -5518,9 +4442,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5528,11 +4452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254a8ece-b361-407b-a916-1f5093f85598 + - f6bc7220-5abe-49ae-97c1-2cf7045c91a1 status: 200 OK code: 200 - duration: 122.934535ms - - id: 111 + duration: 44.108288ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -5547,8 +4471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9720d020-e7f3-4e24-a096-8a94c104e3c2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b method: DELETE response: proto: HTTP/2.0 @@ -5565,9 +4489,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5575,11 +4499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba3c70a9-fc8a-40c9-aed4-319869794c49 + - de786a0d-dbf6-425b-a365-a17b11a417c0 status: 204 No Content code: 204 - duration: 183.963961ms - - id: 112 + duration: 74.045614ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -5594,8 +4518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -5603,20 +4527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1817 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:30:04.461298+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1817" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 08 Oct 2025 23:04:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5624,11 +4548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49410112-9f61-4983-a95e-6e922d7e756f + - b6ee9b07-395f-4731-ac43-262b03f26272 status: 200 OK code: 200 - duration: 168.658978ms - - id: 113 + duration: 103.716919ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -5643,8 +4567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -5652,20 +4576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1817 + content_length: 1958 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:30:06.395535+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1817" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5673,11 +4597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bb02176-3501-4760-a3fb-da2838e67d30 + - 6f7e71d7-d323-4702-8a15-a2c3307f9a93 status: 200 OK code: 200 - duration: 190.518563ms - - id: 114 + duration: 106.332481ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -5692,8 +4616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -5701,20 +4625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1817 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:58.665284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f3","maintenances":[],"modification_date":"2025-06-10T15:30:04.461298+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1817" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 08 Oct 2025 23:05:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5722,11 +4646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2ad76ff-68fb-4d76-99f2-aeb94dc35dd9 + - f7606443-87ec-418f-bb2e-1b5f4deba909 status: 200 OK code: 200 - duration: 225.422864ms - - id: 115 + duration: 121.970309ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -5741,8 +4665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -5750,20 +4674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1817 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-06-10T15:28:59.582350+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:f9","maintenances":[],"modification_date":"2025-06-10T15:30:06.395535+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"5db62e72-aaac-41ac-b39f-54c900e0df45","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","type":"not_found"}' headers: Content-Length: - - "1817" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5771,11 +4695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca4ab6b-1cbb-4ac4-a52a-20f9ff1a631e - status: 200 OK - code: 200 - duration: 209.606361ms - - id: 116 + - bb77c99b-64ec-49f3-b494-cfe0a57116b2 + status: 404 Not Found + code: 404 + duration: 48.201137ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -5790,27 +4714,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5818,11 +4744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 697fe3e4-19a6-4493-b07d-21ead91ee23f - status: 204 No Content - code: 204 - duration: 411.256962ms - - id: 117 + - 7e3d5d7c-68d9-46e8-8f36-da5b4f726486 + status: 404 Not Found + code: 404 + duration: 66.072071ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -5837,8 +4763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: GET response: proto: HTTP/2.0 @@ -5846,20 +4772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 494 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","type":"not_found"}' + body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":"2025-10-08T23:05:04.458472Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:04.458472Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5867,11 +4793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29ad39d4-09d1-4b62-952d-6ba64e543325 - status: 404 Not Found - code: 404 - duration: 93.110832ms - - id: 118 + - fa5147fa-930d-41a4-981b-1e1dee357de8 + status: 200 OK + code: 200 + duration: 50.118419ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5886,8 +4812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f method: DELETE response: proto: HTTP/2.0 @@ -5904,9 +4830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5914,60 +4840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 395dde56-0058-40ae-abf0-9514be343eea + - 185a1e39-2ccf-450f-bcd4-0ba8fdfa4901 status: 204 No Content code: 204 - duration: 409.799328ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - da758d8c-8d02-4785-a3e0-115a273efeca - status: 404 Not Found - code: 404 - duration: 48.534553ms - - id: 120 + duration: 86.451691ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5982,8 +4859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -5993,7 +4870,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","type":"not_found"}' headers: Content-Length: - "143" @@ -6002,9 +4879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6012,60 +4889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4c77e96-d50f-4cd1-87a8-7650a35e0d84 + - 5aa6257f-70bb-490a-bf7a-50fc5b604c9f status: 404 Not Found code: 404 - duration: 146.730422ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 494 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.843453Z","id":"6beae7a8-c4d6-461f-b3ea-9a5b65ba0017","last_detached_at":"2025-06-10T15:30:10.443200Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:10.443200Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "494" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d1d7501f-ba2d-4826-acaa-64ed78e800ec - status: 200 OK - code: 200 - duration: 132.468094ms - - id: 122 + duration: 47.174415ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -6080,8 +4908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -6091,7 +4919,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5db62e72-aaac-41ac-b39f-54c900e0df45","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' headers: Content-Length: - "143" @@ -6100,9 +4928,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6110,58 +4938,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43aeb87d-709b-4052-96ff-fb8c9943e0bf + - 044a4aec-0084-4d4c-9ec2-74360ae73408 status: 404 Not Found code: 404 - duration: 71.712531ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6beae7a8-c4d6-461f-b3ea-9a5b65ba0017 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f055cb4-fdae-49d6-9c19-37c6d803bd74 - status: 204 No Content - code: 204 - duration: 154.798032ms - - id: 124 + duration: 36.919038ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -6176,8 +4957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: GET response: proto: HTTP/2.0 @@ -6187,7 +4968,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:58.862399Z","id":"5db62e72-aaac-41ac-b39f-54c900e0df45","last_detached_at":"2025-06-10T15:30:10.577151Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:10.577151Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":"2025-10-08T23:05:04.702265Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:04.702265Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -6196,9 +4977,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6206,11 +4987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 685b1a46-beaf-4a6c-9f9a-f631feb994eb + - 9dd65464-9500-42be-adfe-691e1d146170 status: 200 OK code: 200 - duration: 121.403413ms - - id: 125 + duration: 45.831698ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -6225,8 +5006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5db62e72-aaac-41ac-b39f-54c900e0df45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c method: DELETE response: proto: HTTP/2.0 @@ -6243,9 +5024,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 08 Oct 2025 23:05:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6253,11 +5034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3214ac1d-51e4-4a5c-92f0-d6d558d255c3 + - 4ea44b17-063e-4fb9-a979-5d45cd05ad71 status: 204 No Content code: 204 - duration: 163.869956ms - - id: 126 + duration: 89.38203ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -6272,8 +5053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0b4dd050-4eaf-4e3a-b4f4-e8752c33309a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 method: DELETE response: proto: HTTP/2.0 @@ -6290,9 +5071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6300,11 +5081,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc1b6d02-0890-4120-9d84-cbda3574c578 + - 8af7329d-375e-41a3-9bb9-08e3b8adeccd status: 204 No Content code: 204 - duration: 214.085051ms - - id: 127 + duration: 101.805974ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -6319,8 +5100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 method: GET response: proto: HTTP/2.0 @@ -6330,7 +5111,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18bf21b3-f7f9-425e-bf8a-a3a9e0701b0f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","type":"not_found"}' headers: Content-Length: - "143" @@ -6339,9 +5120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6349,11 +5130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42e10810-c87a-43a6-8432-c6463c3fe721 + - a257e13e-3ff8-4519-9580-7fc8115937a7 status: 404 Not Found code: 404 - duration: 176.143414ms - - id: 128 + duration: 48.51063ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -6368,8 +5149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6f500c65-5698-4d62-bd3f-a878477ec6e7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 method: GET response: proto: HTTP/2.0 @@ -6379,7 +5160,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6f500c65-5698-4d62-bd3f-a878477ec6e7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","type":"not_found"}' headers: Content-Length: - "143" @@ -6388,9 +5169,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6398,11 +5179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85f61c7-97d4-46d5-b125-b07d89f7e200 + - b07ceb4c-5e28-4e03-a655-18bec4bc5f8b status: 404 Not Found code: 404 - duration: 153.473448ms - - id: 129 + duration: 52.142087ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -6417,8 +5198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/205819f4-de9c-4dbb-92c1-d9b89fcd3a0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 method: GET response: proto: HTTP/2.0 @@ -6428,7 +5209,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"205819f4-de9c-4dbb-92c1-d9b89fcd3a0f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","type":"not_found"}' headers: Content-Length: - "143" @@ -6437,9 +5218,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 08 Oct 2025 23:05:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6447,7 +5228,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79b837ca-89e4-4ccb-8d55-3c55c072c1e9 + - 545732f2-211a-44b3-829e-0ab2d0a883c9 status: 404 Not Found code: 404 - duration: 144.518223ms + duration: 47.610743ms diff --git a/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml b/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml index cde40cf47..5f6df4ca7 100644 --- a/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml +++ b/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a60c3404-bcd0-4ef2-b362-74d5ffb3430b + - 84aa745d-0baf-4776-9868-b3e9ae13710d status: 201 Created code: 201 - duration: 625.268942ms + duration: 2.033986649s - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c4a6290-c3da-46e8-a6ca-61b4db978846 + - 09f8e7b3-5fbc-4d43-b28d-aadc4b43cfb8 status: 200 OK code: 200 - duration: 152.285266ms + duration: 90.920176ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,11 +138,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 397a3a62-b011-48fe-a662-e077aa664ebe + - 6245f7d6-e1ce-4b63-873e-8590d546c6db X-Total-Count: - "75" status: 200 OK code: 200 - duration: 48.591949ms + duration: 50.21175ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa67c57d-b1ee-4682-92f3-0229e774fa1c + - 6d7c348c-459b-41c2-a21b-a851ba429774 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 80.095662ms + duration: 121.902533ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Wed, 08 Oct 2025 23:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d355118-e517-44fe-b7c6-1a957e310d95 + - df7eb46d-52eb-40d7-8dcd-28b7f11037c9 status: 200 OK code: 200 - duration: 79.665735ms + duration: 53.945679ms - id: 5 request: proto: HTTP/1.1 @@ -269,13 +269,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-romantic-buck","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"public_ip":"607a2b90-714b-4b39-8204-0b62ccbf959f","boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' + body: '{"name":"tf-srv-happy-galileo","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ip":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:08.259284+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb2c69af-c336-4a1d-9ba6-e4a895ae7696 + - b4c6898c-1cf0-44e4-a184-792ae5496b1b status: 201 Created code: 201 - duration: 1.080564374s + duration: 1.072714447s - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:08.259284+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef95ae2f-29b3-4d7b-8450-ad4db5260733 + - bafcfc31-2303-40ce-a783-35d9980b0f9a status: 200 OK code: 200 - duration: 217.203403ms + duration: 102.150471ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:08.259284+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4730d6c4-d2fd-48b0-a61b-f7d0a7dac2b4 + - 1bd98187-97d8-44d8-92cf-c4ecb62c156e status: 200 OK code: 200 - duration: 206.750129ms + duration: 139.097928ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f8dac78-85c1-405d-8cc6-98a80bbfc95a + - 72c9c1c1-d744-4def-8efd-44dc2265e0b9 status: 200 OK code: 200 - duration: 90.06602ms + duration: 46.658067ms - id: 9 request: proto: HTTP/1.1 @@ -475,8 +475,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/action","href_result":"/servers/efbb7a0e-041a-41cc-9978-540cb5414efa","id":"7cbd0e97-0393-4f6c-91db-f294c9af4521","progress":0,"started_at":"2025-06-10T15:31:09.798031+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action","href_result":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03","id":"fd5af8ae-ac5b-43b7-b69a-92799997178c","progress":0,"started_at":"2025-10-08T23:04:30.927332+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7cbd0e97-0393-4f6c-91db-f294c9af4521 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fd5af8ae-ac5b-43b7-b69a-92799997178c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1274291-f4e4-4aef-8ece-947bab0960cc + - 60ba4c67-fbf7-4278-8d88-440ab5702a1e status: 202 Accepted code: 202 - duration: 251.604259ms + duration: 234.838814ms - id: 10 request: proto: HTTP/1.1 @@ -526,8 +526,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -535,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:09.603962+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:30.735401+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2319" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Wed, 08 Oct 2025 23:04:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84a8bc3d-87d1-4244-b73c-be6b881369dc + - 2c9b4418-a7cd-4736-b5c5-b231d8371b55 status: 200 OK code: 200 - duration: 298.199044ms + duration: 98.784274ms - id: 11 request: proto: HTTP/1.1 @@ -575,8 +575,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -584,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:15 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f55a256-cf09-424f-8e7e-18b0826201c8 + - 91de76b8-4249-43c6-9292-bb547c422462 status: 200 OK code: 200 - duration: 520.201397ms + duration: 92.145163ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9cbf502-72ad-4301-9d56-794e042ff7c8 + - d0842323-2c79-4570-af79-3c6239d1326d status: 200 OK code: 200 - duration: 372.655468ms + duration: 88.751716ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4e7de65-907c-48c2-9f36-af55a145a977 + - 05243ffb-3a7c-41dd-a5e0-a682a589aff7 status: 404 Not Found code: 404 - duration: 41.09538ms + duration: 47.243841ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2228dde7-db49-48a9-bf89-be5bd2ad7812 + - fb007e16-6c89-4d98-84f4-2cdeeb99b3a4 status: 200 OK code: 200 - duration: 96.733615ms + duration: 51.63191ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0459047-f791-450d-9687-0275c6b0f180 + - 3c5fb609-d162-4e0a-b574-469fe6efe1bf status: 200 OK code: 200 - duration: 162.47745ms + duration: 52.231981ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a669b313-7473-478e-8ecf-40c23e48982a + - 32a35e74-2ac5-445d-b2ee-50ed4b973cb1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 117.943621ms + duration: 59.736404ms - id: 17 request: proto: HTTP/1.1 @@ -873,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Wed, 08 Oct 2025 23:04:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a46bde34-0b21-4b18-b890-adfd0e9585e2 + - 8cf1cd8f-4c95-4100-847b-b3d42c3b8a52 status: 200 OK code: 200 - duration: 192.339143ms + duration: 120.808943ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 438 + content_length: 440 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "438" + - "440" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2764a613-2968-4816-82c6-4a04ef76c3ac + - d536cac8-2905-4c57-b3b6-b758b104907c status: 200 OK code: 200 - duration: 119.129695ms + duration: 83.257177ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2abd3db-4829-4299-8046-931537d9d70d + - 970f29ff-d1c1-46ce-ad1b-a83933b78a01 status: 200 OK code: 200 - duration: 546.100145ms + duration: 107.386046ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a79349e-20bf-4985-b3a4-e31c4b45c273 + - 83559749-3438-46c0-b225-07da4ca64821 status: 404 Not Found code: 404 - duration: 49.226639ms + duration: 35.477313ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08033396-47be-44c6-80a7-35f9fcf63bc9 + - 8138040f-8045-4e5d-92fc-461f2710c6bc status: 200 OK code: 200 - duration: 83.641662ms + duration: 40.860766ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f6ebd81-187f-499a-9d7e-fe4ee0c0cc6b + - 3ee3a95d-d751-4c23-9a55-eebabfe27fad status: 200 OK code: 200 - duration: 95.464634ms + duration: 51.220738ms - id: 23 request: proto: HTTP/1.1 @@ -1167,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53436b8e-5009-4321-8665-44a42c49ee2b + - 69b16f74-d6bf-4205-a521-495050123549 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 118.036986ms + duration: 53.593093ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 438 + content_length: 440 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "438" + - "440" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd086754-17ae-432e-ae42-a795a27847f3 + - 88a0e0c1-704a-4198-bfe5-614ea0eff442 status: 200 OK code: 200 - duration: 101.076028ms + duration: 81.747029ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d833638e-c0e7-4481-9f49-4c774acd5492 + - ec5e1876-f9a8-4417-b835-f9e23da8e448 status: 200 OK code: 200 - duration: 199.164934ms + duration: 100.821885ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6728f64-ed9b-4564-865b-996813d86671 + - 3ca8ef4b-50de-4616-8a67-bae1738d08ab status: 404 Not Found code: 404 - duration: 77.375891ms + duration: 26.748172ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 994d2dd5-75ff-4da7-b518-c1dac81af8dd + - 656c6217-f1b5-41d5-a791-464852a4edff status: 200 OK code: 200 - duration: 106.602012ms + duration: 38.414344ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61217271-fa32-45ce-bbe9-a7aef96ea8c6 + - 775a3dcf-c352-48ad-bea6-ef10c0cec534 status: 200 OK code: 200 - duration: 102.8527ms + duration: 64.028484ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72855a11-260c-45a4-97c7-be99c0c7de12 + - d013f5d0-4b7a-4fee-8a40-5f9c657dbe3e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 136.092938ms + duration: 67.022702ms - id: 30 request: proto: HTTP/1.1 @@ -1514,13 +1514,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -1529,22 +1529,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,10 +1552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a47494d7-bf57-4053-b30c-f10b63816c70 + - 143743e4-fbe2-430d-88ef-53b92d8d2e03 status: 201 Created code: 201 - duration: 566.220859ms + duration: 352.3841ms - id: 31 request: proto: HTTP/1.1 @@ -1571,8 +1571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -1580,20 +1580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1601,10 +1601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b5a40b-95bd-41ab-bfbc-97a59c892053 + - d8191e1f-d838-41fa-aa38-18b3fc704524 status: 200 OK code: 200 - duration: 153.576197ms + duration: 81.697947ms - id: 32 request: proto: HTTP/1.1 @@ -1620,8 +1620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1629,20 +1629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:22 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1650,10 +1650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11a736d4-92b1-4aec-a05f-4188d42eaf9c + - 434f15b5-df87-4cc7-87a2-21023d127542 status: 200 OK code: 200 - duration: 235.75285ms + duration: 104.078208ms - id: 33 request: proto: HTTP/1.1 @@ -1669,8 +1669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1678,20 +1678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.217.73","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2479" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:22 GMT + - Wed, 08 Oct 2025 23:04:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,10 +1699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 368aa41d-1e6d-4f23-9ad4-8ab398461080 + - d5523327-5b52-4c75-bcc4-25905c30a4ff status: 200 OK code: 200 - duration: 267.919986ms + duration: 121.717875ms - id: 34 request: proto: HTTP/1.1 @@ -1720,8 +1720,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: PATCH response: proto: HTTP/2.0 @@ -1729,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:22 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3c35944-d649-495c-8d5b-67ec0547ddf5 + - ceb9b884-91ce-4f0c-ab97-0c9f33fb3708 status: 200 OK code: 200 - duration: 530.897525ms + duration: 473.767947ms - id: 35 request: proto: HTTP/1.1 @@ -1769,8 +1769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1778,20 +1778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:23 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,10 +1799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e913da7-b5cb-4181-ba1d-925833a90a14 + - 74cda9dd-a70a-4b95-afb4-9a9fc7f4373c status: 200 OK code: 200 - duration: 281.690622ms + duration: 104.140473ms - id: 36 request: proto: HTTP/1.1 @@ -1818,8 +1818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1827,20 +1827,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:23 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1848,10 +1848,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a67f03d8-0124-4ae4-9eda-9ad72ee1ea20 + - 6ec9f0c2-2364-4bc1-851b-36f72f6f9631 status: 200 OK code: 200 - duration: 173.876006ms + duration: 93.319948ms - id: 37 request: proto: HTTP/1.1 @@ -1863,14 +1863,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"efbb7a0e-041a-41cc-9978-540cb5414efa"}' + body: '{"server":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: PATCH response: proto: HTTP/2.0 @@ -1878,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 440 + content_length: 436 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "440" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:24 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7585f0b-c403-4d2d-a439-a611a23fedd4 + - d085fc6b-963f-4efa-89f7-06f6373c366c status: 200 OK code: 200 - duration: 1.057722099s + duration: 550.806922ms - id: 38 request: proto: HTTP/1.1 @@ -1918,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1927,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:24 GMT + - Wed, 08 Oct 2025 23:04:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74bff221-cf75-42e5-9156-aa115501fea3 + - 0d9725a6-72be-465a-859a-c0a272862fea status: 200 OK code: 200 - duration: 266.918158ms + duration: 88.145531ms - id: 39 request: proto: HTTP/1.1 @@ -1967,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -1976,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:25 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bde41412-a329-45af-ab64-efb43b2ddf41 + - cb26e008-bd6b-4d6e-8c13-3b35f36a8d15 status: 200 OK code: 200 - duration: 289.798617ms + duration: 102.486097ms - id: 40 request: proto: HTTP/1.1 @@ -2016,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -2025,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:25 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aed4fa2b-85c2-414a-b2d1-818f7d60078a + - f41152f1-f5c0-4edf-b172-03622be0d3fb status: 200 OK code: 200 - duration: 204.97486ms + duration: 106.338694ms - id: 41 request: proto: HTTP/1.1 @@ -2065,8 +2065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2076,7 +2076,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -2085,9 +2085,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2095,10 +2095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93344a24-bcfb-4245-9b27-e855800edcab + - a3df9842-2149-46f9-9636-0775234935d2 status: 404 Not Found code: 404 - duration: 2.014233329s + duration: 30.538723ms - id: 42 request: proto: HTTP/1.1 @@ -2114,8 +2114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2125,7 +2125,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2134,9 +2134,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2144,10 +2144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f124766-a839-477a-8942-b7d1b935560e + - 9f5c9367-ef06-4851-9b03-b92fa052681b status: 200 OK code: 200 - duration: 88.488551ms + duration: 47.937474ms - id: 43 request: proto: HTTP/1.1 @@ -2163,8 +2163,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -2183,9 +2183,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2193,10 +2193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da66b9d-672d-4049-a515-a6ff472ec39b + - a76da8fd-d17b-4072-b052-2f1be81d5fdd status: 200 OK code: 200 - duration: 98.397314ms + duration: 47.173369ms - id: 44 request: proto: HTTP/1.1 @@ -2212,8 +2212,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -2232,11 +2232,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:27 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,12 +2244,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3466dd92-50e2-447a-a35b-2dd71e0ab76c + - b646987a-d1b7-49fc-94ea-8aa363794663 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.518555ms + duration: 53.568417ms - id: 45 request: proto: HTTP/1.1 @@ -2265,8 +2265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -2274,20 +2274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:28 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2295,10 +2295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c59c1000-400e-4a28-8890-44e906b7a2d0 + - c305c8d5-a7a8-46a4-8ee0-070c6ce9dcb9 status: 200 OK code: 200 - duration: 210.532572ms + duration: 105.343921ms - id: 46 request: proto: HTTP/1.1 @@ -2314,8 +2314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -2323,20 +2323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:28 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,10 +2344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68406bd9-833f-4382-a0bd-590db4db6f23 + - 8dd50e96-213a-4812-8c28-6784582dcf0d status: 200 OK code: 200 - duration: 183.741628ms + duration: 123.994051ms - id: 47 request: proto: HTTP/1.1 @@ -2363,8 +2363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -2372,20 +2372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 440 + content_length: 436 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "440" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:28 GMT + - Wed, 08 Oct 2025 23:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2393,10 +2393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 658c0f4a-0dc4-401f-b081-80a1019c2742 + - 2e8b989a-9e4e-4916-b145-b14086c725ca status: 200 OK code: 200 - duration: 105.956069ms + duration: 75.784703ms - id: 48 request: proto: HTTP/1.1 @@ -2412,8 +2412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -2421,20 +2421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,10 +2442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b3776c7-a999-476f-bb1a-9cf2e06d969a + - 962d8dd8-888d-412c-9d7d-e76f880a2c6f status: 200 OK code: 200 - duration: 112.980393ms + duration: 83.027119ms - id: 49 request: proto: HTTP/1.1 @@ -2461,8 +2461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -2470,20 +2470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 440 + content_length: 436 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "440" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2491,10 +2491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53d4a08b-4153-4266-844a-21161323e348 + - c04abd6b-99be-4dca-acc9-20a9114e7360 status: 200 OK code: 200 - duration: 124.418564ms + duration: 91.019625ms - id: 50 request: proto: HTTP/1.1 @@ -2510,8 +2510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -2519,20 +2519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2540,10 +2540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc8bd0bd-885b-4d37-b07b-08d136e6e8f8 + - c2b171f7-337a-4f13-80a5-e576f98ad8b2 status: 200 OK code: 200 - duration: 164.445079ms + duration: 81.042913ms - id: 51 request: proto: HTTP/1.1 @@ -2559,8 +2559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2570,7 +2570,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -2579,9 +2579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2589,10 +2589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 441e00fd-40c3-4bb8-b13d-4fa6193e285d + - 01827cef-25be-43d0-a107-813ada73a2b5 status: 404 Not Found code: 404 - duration: 49.339772ms + duration: 25.054063ms - id: 52 request: proto: HTTP/1.1 @@ -2608,8 +2608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2619,7 +2619,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2628,9 +2628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2638,10 +2638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f02bb41b-7e83-4096-9e61-03a8dba46d8b + - 8a4eff3e-860e-45b2-9259-4cf6564a1add status: 200 OK code: 200 - duration: 80.956084ms + duration: 39.709082ms - id: 53 request: proto: HTTP/1.1 @@ -2657,8 +2657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -2677,9 +2677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2687,10 +2687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - febadc96-eed5-4236-96d4-d543cce05ad3 + - e838212b-309b-4e56-9350-d4e91d658d15 status: 200 OK code: 200 - duration: 141.990758ms + duration: 52.062285ms - id: 54 request: proto: HTTP/1.1 @@ -2706,8 +2706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -2726,11 +2726,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2738,12 +2738,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bf4f9e8-6a93-4178-98b6-51ed152dda68 + - 516f9051-c831-4560-8080-14811cfc0b95 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 98.898444ms + duration: 53.941277ms - id: 55 request: proto: HTTP/1.1 @@ -2759,8 +2759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -2768,20 +2768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 440 + content_length: 436 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"efbb7a0e-041a-41cc-9978-540cb5414efa","name":"tf-srv-romantic-buck"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "440" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2789,10 +2789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a686570c-ca21-4e0e-9609-7a625b4e6017 + - 26715970-8b51-40ac-991b-fd8eece28122 status: 200 OK code: 200 - duration: 136.858583ms + duration: 67.752713ms - id: 56 request: proto: HTTP/1.1 @@ -2808,8 +2808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -2817,20 +2817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2838,10 +2838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e767650-da5c-4af8-9e99-7a535f5d9c66 + - 8c6488cb-76f8-4686-85d1-2c87aefe26d7 status: 200 OK code: 200 - duration: 150.941255ms + duration: 72.963355ms - id: 57 request: proto: HTTP/1.1 @@ -2857,8 +2857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -2866,20 +2866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2887,10 +2887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52eff13e-f8f9-48ff-8e58-837cbab5c442 + - 7bd3dcbb-fc8b-4a94-b571-1e4e26b9ae2f status: 200 OK code: 200 - duration: 253.527514ms + duration: 132.878379ms - id: 58 request: proto: HTTP/1.1 @@ -2906,8 +2906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2917,7 +2917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -2926,9 +2926,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:30 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,10 +2936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6586b01-538d-42f9-9a65-856b69fbaf8b + - af22df2a-2923-4709-98d3-41126a6d0cf6 status: 404 Not Found code: 404 - duration: 88.09867ms + duration: 31.749597ms - id: 59 request: proto: HTTP/1.1 @@ -2955,8 +2955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -2966,7 +2966,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2975,9 +2975,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,10 +2985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a1ec73a-592c-4b6e-9918-afd2ec86f120 + - 17a7a052-3721-411e-8020-49b769f153ed status: 200 OK code: 200 - duration: 125.583088ms + duration: 62.456261ms - id: 60 request: proto: HTTP/1.1 @@ -3004,8 +3004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -3024,9 +3024,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c061ca4c-5d39-4de3-986c-d79fe5bbcc33 + - 12fa1b47-ed61-4d1b-8039-9c9e36af662e status: 200 OK code: 200 - duration: 89.77268ms + duration: 54.507677ms - id: 61 request: proto: HTTP/1.1 @@ -3053,8 +3053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -3073,11 +3073,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Wed, 08 Oct 2025 23:04:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3085,12 +3085,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b809a314-b6f5-4127-bfc7-7972d123a951 + - 80b49171-f33c-4894-8179-94559503c9ea X-Total-Count: - "0" status: 200 OK code: 200 - duration: 97.864886ms + duration: 62.684173ms - id: 62 request: proto: HTTP/1.1 @@ -3106,8 +3106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3115,20 +3115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3136,10 +3136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e365da4-402c-42fc-9097-8d811c7a6042 + - e96989e6-5464-4f97-bb59-1af2a9a05e0f status: 200 OK code: 200 - duration: 222.89767ms + duration: 95.734529ms - id: 63 request: proto: HTTP/1.1 @@ -3155,8 +3155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3164,20 +3164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2456 + content_length: 2471 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"163.172.173.210","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2456" + - "2471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3185,10 +3185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 848c19ca-90ae-442b-9267-9c67336e595c + - 8cee26d0-3ec7-47fc-b9cb-83349af4f814 status: 200 OK code: 200 - duration: 231.188308ms + duration: 109.956966ms - id: 64 request: proto: HTTP/1.1 @@ -3206,8 +3206,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: PATCH response: proto: HTTP/2.0 @@ -3215,20 +3215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3236,10 +3236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3528f92c-342c-4e8e-b2fa-16fe8f5bb7e7 + - 45cef6a3-6cdd-41f8-8b7f-542a24642199 status: 200 OK code: 200 - duration: 529.759908ms + duration: 451.050023ms - id: 65 request: proto: HTTP/1.1 @@ -3255,8 +3255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3264,20 +3264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3285,10 +3285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e071854c-aec0-4f31-a325-24a345999d3d + - 63b13ac5-d53d-4dcc-9489-6ee1f7ef3b5a status: 200 OK code: 200 - duration: 212.930177ms + duration: 102.074845ms - id: 66 request: proto: HTTP/1.1 @@ -3304,8 +3304,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3313,20 +3313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3334,10 +3334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 340519d0-00d8-4b84-8781-160964a35a8b + - 1b920ebc-619e-493d-af1c-e5ac6ecd941f status: 200 OK code: 200 - duration: 252.841557ms + duration: 105.590216ms - id: 67 request: proto: HTTP/1.1 @@ -3353,8 +3353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3362,20 +3362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3383,10 +3383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd888138-ddbd-4d0c-984a-854ce0becb76 + - 96c3e39a-235b-4097-b5d5-492524a8cc6c status: 200 OK code: 200 - duration: 180.787648ms + duration: 109.054604ms - id: 68 request: proto: HTTP/1.1 @@ -3402,8 +3402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -3413,7 +3413,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -3422,9 +3422,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3432,10 +3432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f63826b-3e5d-4703-9902-1525bf323f06 + - df95f890-7a5a-409f-8647-82346cd1cfa5 status: 404 Not Found code: 404 - duration: 33.335668ms + duration: 30.52062ms - id: 69 request: proto: HTTP/1.1 @@ -3451,8 +3451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -3462,7 +3462,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3471,9 +3471,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3481,10 +3481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32d0578b-90ca-4f8a-9c57-4421b1770960 + - beefe298-a1fe-4870-bc81-b43c1c6cfb5f status: 200 OK code: 200 - duration: 80.839035ms + duration: 43.919972ms - id: 70 request: proto: HTTP/1.1 @@ -3500,8 +3500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -3520,9 +3520,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:33 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3530,10 +3530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71542747-89e4-4f1b-ad16-9720742f2b6b + - 1bcfd33b-8ea6-413e-a6d7-1f07afa04ba5 status: 200 OK code: 200 - duration: 124.11299ms + duration: 55.342192ms - id: 71 request: proto: HTTP/1.1 @@ -3549,8 +3549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -3569,11 +3569,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,12 +3581,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bf97758-fb2e-4ab7-afe7-9759826aee3f + - e4d71943-5c64-4cfc-ba28-e6031ba8799a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 220.472403ms + duration: 56.600282ms - id: 72 request: proto: HTTP/1.1 @@ -3602,8 +3602,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3611,20 +3611,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3632,10 +3632,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48203c00-07fd-43c1-9dc1-78658ac92e9d + - 0f35de40-e476-4725-b959-00999c97514e status: 200 OK code: 200 - duration: 192.492819ms + duration: 97.428727ms - id: 73 request: proto: HTTP/1.1 @@ -3651,8 +3651,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3660,20 +3660,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3681,10 +3681,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f91dd34d-cac5-4eba-88b0-21dfe08a8170 + - 5a5a1348-3927-43a8-bfb8-b016f80542dc status: 200 OK code: 200 - duration: 227.870928ms + duration: 88.928811ms - id: 74 request: proto: HTTP/1.1 @@ -3700,8 +3700,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -3709,20 +3709,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3730,10 +3730,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ce6f038-fc91-46f0-90ad-e3fcab1943ff + - 80b805d3-59fd-4fd6-8978-a441bc23d505 status: 200 OK code: 200 - duration: 476.61453ms + duration: 73.835912ms - id: 75 request: proto: HTTP/1.1 @@ -3749,8 +3749,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -3758,20 +3758,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,10 +3779,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d41c19d6-1c45-446b-a7f6-3880ae156e3e + - 4d1dfbf2-db0b-4c55-8c7c-e2cf430a7e5f status: 200 OK code: 200 - duration: 476.248954ms + duration: 77.848664ms - id: 76 request: proto: HTTP/1.1 @@ -3798,8 +3798,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -3807,20 +3807,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3828,10 +3828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afb370a4-cf6d-49f0-9d1e-daa71fa3e725 + - 8259e7aa-2dea-4f55-bb6b-c11b32424106 status: 200 OK code: 200 - duration: 541.901819ms + duration: 93.509657ms - id: 77 request: proto: HTTP/1.1 @@ -3847,8 +3847,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -3858,7 +3858,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -3867,9 +3867,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:35 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3877,10 +3877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 563d393c-d545-456b-9ab1-22e87bbb697a + - bb767ec3-debf-4cff-8441-f46b9eead2f5 status: 404 Not Found code: 404 - duration: 55.567802ms + duration: 25.270654ms - id: 78 request: proto: HTTP/1.1 @@ -3896,8 +3896,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -3907,7 +3907,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3916,9 +3916,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 23:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3926,10 +3926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8b575af-f551-4e8e-89a8-64374975fab6 + - c504209b-b50a-40e5-952d-78109743a046 status: 200 OK code: 200 - duration: 107.055241ms + duration: 49.361162ms - id: 79 request: proto: HTTP/1.1 @@ -3945,8 +3945,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -3965,9 +3965,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3975,10 +3975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b62ac5ec-d64f-4a28-9427-f3f59ead2adb + - 66919480-f5fb-410c-a15d-88b268c928fb status: 200 OK code: 200 - duration: 142.363548ms + duration: 59.452516ms - id: 80 request: proto: HTTP/1.1 @@ -3994,8 +3994,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -4014,11 +4014,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,12 +4026,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2a0721f-9fa8-4ec0-a174-16e769f24d96 + - f8cd5140-22ac-44e4-9dc7-6acefa082d91 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 117.342072ms + duration: 72.274328ms - id: 81 request: proto: HTTP/1.1 @@ -4047,8 +4047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -4056,20 +4056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4077,10 +4077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5ccbdae-9822-41b0-953d-304bb4c45ba3 + - 5dc70adb-7c33-47cf-9f86-f8f93a49a2c2 status: 200 OK code: 200 - duration: 134.320273ms + duration: 69.274951ms - id: 82 request: proto: HTTP/1.1 @@ -4096,8 +4096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -4105,20 +4105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4126,10 +4126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9433f358-cd00-48f1-b581-e18b5906b165 + - a90951cb-348f-4002-94c9-98e355687162 status: 200 OK code: 200 - duration: 174.744243ms + duration: 83.139826ms - id: 83 request: proto: HTTP/1.1 @@ -4145,8 +4145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4154,20 +4154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4175,10 +4175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6814bbfe-257e-4919-8f77-1d57dde1b340 + - 9e166d39-5f3f-4cd1-aec8-ad907598234f status: 200 OK code: 200 - duration: 230.534652ms + duration: 89.925958ms - id: 84 request: proto: HTTP/1.1 @@ -4194,8 +4194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -4205,7 +4205,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -4214,9 +4214,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4224,10 +4224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 240d0879-6af1-4dec-ba4f-8e2a791b91ec + - 6ae6d0fc-00e3-4f29-bd8a-c02b615ec7ac status: 404 Not Found code: 404 - duration: 85.423262ms + duration: 29.362073ms - id: 85 request: proto: HTTP/1.1 @@ -4243,8 +4243,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -4254,7 +4254,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4263,9 +4263,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4273,10 +4273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1675bd89-9577-43dd-826c-ecdb9f60a521 + - 8ba26338-34fb-4c05-94fe-56b2eacef7f5 status: 200 OK code: 200 - duration: 110.112724ms + duration: 42.848768ms - id: 86 request: proto: HTTP/1.1 @@ -4292,8 +4292,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -4312,9 +4312,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4322,10 +4322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f436cb2-1e3f-49a9-bec0-81cfb908a3e4 + - 581b9b4e-d8a0-42c0-86b7-a0d8c88eff97 status: 200 OK code: 200 - duration: 167.207168ms + duration: 52.76631ms - id: 87 request: proto: HTTP/1.1 @@ -4341,8 +4341,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -4361,11 +4361,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:37 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,12 +4373,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a00fe6d4-7265-420d-a561-24b012af7931 + - 29228d57-0837-4c96-8c0e-d83dabcf25e5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 114.186264ms + duration: 60.370937ms - id: 88 request: proto: HTTP/1.1 @@ -4394,8 +4394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4403,20 +4403,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1951 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:13.219785+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1928" + - "1951" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:38 GMT + - Wed, 08 Oct 2025 23:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4424,10 +4424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00b98341-cfa8-44c6-80b6-e21f71027196 + - f65a069f-d9b8-44b2-932e-1f9939fcdeeb status: 200 OK code: 200 - duration: 210.5637ms + duration: 98.116952ms - id: 89 request: proto: HTTP/1.1 @@ -4445,8 +4445,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: PATCH response: proto: HTTP/2.0 @@ -4454,20 +4454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:39 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4475,10 +4475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d569395-c829-4d55-b827-f066b2f1d7d9 + - d090540b-1dab-407b-b6cb-a1640dc78410 status: 200 OK code: 200 - duration: 800.742263ms + duration: 490.367253ms - id: 90 request: proto: HTTP/1.1 @@ -4494,8 +4494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4503,20 +4503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:39 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4524,10 +4524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bff07da2-9383-488d-93b1-214a081515d6 + - bbfcd27d-5690-48ce-95f1-76bb67bb8f25 status: 200 OK code: 200 - duration: 186.413407ms + duration: 110.897947ms - id: 91 request: proto: HTTP/1.1 @@ -4543,8 +4543,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4552,20 +4552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4573,10 +4573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a4df36d-cbab-41f8-aad2-596959781c75 + - c832b21a-09e2-498a-afe1-1c5f8b32b786 status: 200 OK code: 200 - duration: 288.076397ms + duration: 99.237537ms - id: 92 request: proto: HTTP/1.1 @@ -4592,8 +4592,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -4603,7 +4603,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -4612,9 +4612,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4622,10 +4622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0a0068-c8e1-46df-9452-1e13902cfd04 + - b2a55349-1ca1-47d4-9c0c-958461854215 status: 404 Not Found code: 404 - duration: 42.850652ms + duration: 30.908258ms - id: 93 request: proto: HTTP/1.1 @@ -4641,8 +4641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -4652,7 +4652,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4661,9 +4661,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4671,10 +4671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec3ce00f-c958-4a01-8e95-2faff635bfd0 + - 619ab22e-c8cc-42bf-befb-822dec52fd00 status: 200 OK code: 200 - duration: 106.191331ms + duration: 43.22808ms - id: 94 request: proto: HTTP/1.1 @@ -4690,8 +4690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -4710,9 +4710,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4720,10 +4720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e1fe80-f4f7-4cde-9c28-bc60d4188e42 + - cb0e05cc-e6d4-4c44-8c0e-bcc9a38fdbd4 status: 200 OK code: 200 - duration: 106.911039ms + duration: 56.240155ms - id: 95 request: proto: HTTP/1.1 @@ -4739,8 +4739,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -4759,11 +4759,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4771,12 +4771,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6b7304-39e1-4d30-aa00-07fabf3ca472 + - 5e5a1f43-2060-492f-a583-e6580da4a00f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 100.790621ms + duration: 55.28806ms - id: 96 request: proto: HTTP/1.1 @@ -4792,8 +4792,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4801,20 +4801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4822,10 +4822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed93acd9-8e31-49ba-b675-ffb3723510e3 + - 0197d08c-ad2d-4f36-969b-c20f014f514e status: 200 OK code: 200 - duration: 220.171738ms + duration: 95.936081ms - id: 97 request: proto: HTTP/1.1 @@ -4841,8 +4841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4850,20 +4850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4871,10 +4871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70f1c6a1-0800-46c0-911e-3c7671ffbf55 + - 0d19ca5a-e674-4cfa-91e7-0e334a3a27da status: 200 OK code: 200 - duration: 197.943861ms + duration: 105.524333ms - id: 98 request: proto: HTTP/1.1 @@ -4890,8 +4890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: GET response: proto: HTTP/2.0 @@ -4899,20 +4899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 363 uncompressed: false - body: '{"ip":{"address":"51.15.217.73","id":"607a2b90-714b-4b39-8204-0b62ccbf959f","ipam_id":"4a0e1c22-c0e0-475a-8805-c5434889e1c1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4920,10 +4920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51a23064-81e7-4cd4-84d3-f0e104cccc0a + - 0e6becfa-cf9e-4ab0-9c08-f798f447f663 status: 200 OK code: 200 - duration: 131.453426ms + duration: 72.801674ms - id: 99 request: proto: HTTP/1.1 @@ -4939,8 +4939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: GET response: proto: HTTP/2.0 @@ -4948,20 +4948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 366 uncompressed: false - body: '{"ip":{"address":"163.172.173.210","id":"53257448-59d7-43a4-b9fc-8b85757208b4","ipam_id":"51b66209-8360-444f-be39-36596f4fcc13","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4969,10 +4969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ad4473a-f5b4-411d-ad7a-72386694971f + - b21d416a-b165-42c4-a11e-f832d0032754 status: 200 OK code: 200 - duration: 173.465345ms + duration: 77.095268ms - id: 100 request: proto: HTTP/1.1 @@ -4988,8 +4988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -4997,20 +4997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2449 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2449" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5018,10 +5018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98bfb5a6-99f8-4186-b5b9-7368187598e6 + - a77fb74f-f99c-48c5-9694-61a4e8fdb003 status: 200 OK code: 200 - duration: 225.36174ms + duration: 110.351034ms - id: 101 request: proto: HTTP/1.1 @@ -5037,8 +5037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -5048,7 +5048,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -5057,9 +5057,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5067,10 +5067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cae2f887-0a73-41e0-882c-0164ffcba26e + - 07ff3618-a794-40c5-8ab3-9c424cac896a status: 404 Not Found code: 404 - duration: 82.70812ms + duration: 27.353512ms - id: 102 request: proto: HTTP/1.1 @@ -5086,8 +5086,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -5097,7 +5097,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -5106,9 +5106,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5116,10 +5116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dd91f5d-9cbc-4cf9-b019-0260b6ff8e93 + - 8991c24b-8931-4abb-95c4-edb8212db2dd status: 200 OK code: 200 - duration: 125.140337ms + duration: 44.322016ms - id: 103 request: proto: HTTP/1.1 @@ -5135,8 +5135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data method: GET response: proto: HTTP/2.0 @@ -5155,9 +5155,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5165,10 +5165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50e02754-fbc8-47c3-92cc-c82fc688b5c6 + - faa79bfa-e303-468e-b4d9-b2f600cc7c97 status: 200 OK code: 200 - duration: 231.321609ms + duration: 60.155237ms - id: 104 request: proto: HTTP/1.1 @@ -5184,8 +5184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics method: GET response: proto: HTTP/2.0 @@ -5204,11 +5204,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:43 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5216,12 +5216,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71190598-9fab-4018-858a-de96742a842d + - 3a89a99a-a1bf-4bab-92cf-d6127e490db9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 341.754613ms + duration: 61.651178ms - id: 105 request: proto: HTTP/1.1 @@ -5237,8 +5237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -5246,20 +5246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2441 + content_length: 2474 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:38.894739+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booted","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2441" + - "2474" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:44 GMT + - Wed, 08 Oct 2025 23:04:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5267,10 +5267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16ab7891-daf0-4ac8-9c14-9a7a7fdef003 + - a5884e88-9b2a-4557-a684-080ccf7f4285 status: 200 OK code: 200 - duration: 194.306731ms + duration: 124.904744ms - id: 106 request: proto: HTTP/1.1 @@ -5286,57 +5286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:31:08.468365Z","id":"034fca63-b5f7-4316-9aab-13779863bf42","product_resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:08.468365Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ff6a3fa4-e457-42c7-bc04-5f865aa78b15 - status: 200 OK - code: 200 - duration: 117.501261ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/53257448-59d7-43a4-b9fc-8b85757208b4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 method: DELETE response: proto: HTTP/2.0 @@ -5353,9 +5304,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5363,11 +5314,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c964aff-6d13-4989-8938-76c079859af3 + - d4b650a8-e1e5-4135-a785-a7207913875a status: 204 No Content code: 204 - duration: 533.31877ms - - id: 108 + duration: 268.678234ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5382,8 +5333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/607a2b90-714b-4b39-8204-0b62ccbf959f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c method: DELETE response: proto: HTTP/2.0 @@ -5400,9 +5351,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5410,29 +5361,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ec92165-6355-4d64-b5f1-d87813bec723 + - 8b7234d4-7afa-4fd5-8d86-a3b7a2500029 status: 204 No Content code: 204 - duration: 575.658193ms - - id: 109 + duration: 268.740729ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action method: POST response: proto: HTTP/2.0 @@ -5440,22 +5391,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/efbb7a0e-041a-41cc-9978-540cb5414efa/action","href_result":"/servers/efbb7a0e-041a-41cc-9978-540cb5414efa","id":"5adf8041-2336-4daa-b6e1-97bb42795339","progress":0,"started_at":"2025-06-10T15:31:45.064037+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action","href_result":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03","id":"59bbdf09-4a3a-47de-b0b8-d15846263ffd","progress":0,"started_at":"2025-10-08T23:04:47.087158+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5adf8041-2336-4daa-b6e1-97bb42795339 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/59bbdf09-4a3a-47de-b0b8-d15846263ffd Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5463,403 +5414,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff72dc0d-708c-42c7-ac52-58d75072e253 + - 35515cfa-a91d-4002-9aae-3db0be223989 status: 202 Accepted code: 202 - duration: 261.80148ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2409 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.221.49","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"aa32a17f-7ff6-43c7-843d-039ac411383a","ipam_id":"75852894-ead0-41a3-9104-7378f589b114","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2409" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e0ebdd44-7aa2-4a1e-92f5-17a4b6815a66 - status: 200 OK - code: 200 - duration: 198.727752ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:50 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2cf13314-72ec-4767-a05c-060b4445781e - status: 200 OK - code: 200 - duration: 270.166927ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:55 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 842480ab-b278-42fc-88bf-40b40881dbcb - status: 200 OK - code: 200 - duration: 270.601141ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:01 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9f97bf4-04ec-44ba-93d2-24e08818a41d - status: 200 OK - code: 200 - duration: 226.391911ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f8ba76e-001d-41c0-bc7d-87adb95b96d9 - status: 200 OK - code: 200 - duration: 216.620566ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 15df57aa-81e3-4dc7-a3be-cd52b4a427e1 - status: 200 OK - code: 200 - duration: 180.413594ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1887 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"701","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:31:44.891363+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1887" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:16 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a162709-96f1-496d-aacd-0bd3939614d6 - status: 200 OK - code: 200 - duration: 191.035864ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1772 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:32:18.662811+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c5fddd3e-47b0-414f-a4d5-2858fab712f8 - status: 200 OK - code: 200 - duration: 208.680465ms - - id: 118 + duration: 199.775241ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5874,8 +5433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -5883,20 +5442,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 2437 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:08.259284+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-buck","id":"efbb7a0e-041a-41cc-9978-540cb5414efa","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:77","maintenances":[],"modification_date":"2025-06-10T15:32:18.662811+00:00","name":"tf-srv-romantic-buck","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"5988e01c-c671-4638-accc-5baca827b4d9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:46.926341+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1772" + - "2437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:22 GMT + - Wed, 08 Oct 2025 23:04:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5904,58 +5463,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5650ca50-a956-4880-b343-13a37ceb81e3 + - 258fbfe6-540b-49ff-b3b3-5c1ba43a0d22 status: 200 OK code: 200 - duration: 214.391124ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a830c87a-5540-4130-b4d9-ead2c309aa8f - status: 204 No Content - code: 204 - duration: 621.31498ms - - id: 120 + duration: 133.857028ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5970,8 +5482,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -5981,7 +5493,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","type":"not_found"}' headers: Content-Length: - "143" @@ -5990,9 +5502,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6000,11 +5512,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d2eb271-3b71-4400-be7c-fd6d51395e93 + - 0bbcc30c-8cf6-4970-8da2-ee1c2f83553c status: 404 Not Found code: 404 - duration: 86.592013ms - - id: 121 + duration: 53.598359ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -6019,8 +5531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -6030,7 +5542,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5988e01c-c671-4638-accc-5baca827b4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' headers: Content-Length: - "143" @@ -6039,9 +5551,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6049,11 +5561,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95436d5e-8ff1-4e63-aa85-21b5fecbe21a + - 3fc0ea03-9399-4a54-9220-f584b7d82b27 status: 404 Not Found code: 404 - duration: 31.867203ms - - id: 122 + duration: 25.213477ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -6068,8 +5580,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: GET response: proto: HTTP/2.0 @@ -6079,7 +5591,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:08.468365Z","id":"5988e01c-c671-4638-accc-5baca827b4d9","last_detached_at":"2025-06-10T15:32:22.774320Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:32:22.774320Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":"2025-10-08T23:04:50.810488Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:50.810488Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -6088,9 +5600,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:22 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6098,11 +5610,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 634629ad-ae83-4f26-9897-541fe632c6cd + - d1989226-99b4-4eca-831a-096cec8a37b7 status: 200 OK code: 200 - duration: 95.273744ms - - id: 123 + duration: 42.172492ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -6117,8 +5629,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5988e01c-c671-4638-accc-5baca827b4d9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f method: DELETE response: proto: HTTP/2.0 @@ -6135,9 +5647,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6145,11 +5657,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00c36d7c-6628-4a09-8000-fa4ad8e0737f + - db8e9b59-ad5d-4f88-9683-88d296d63131 status: 204 No Content code: 204 - duration: 162.417053ms - - id: 124 + duration: 76.414475ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -6164,8 +5676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efbb7a0e-041a-41cc-9978-540cb5414efa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 method: GET response: proto: HTTP/2.0 @@ -6175,7 +5687,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"efbb7a0e-041a-41cc-9978-540cb5414efa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","type":"not_found"}' headers: Content-Length: - "143" @@ -6184,9 +5696,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:23 GMT + - Wed, 08 Oct 2025 23:04:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6194,7 +5706,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce3c27e-4d30-4e80-8541-c8e70dc2c34f + - f6502756-9095-417a-b60d-4b4cf400dee1 status: 404 Not Found code: 404 - duration: 128.384961ms + duration: 65.915566ms diff --git a/internal/services/instance/testdata/snapshot-server.cassette.yaml b/internal/services/instance/testdata/snapshot-server.cassette.yaml index 0697d6302..7deee5920 100644 --- a/internal/services/instance/testdata/snapshot-server.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-server.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 674879b7-59af-4765-aebe-331c04ffa3ac + - b89ac966-3b08-4726-81a7-66de7a5db347 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 45.365809ms + duration: 68.264386ms - id: 1 request: proto: HTTP/1.1 @@ -69,7 +69,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -89,11 +89,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45db14e-07f8-4853-a337-506780cf6762 + - af9cbe88-86e9-46f0-894f-99e3c502555d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 78.414709ms + duration: 88.144912ms - id: 2 request: proto: HTTP/1.1 @@ -122,7 +122,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["START1-XS","X64-60GB","GP1-M","DEV1-L","GP1-XL","GP1-XS","DEV1-XL","START1-M","DEV1-M","DEV1-S","VC1M","GP1-L","START1-S","X64-30GB","VC1L","VC1S","STARDUST1-S","GP1-S","X64-120GB","X64-15GB","START1-L"],"id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "423" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,28 +152,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38589418-7410-4238-b16e-cd1e3a2db778 + - fea47aea-282f-45de-9002-d7ceb4692af8 status: 200 OK code: 200 - duration: 87.446357ms + duration: 51.651244ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 277 + content_length: 271 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-relaxed-mahavira","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-srv-angry-bell","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2145 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:02.585340+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a25c9c85-7841-4906-abd1-a3a582d7a226 + - a5b87a09-2f48-4639-911b-5877a90593d6 status: 201 Created code: 201 - duration: 565.618484ms + duration: 390.639423ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2145 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:02.585340+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ec3e143-c291-4313-abd4-74217ea8fb03 + - fa964f75-ef52-4340-9cc1-241319038c8f status: 200 OK code: 200 - duration: 150.533761ms + duration: 92.057298ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2145 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:02.585340+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5ba9eee-b6df-4224-9a38-7093c0ed45e5 + - 963a7f4e-d605-44c6-9dfb-32e4802ec0f9 status: 200 OK code: 200 - duration: 161.58148ms + duration: 92.899448ms - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/action","href_result":"/servers/c1f5719a-b0a0-464c-9cae-38e06e036838","id":"2af25b23-0b07-48aa-907a-9f1aefd0883e","progress":0,"started_at":"2025-06-10T15:31:03.530564+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action","href_result":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b","id":"45711403-9076-4570-ab13-7900b17e3edf","progress":0,"started_at":"2025-10-08T23:05:27.734733+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2af25b23-0b07-48aa-907a-9f1aefd0883e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/45711403-9076-4570-ab13-7900b17e3edf Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 281d420e-3370-4335-ad0c-d9f17cc2e975 + - ff4e3f77-fbda-4b6a-a5dc-6a8a2b487b80 status: 202 Accepted code: 202 - duration: 704.012048ms + duration: 207.576174ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2187 + content_length: 2167 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:03.274136+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.565877+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2187" + - "2167" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:04 GMT + - Wed, 08 Oct 2025 23:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bce00d39-d363-493f-b350-0303850e05d0 + - 1c079dd8-be96-4b47-816f-b5f92318c435 status: 200 OK code: 200 - duration: 213.085051ms + duration: 98.027526ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 2270 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:03.274136+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.565877+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2291" + - "2270" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Wed, 08 Oct 2025 23:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0240550-f15f-418e-92cb-5fdcdf708d01 + - b60d3108-88a3-4140-acab-a866ce6d2d49 status: 200 OK code: 200 - duration: 198.071193ms + duration: 115.690972ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 2301 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:03.274136+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2291" + - "2301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:14 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 550c8ec4-aa99-4a68-8106-ef2117d0e033 + - 461e7b35-c0a0-4cb0-8b70-1d36dd34fd96 status: 200 OK code: 200 - duration: 237.646583ms + duration: 84.878046ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2301 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:15.018447+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78570137-e9af-46a3-ad0a-847472656011 + - 1760ab76-abcf-490c-a5dd-a038287baec7 status: 200 OK code: 200 - duration: 179.19938ms + duration: 71.706048ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:15.018447+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0109657f-1d77-41d2-9bc8-2299bea5cb5f + - 1301fae8-5dd1-4e55-ad83-645b3e7eb849 status: 200 OK code: 200 - duration: 149.780568ms + duration: 54.842111ms - id: 12 request: proto: HTTP/1.1 @@ -620,57 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9973b487-607c-4fbc-87b3-883382de4520 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 523 - uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:31:02.585340+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "523" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8bbc11aa-3448-44ea-95ed-b47e59b2966d - status: 200 OK - code: 200 - duration: 100.492153ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,11 +650,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccf1af6d-10de-49f7-a86f-eb6f7f9458d8 + - 4372d022-5d51-4be9-b3e9-d1cdd5542561 status: 200 OK code: 200 - duration: 107.556952ms - - id: 14 + duration: 53.708722ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -718,8 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +689,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,30 +701,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c5ff89d-6bdf-4d47-81d6-586ac915f7eb + - 6c16f940-1c2a-4c18-bb73-276b8cabb65a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 156.406775ms - - id: 15 + duration: 55.751947ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 135 + content_length: 141 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-stupefied-hoover","volume_id":"9973b487-607c-4fbc-87b3-883382de4520","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-snap-xenodochial-hofstadter","volume_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots method: POST response: @@ -782,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 848 + content_length: 854 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5","id":"2f6e0b4b-6759-4bdc-9fd6-2b6d91de49b1","progress":0,"started_at":"2025-06-10T15:31:20.791848+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e","id":"93dd9240-7b3c-4455-b49a-59df55cf6d27","progress":0,"started_at":"2025-10-08T23:05:38.585201+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "848" + - "854" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,158 +754,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92702973-5219-4dfb-a388-50865ee71402 + - 4f398f4c-6512-4ae4-bb9c-a3032ebb8c71 status: 201 Created code: 201 - duration: 871.635203ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 537 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "537" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:21 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8d2746a3-0d9f-4a8b-bfda-4a89fbe06826 - status: 200 OK - code: 200 - duration: 100.92821ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 537 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "537" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:26 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28dada41-19c1-4222-bcac-f988d174c0c3 - status: 200 OK - code: 200 - duration: 134.065366ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 537 - uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "537" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:31:31 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b1d7b739-b75e-4c2b-84cb-9398031e3e16 - status: 200 OK - code: 200 - duration: 93.414328ms - - id: 19 + duration: 369.774856ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -969,8 +773,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -978,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Wed, 08 Oct 2025 23:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,11 +803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b447b7b2-9caf-484b-8291-7288d209691e + - b13cbad3-608e-4f85-888a-24a240a98ac1 status: 200 OK code: 200 - duration: 154.652364ms - - id: 20 + duration: 48.269989ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1018,8 +822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1027,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Wed, 08 Oct 2025 23:05:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,11 +852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1569c23-819e-4479-8b99-606638aca6f3 + - 7ec4ce54-6087-4a09-b009-bdef46d92b51 status: 200 OK code: 200 - duration: 103.572409ms - - id: 21 + duration: 61.549154ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1067,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1076,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:46 GMT + - Wed, 08 Oct 2025 23:05:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,11 +901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12fa0050-6a69-44be-b245-a37cda2c3765 + - fd14e741-9684-4260-a999-29e642a78636 status: 200 OK code: 200 - duration: 138.262767ms - - id: 22 + duration: 64.395875ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1116,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1125,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:51 GMT + - Wed, 08 Oct 2025 23:05:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,11 +950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b899cac9-a2ba-422c-a8fd-f6c10f1ff0f7 + - 2f2cf288-daac-4288-94d0-0932d124b0de status: 200 OK code: 200 - duration: 97.063862ms - - id: 23 + duration: 70.078869ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1165,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1174,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:57 GMT + - Wed, 08 Oct 2025 23:05:58 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,11 +999,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca5f8261-676e-4422-a8bf-9396c2a84fcb + - ff7dda55-0186-414b-82e0-02bcff3f8a9d status: 200 OK code: 200 - duration: 118.791159ms - - id: 24 + duration: 59.147471ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1214,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1223,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Wed, 08 Oct 2025 23:06:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,11 +1048,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 520418a8-ddd7-4560-81e3-b10122d68db7 + - e6df343d-c3df-4f99-aa85-3aed6f544878 status: 200 OK code: 200 - duration: 119.080221ms - - id: 25 + duration: 56.510997ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1263,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1272,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:07 GMT + - Wed, 08 Oct 2025 23:06:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,11 +1097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc4f3cfb-d441-480e-9044-2f54cdd7a0e5 + - 21186540-2f19-4fe3-8e4e-9af59123d4dc status: 200 OK code: 200 - duration: 95.512021ms - - id: 26 + duration: 65.522816ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1312,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1321,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 537 + content_length: 543 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:31:20.507195+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "537" + - "543" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:12 GMT + - Wed, 08 Oct 2025 23:06:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,11 +1146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b7972aa-33d7-4994-9cc5-a0c3e5029148 + - f2edc357-f52f-4d2a-bf5c-acd0cb944419 status: 200 OK code: 200 - duration: 95.829667ms - - id: 27 + duration: 87.491603ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1361,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1370,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534 + content_length: 540 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "534" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:17 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,11 +1195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d29d5120-0981-4b38-b457-c281403f3e1c + - c14dc6fe-ecc7-48d6-aac1-fc210876d484 status: 200 OK code: 200 - duration: 114.752094ms - - id: 28 + duration: 54.490712ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1410,8 +1214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1419,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534 + content_length: 540 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "534" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:17 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,11 +1244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8b81404-e931-4999-9255-4b7808a19c9c + - e0b6b71e-2a0d-43e4-b7c6-a79fd3a4f05e status: 200 OK code: 200 - duration: 93.696737ms - - id: 29 + duration: 59.773606ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1459,8 +1263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1468,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534 + content_length: 540 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "534" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:18 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,11 +1293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10ea3192-ae20-480a-9a1a-7a435aad17ab + - e6b21ffd-398b-4fcd-b040-3ddb9d67b07a status: 200 OK code: 200 - duration: 222.086736ms - - id: 30 + duration: 69.258082ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1508,8 +1312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -1517,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2301 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:15.018447+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1538,11 +1342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed5237aa-2e91-4eed-95e6-9b59bda048ac + - c95ce297-f714-43be-b822-fa6b5c3c5a8a status: 200 OK code: 200 - duration: 148.054798ms - - id: 31 + duration: 96.408327ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1557,8 +1361,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9973b487-607c-4fbc-87b3-883382de4520 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 method: GET response: proto: HTTP/2.0 @@ -1566,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 517 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1587,11 +1391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0818fe8-d37c-418b-b0b9-b80bea181672 + - 2a24be0d-5f20-41f7-bbd6-4b45f8bda4a9 status: 200 OK code: 200 - duration: 158.243937ms - - id: 32 + duration: 53.843293ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1606,8 +1410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/user_data method: GET response: proto: HTTP/2.0 @@ -1626,9 +1430,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1636,11 +1440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc540fc-d0a3-467e-84ab-3ee100062745 + - a66d3c4d-3f3b-4121-9d7d-d9a5aa391d54 status: 200 OK code: 200 - duration: 155.549925ms - - id: 33 + duration: 72.206352ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1655,8 +1459,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/private_nics method: GET response: proto: HTTP/2.0 @@ -1675,11 +1479,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1687,13 +1491,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d9c3aa-eb84-4425-bb4a-cb55ee420899 + - 3980591b-873a-4ad4-bf0e-c1be59153536 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 106.620384ms - - id: 34 + duration: 49.386408ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1708,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1717,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534 + content_length: 540 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "534" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:19 GMT + - Wed, 08 Oct 2025 23:06:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2887ba8-76e8-4540-9b03-9646efcfef08 + - 1c62d793-6ce2-44cb-9a5b-8482deaa3c27 status: 200 OK code: 200 - duration: 104.798006ms - - id: 35 + duration: 56.95216ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1757,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1766,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 534 + content_length: 540 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"9973b487-607c-4fbc-87b3-883382de4520","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-06-10T15:31:20.507195+00:00","error_details":null,"id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"tf-snap-stupefied-hoover","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "534" + - "540" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2732386-02cd-41c9-97f2-2eceb76d1f46 + - 4f211004-99d2-48cd-8d57-022e93187aa2 status: 200 OK code: 200 - duration: 105.467471ms - - id: 36 + duration: 57.871272ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1806,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: DELETE response: proto: HTTP/2.0 @@ -1824,9 +1628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1834,11 +1638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0b33c30-90da-48b5-9cfd-6c33c83fe31d + - 390fd1d5-f833-4211-9ad8-d4a016989051 status: 204 No Content code: 204 - duration: 195.847007ms - - id: 37 + duration: 140.249704ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1853,8 +1657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/afc552ab-ad4d-4db0-8242-9cd1686d33f5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e method: GET response: proto: HTTP/2.0 @@ -1864,7 +1668,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"afc552ab-ad4d-4db0-8242-9cd1686d33f5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","type":"not_found"}' headers: Content-Length: - "145" @@ -1873,9 +1677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1883,11 +1687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ccd33c4-c855-4b06-a0f2-26b808398a5b + - cbc3dc43-5b50-4c41-bd6d-829c531d4af6 status: 404 Not Found code: 404 - duration: 35.400879ms - - id: 38 + duration: 34.855556ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1902,8 +1706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -1911,20 +1715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2301 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:31:15.018447+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1932,29 +1736,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f89197b8-f55b-4cad-b51d-31430df458ce + - 16c9cb4e-7709-43e9-92f3-d09fa7aeb81d status: 200 OK code: 200 - duration: 150.097589ms - - id: 39 + duration: 100.450083ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action method: POST response: proto: HTTP/2.0 @@ -1962,22 +1766,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/c1f5719a-b0a0-464c-9cae-38e06e036838/action","href_result":"/servers/c1f5719a-b0a0-464c-9cae-38e06e036838","id":"6443205b-327c-49fe-a8a7-331676d93681","progress":0,"started_at":"2025-06-10T15:32:21.935597+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action","href_result":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b","id":"cba07478-615e-467d-92b8-0119d6d6dcf7","progress":0,"started_at":"2025-10-08T23:06:20.681817+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6443205b-327c-49fe-a8a7-331676d93681 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cba07478-615e-467d-92b8-0119d6d6dcf7 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,256 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b4a5136-1b0e-4144-992b-25d90d876273 + - 8453c916-c3f4-41e2-a947-2df0758aad1f status: 202 Accepted code: 202 - duration: 274.215477ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:21.742612+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:22 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 030909bb-4dd8-4ddd-b373-c337342cbe05 - status: 200 OK - code: 200 - duration: 255.917271ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:21.742612+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:27 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 965fec20-6331-44ec-b7ef-95080b8ad7a3 - status: 200 OK - code: 200 - duration: 171.988913ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:21.742612+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:32 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a3322588-c570-4b01-abc4-a78f38dc9740 - status: 200 OK - code: 200 - duration: 233.467329ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:21.742612+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81c940cc-c092-47de-b93b-898a406f24ee - status: 200 OK - code: 200 - duration: 234.660796ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2282 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1701","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:21.742612+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2282" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c38cc89-dbe7-48f0-ab45-38b8af857df5 - status: 200 OK - code: 200 - duration: 163.724734ms - - id: 45 + duration: 181.255289ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2249,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -2258,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 2264 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:42.824218+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:06:20.544266+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2165" + - "2264" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 23:06:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2279,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b18934d2-1a05-4338-b654-33ae55d6ba3f + - 5b12460b-115e-4a9e-b94f-6e90f3a4e568 status: 200 OK code: 200 - duration: 172.264188ms - - id: 46 + duration: 98.958149ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2298,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b method: GET response: proto: HTTP/2.0 @@ -2307,67 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2165 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-10T15:31:02.585340+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-relaxed-mahavira","id":"c1f5719a-b0a0-464c-9cae-38e06e036838","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:50.774356+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c00ae53c-1e29-4087-a384-47f3c5c1cd84","modification_date":"2025-02-03T13:36:50.774356+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6644dfd6-0731-45cc-a581-62f561eff7bf","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"unified"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:75","maintenances":[],"modification_date":"2025-06-10T15:32:42.824218+00:00","name":"tf-srv-relaxed-mahavira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:13.297115+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c1f5719a-b0a0-464c-9cae-38e06e036838","name":"tf-srv-relaxed-mahavira"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","type":"not_found"}' headers: Content-Length: - - "2165" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6d5e234-cd26-44c8-a512-ba1f9aa7fbd5 - status: 200 OK - code: 200 - duration: 154.685692ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2375,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cf6c766-9461-4120-9666-71cc873c9b0e - status: 204 No Content - code: 204 - duration: 219.278408ms - - id: 48 + - 3ee75305-645c-4c63-8c19-ff72277202aa + status: 404 Not Found + code: 404 + duration: 45.401446ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2394,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c1f5719a-b0a0-464c-9cae-38e06e036838 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 method: GET response: proto: HTTP/2.0 @@ -2405,7 +1917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c1f5719a-b0a0-464c-9cae-38e06e036838","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","type":"not_found"}' headers: Content-Length: - "143" @@ -2414,9 +1926,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2424,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2501f02-8d96-46a7-8597-dca98fc92b61 + - 747e44bb-f5e4-4238-8dca-0619f271088f status: 404 Not Found code: 404 - duration: 100.180976ms - - id: 49 + duration: 28.90298ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2443,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9973b487-607c-4fbc-87b3-883382de4520 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 method: GET response: proto: HTTP/2.0 @@ -2452,20 +1964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 127 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:31:02.585340+00:00","export_uri":null,"id":"9973b487-607c-4fbc-87b3-883382de4520","modification_date":"2025-06-10T15:32:48.419602+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","type":"not_found"}' headers: Content-Length: - - "446" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Wed, 08 Oct 2025 23:06:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2473,54 +1985,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71c3a0f0-6c2b-47ec-bcbf-e617a29effe1 - status: 200 OK - code: 200 - duration: 92.586654ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9973b487-607c-4fbc-87b3-883382de4520 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:32:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c7c3cd3-06aa-481e-ba56-9ab4dcec468e - status: 204 No Content - code: 204 - duration: 218.279564ms + - 1e6023ce-41ed-479f-8cb0-13281e26fbc6 + status: 404 Not Found + code: 404 + duration: 17.368447ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml index 2036a63b0..dd8444913 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 041e053c-4a5f-4763-b275-2eead106461f + - 80d89f65-144f-43b4-b06e-a79ebf331119 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 156.279ms + duration: 138.037319ms - id: 1 request: proto: HTTP/1.1 @@ -65,13 +65,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 298 uncompressed: false - body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88da0c2a-871c-4207-989f-5278e1c43bd9 + - e42ea36a-fa8b-45eb-87a8-8a95e554794a status: 200 OK code: 200 - duration: 181.2955ms + duration: 165.565284ms - id: 2 request: proto: HTTP/1.1 @@ -116,13 +116,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":false,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.850969Z"}' + body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' headers: Content-Length: - - "424" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,62 +152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25a43a0d-18cc-4245-aa96-681c5942755a + - 056764be-4168-4e9d-9c91-4ad98a53ca6a status: 200 OK code: 200 - duration: 187.475584ms + duration: 198.691219ms - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 2 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba/enable-custom-routes-propagation - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.887049Z"}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:39:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c700098-78d3-43c2-8af3-a2c10072d55c - status: 200 OK - code: 200 - duration: 34.482458ms - - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -222,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -242,11 +191,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,13 +203,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b95d23db-489b-42c3-8323-e9c25d2c581b + - e02a0b7b-a3d4-4149-8891-c2fd3736c4c7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 68.508833ms - - id: 5 + duration: 48.732257ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -275,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 method: GET response: proto: HTTP/2.0 @@ -284,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 298 uncompressed: false - body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,11 +254,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4de8bb9-11b5-40e6-8197-824f3a8783ca + - 2673d075-ae02-469d-b864-ff26f6ab687d status: 200 OK code: 200 - duration: 55.238625ms - - id: 6 + duration: 107.402043ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -324,8 +273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + 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: proto: HTTP/2.0 @@ -333,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1260 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.887049Z"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "423" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,11 +303,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4845acd-6cdb-4726-bcea-819e0903a52c + - 2e91ae69-d005-4d0f-93c6-4273f057a946 status: 200 OK code: 200 - duration: 63.725833ms - - id: 7 + duration: 111.262423ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -373,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 method: GET response: proto: HTTP/2.0 @@ -382,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 434 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' headers: Content-Length: - - "1185" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,28 +352,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e1d7723-6d35-4dc8-85b4-25465b7ba021 + - 10ef11cc-3f67-417b-a2db-61647799c062 status: 200 OK code: 200 - duration: 80.276666ms - - id: 8 + duration: 119.230889ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 252 + content_length: 251 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-dazzling-gagarin","description":"","ip_id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-lb-pedantic-dhawan","description":"","ip_id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -433,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 883 + content_length: 911 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034230Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:55.043034230Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743047Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:32.202743047Z","zone":"fr-par-1"}' headers: Content-Length: - - "883" + - "911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,11 +403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70d5ac5e-350b-4642-841e-ed953dfab72d + - 14cb07cc-c0f3-4feb-b6f8-cd90fd23c40b status: 200 OK code: 200 - duration: 419.32125ms - - id: 9 + duration: 322.413175ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -473,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -482,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1112 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-30T15:39:55.324167Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:55.333388Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-10-09T09:02:32.378510Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:32.388156Z","zone":"fr-par-1"}' headers: Content-Length: - - "1078" + - "1112" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,11 +452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 134204ca-0c78-4d6d-9b43-a1a9786c3396 + - 6e4dc3c2-8c8c-47c8-902e-63d45ed4e56b status: 200 OK code: 200 - duration: 70.161958ms - - id: 10 + duration: 123.383865ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -518,13 +467,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","default_route_propagation_enabled":false}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -533,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1105 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' + body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' headers: Content-Length: - - "1082" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,11 +503,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be1f32aa-b9a5-4aeb-aa70-cede113a8d03 + - 63e5d642-9fa0-428d-97cc-782ea608664c status: 200 OK code: 200 - duration: 536.463666ms - - id: 11 + duration: 704.314305ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -573,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c method: GET response: proto: HTTP/2.0 @@ -582,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1105 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' + body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' headers: Content-Length: - - "1082" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,11 +552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5ec329e-622f-426d-bff2-366b2c0adddc + - b21fd72b-9b1f-4af2-93cf-81eea000173d status: 200 OK code: 200 - duration: 50.469375ms - - id: 12 + duration: 97.596726ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -618,13 +567,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -633,22 +582,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,11 +605,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1902e88f-dc2a-4ad4-80f7-054730a1765b + - 41c6dde2-120d-4358-83f0-8123368f6913 status: 201 Created code: 201 - duration: 1.141571083s - - id: 13 + duration: 1.740698563s + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -675,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -684,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,11 +654,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b67a4b04-82ba-4643-9615-fb4645899a0d + - 59d8d65b-d62b-499b-9731-dfe4a9ea3e62 status: 200 OK code: 200 - duration: 140.549125ms - - id: 14 + duration: 152.855495ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -724,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -733,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,11 +703,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f6444a9-cc9c-4a9b-b089-ad1354e9e611 + - deefb2f0-478d-4713-a214-3fc3fe82c41e status: 200 OK code: 200 - duration: 127.329ms - - id: 15 + duration: 164.331117ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -773,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -782,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,11 +752,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a64e9b5-ccff-4ea3-a90c-31694df68ab0 + - 4c803f7e-3112-442a-8254-67aad6c782f0 status: 200 OK code: 200 - duration: 48.023667ms - - id: 16 + duration: 114.223608ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -824,8 +773,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action method: POST response: proto: HTTP/2.0 @@ -835,7 +784,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action","href_result":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75","id":"90b74503-9c5a-458b-bc75-34cfaa1725b2","progress":0,"started_at":"2025-06-30T15:39:56.771247+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action","href_result":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13","id":"6bfce3ea-557e-464d-8007-194ffb62830d","progress":0,"started_at":"2025-10-09T09:02:34.497791+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -844,11 +793,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:34 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90b74503-9c5a-458b-bc75-34cfaa1725b2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6bfce3ea-557e-464d-8007-194ffb62830d Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -856,11 +805,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79d03cfa-c047-4e2a-91a4-ba437ca90fa9 + - 65c0b7ab-7de2-4425-8809-dfca57360122 status: 202 Accepted code: 202 - duration: 395.955959ms - - id: 17 + duration: 273.58444ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -875,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -884,20 +833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1836 + content_length: 1858 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:56.478627+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:34.271096+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1836" + - "1858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:57 GMT + - Thu, 09 Oct 2025 09:02:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -905,11 +854,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e7634a5-6971-488c-b86a-f3f83b0a0775 + - 6f9c022a-ae63-45d0-b488-9378a10ab437 status: 200 OK code: 200 - duration: 191.074542ms - - id: 18 + duration: 153.242823ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -924,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -933,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1992" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -954,11 +903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f529772-ca37-4a95-8ae4-b51a012c03a8 + - 8c638c8b-e3c1-419c-a75a-8a2148653ed2 status: 200 OK code: 200 - duration: 279.013ms - - id: 19 + duration: 149.151925ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -973,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -982,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1992" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,11 +952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc803547-edc8-4201-aefd-385d03379296 + - bd17b7c6-23ef-43c4-ae23-e55326bd0498 status: 200 OK code: 200 - duration: 393.485875ms - - id: 20 + duration: 130.97872ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1022,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -1033,7 +982,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' headers: Content-Length: - "143" @@ -1042,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,11 +1001,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3c8e260-b9a1-411b-ad2f-f01895e02032 + - 550738ac-6a7f-4f7e-9e08-514734e95d7d status: 404 Not Found code: 404 - duration: 53.882875ms - - id: 21 + duration: 29.484076ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1071,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -1080,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,11 +1050,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e866ad00-119b-4442-af7f-fc80e23477a6 + - 8bcb6565-b8a5-4ecd-8742-1e442190bff2 status: 200 OK code: 200 - duration: 52.265958ms - - id: 22 + duration: 85.189388ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1120,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/user_data method: GET response: proto: HTTP/2.0 @@ -1140,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,11 +1099,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7264d561-e49c-44b9-9ffa-b39095d3ebb6 + - 2e90d7c8-d087-4348-bac4-a7dfb14a6a78 status: 200 OK code: 200 - duration: 72.522583ms - - id: 23 + duration: 107.033577ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1169,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics method: GET response: proto: HTTP/2.0 @@ -1189,11 +1138,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,13 +1150,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a891831e-5088-4c1f-a1e0-35724429fdd4 + - 936b07d2-7b34-4fc3-8e53-ec58dbe8405f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 81.439917ms - - id: 24 + duration: 101.315931ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1222,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -1231,20 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1992" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:03 GMT + - Thu, 09 Oct 2025 09:02:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,11 +1201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5778c9d1-b685-4234-aa96-a9bf1088b5c0 + - 71048171-0d9c-4357-9e87-9c9b80faf5aa status: 200 OK code: 200 - duration: 340.116208ms - - id: 25 + duration: 164.256776ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1267,14 +1216,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13"}' + body: '{"private_network_id":"127be423-31e2-4603-a771-dc9ee882743c"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics method: POST response: proto: HTTP/2.0 @@ -1284,7 +1233,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1293,9 +1242,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:08 GMT + - Thu, 09 Oct 2025 09:02:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1303,10 +1252,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39c9727e-4daf-4ca0-a593-09422958cb9e + - 57bd5cc4-06a4-421a-9ad2-9e8ead44870a status: 201 Created code: 201 - duration: 5.525015833s + duration: 696.057556ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 09 Oct 2025 09:02:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f47ae98-c127-413d-b976-338543852b2e + status: 200 OK + code: 200 + duration: 100.856931ms - id: 26 request: proto: HTTP/1.1 @@ -1322,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1333,7 +1331,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1342,9 +1340,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:08 GMT + - Thu, 09 Oct 2025 09:02:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2af3a21-ca04-466c-a476-fe979cd388b8 + - 38eb447c-4e32-437f-9b7f-1e7ab331ca5b status: 200 OK code: 200 - duration: 66.497667ms + duration: 137.789195ms - id: 27 request: proto: HTTP/1.1 @@ -1371,8 +1369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1382,7 +1380,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1391,9 +1389,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:14 GMT + - Thu, 09 Oct 2025 09:02:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1046631-8bc3-4fec-b173-ac713d506114 + - 1d8d45c3-7563-4072-95a0-f1ee610331aa status: 200 OK code: 200 - duration: 414.893083ms + duration: 96.950726ms - id: 28 request: proto: HTTP/1.1 @@ -1420,8 +1418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1431,7 +1429,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1440,9 +1438,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:19 GMT + - Thu, 09 Oct 2025 09:02:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7653cbac-4179-4025-9ed1-4d5788d070e2 + - 964b2197-4b81-4700-b355-38c1c42eeb9b status: 200 OK code: 200 - duration: 88.944667ms + duration: 120.24308ms - id: 29 request: proto: HTTP/1.1 @@ -1469,8 +1467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1480,7 +1478,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1489,9 +1487,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:24 GMT + - Thu, 09 Oct 2025 09:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1e71b02-1482-4cf3-863a-f25e86aed642 + - 9c9691ec-6c79-4667-b5dc-d925d0b120d1 status: 200 OK code: 200 - duration: 61.170458ms + duration: 120.667428ms - id: 30 request: proto: HTTP/1.1 @@ -1518,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -1527,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1107 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1073" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:25 GMT + - Thu, 09 Oct 2025 09:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d06a739-162d-4789-93cd-bce7ff1b0dc2 + - a4ba6613-ba69-4cda-b9f6-33954e260096 status: 200 OK code: 200 - duration: 81.016083ms + duration: 128.463675ms - id: 31 request: proto: HTTP/1.1 @@ -1567,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -1576,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1107 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1073" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:25 GMT + - Thu, 09 Oct 2025 09:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 978a3ba8-7092-4c41-b91c-a863898f826e + - ad4048fa-b201-4457-8860-6bd2a741ff3c status: 200 OK code: 200 - duration: 80.538792ms + duration: 116.556081ms - id: 32 request: proto: HTTP/1.1 @@ -1616,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1625,20 +1623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:25 GMT + - Thu, 09 Oct 2025 09:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 850da41c-c37e-402d-9042-30d64504e724 + - b4f60ac7-3ef7-4f4b-9b9e-b4c719e5aa5f status: 200 OK code: 200 - duration: 116.396958ms + duration: 89.885358ms - id: 33 request: proto: HTTP/1.1 @@ -1665,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1676,7 +1674,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1685,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:29 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0bf28eb-4f83-4f7f-b1db-10b46a78ee24 + - f22d9ec9-7ba8-4229-9a53-959525c7e5ff status: 200 OK code: 200 - duration: 128.58075ms + duration: 108.701756ms - id: 34 request: proto: HTTP/1.1 @@ -1714,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1723,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58eec52a-b6a7-4b43-8de7-73004c8485c7 + - 206ece0a-66b4-492d-82b2-5c840cee798c status: 200 OK code: 200 - duration: 68.4015ms + duration: 115.568316ms - id: 35 request: proto: HTTP/1.1 @@ -1763,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -1774,7 +1772,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1783,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:39 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cc48b43-d0b1-4943-826a-92d9039d69fb + - 67b38d57-63d0-490b-968b-e46e4d6650d0 status: 200 OK code: 200 - duration: 71.547416ms + duration: 104.003499ms - id: 36 request: proto: HTTP/1.1 @@ -1812,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -1821,20 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2450 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:39 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef385854-656b-4639-83e9-a3327e2dbd32 + - 0b636145-8f4a-4bfb-89d5-7750a42e3f73 status: 200 OK code: 200 - duration: 68.185708ms + duration: 137.642864ms - id: 37 request: proto: HTTP/1.1 @@ -1861,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=127be423-31e2-4603-a771-dc9ee882743c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1870,20 +1868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 1101 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2428" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:39 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 770c5368-b0ca-4952-9590-4678c0a7736c + - 87732dae-3054-4d31-b279-9e2e5f61ddba status: 200 OK code: 200 - duration: 151.164583ms + duration: 59.154541ms - id: 38 request: proto: HTTP/1.1 @@ -1910,8 +1908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3d25c26d-ce49-4da6-8d23-eae520bfdd13&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1919,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1070" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c589bc39-d0ec-40d7-8745-fcaae8e69c5b + - e120089d-efca-44de-9417-0fe9f55e8bd7 status: 200 OK code: 200 - duration: 56.7455ms + duration: 86.600899ms - id: 39 request: proto: HTTP/1.1 @@ -1959,8 +1957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -1968,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 1107 uncompressed: false - body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "535" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,48 +1987,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07fb0587-1bee-4f1f-b943-0a16c2909530 + - c001b688-4336-42a8-8ad6-8395bf84cf5c status: 200 OK code: 200 - duration: 56.630875ms + duration: 118.553645ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 624 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-lb-bkd-youthful-keldysh","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.88.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/backends + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 2001 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:12.664996814Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-09T09:03:12.687218503Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664996814Z"}' headers: Content-Length: - - "1073" + - "2001" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,50 +2038,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35444b3b-f7a1-45bb-9ce8-bbcae040bb5e + - 7e0ac2dd-ff69-4e91-a490-8de1730ea260 status: 200 OK code: 200 - duration: 80.924083ms + duration: 320.588079ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 624 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-suspicious-moore","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.84.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/backends - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1937 + content_length: 1109 uncompressed: false - body: '{"created_at":"2025-06-30T15:40:40.344312027Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696476Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312027Z"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-09T09:03:12.687219Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1937" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 969281a9-56b4-47fa-8294-9614865a9c61 + - 9b974ab4-ce15-4485-8590-dfee8913289c status: 200 OK code: 200 - duration: 476.225458ms + duration: 132.318405ms - id: 42 request: proto: HTTP/1.1 @@ -2108,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 method: GET response: proto: HTTP/2.0 @@ -2117,20 +2115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 1990 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:12.664997Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664997Z"}' headers: Content-Length: - - "1075" + - "1990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a46dd92-0812-46fe-bf59-7bafd72716f1 + - 57e34fb3-a0ec-4f3a-ba5d-3b2db56730bd status: 200 OK code: 200 - duration: 68.343458ms + duration: 153.486432ms - id: 43 request: proto: HTTP/1.1 @@ -2157,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -2166,20 +2164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1928 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-06-30T15:40:40.344312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312Z"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1928" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,10 +2185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c17933c-227f-4def-a7a6-60f2fe0ed66a + - 89fa54ef-54fe-445c-b3eb-a676228d8c41 status: 200 OK code: 200 - duration: 101.3645ms + duration: 125.927565ms - id: 44 request: proto: HTTP/1.1 @@ -2206,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2215,20 +2213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 550 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1073" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:40 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b546f76-d5da-4570-b2fd-7da472869198 + - ff63a3dd-3fa1-4411-8168-2df1061e1921 status: 200 OK code: 200 - duration: 79.197667ms + duration: 88.091873ms - id: 45 request: proto: HTTP/1.1 @@ -2255,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 method: GET response: proto: HTTP/2.0 @@ -2264,20 +2262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 434 uncompressed: false - body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' headers: Content-Length: - - "535" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5584aeac-d864-4efa-b978-2f5a2b96c82b + - fa09927b-ffe0-4452-996c-4951017381df status: 200 OK code: 200 - duration: 132.634ms + duration: 41.051198ms - id: 46 request: proto: HTTP/1.1 @@ -2304,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 method: GET response: proto: HTTP/2.0 @@ -2313,20 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 332 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.887049Z"}' + body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "332" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e63e4df-18ec-4cbc-8f28-05c027485e4d + - dc0383c1-0207-424a-b293-4ada8f9f8717 status: 200 OK code: 200 - duration: 34.55875ms + duration: 74.857642ms - id: 47 request: proto: HTTP/1.1 @@ -2353,8 +2351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c method: GET response: proto: HTTP/2.0 @@ -2362,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 322 + content_length: 1105 uncompressed: false - body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' headers: Content-Length: - - "322" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba0e1bb7-db88-423c-b5f8-8d48cb77a276 + - 08ced4d8-4f98-4d7d-92c1-d6fb46ccf12d status: 200 OK code: 200 - duration: 47.174916ms + duration: 30.126803ms - id: 48 request: proto: HTTP/1.1 @@ -2402,8 +2400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -2411,20 +2409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 2450 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1082" + - "2450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e201edb-ab24-4702-8b23-a9af6355479a + - 21f1cf16-35ff-488a-b7f4-681190141e64 status: 200 OK code: 200 - duration: 33.732417ms + duration: 146.67325ms - id: 49 request: proto: HTTP/1.1 @@ -2451,8 +2449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -2460,20 +2458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' headers: Content-Length: - - "2428" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9f9555f-a2cc-4537-b11a-5381e79a694b - status: 200 OK - code: 200 - duration: 210.50225ms + - b1ee1675-be5a-4762-af00-e20c828e9362 + status: 404 Not Found + code: 404 + duration: 31.342146ms - id: 50 request: proto: HTTP/1.1 @@ -2500,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -2509,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1107 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1073" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7ce5cd-14c7-4d4c-b80c-ee7981d26a56 + - 8da7f148-33c4-45af-8dff-37c64dddc2fd status: 200 OK code: 200 - duration: 163.766917ms + duration: 111.384549ms - id: 51 request: proto: HTTP/1.1 @@ -2549,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -2558,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' + body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b2e721-d317-4566-aa65-499b376c03f3 - status: 404 Not Found - code: 404 - duration: 28.054416ms + - 1a5f8df8-0192-426b-9be9-6843905113f8 + status: 200 OK + code: 200 + duration: 81.500975ms - id: 52 request: proto: HTTP/1.1 @@ -2598,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -2607,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dceff1a9-e5eb-41fa-a58a-3c50f8b1340e + - c41ba10e-b68a-4eef-9d09-3647009ccfdd status: 200 OK code: 200 - duration: 51.315917ms + duration: 116.330568ms - id: 53 request: proto: HTTP/1.1 @@ -2647,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/user_data method: GET response: proto: HTTP/2.0 @@ -2656,20 +2654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 17 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "1073" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad553915-e506-415a-8e9d-b8a6d6d4fd9d + - 7691d0b4-27ef-498a-8c64-56bef1f9b8b8 status: 200 OK code: 200 - duration: 80.4285ms + duration: 109.198396ms - id: 54 request: proto: HTTP/1.1 @@ -2696,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2705,20 +2703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 39 uncompressed: false body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "38" + - "39" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2726,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd164a07-b6e3-4844-96d0-b32f1904a096 + - a8629b9a-fe67-443c-80d3-f96b85f858fb status: 200 OK code: 200 - duration: 60.411333ms + duration: 92.84672ms - id: 55 request: proto: HTTP/1.1 @@ -2745,8 +2743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics method: GET response: proto: HTTP/2.0 @@ -2754,20 +2752,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 478 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,10 +2775,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c62861d-bf81-4448-84d3-5cdf77b66d89 + - 4ef040a5-6f3c-488b-aab9-fbd96135a49d + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 89.677792ms + duration: 115.913717ms - id: 56 request: proto: HTTP/1.1 @@ -2794,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2803,22 +2805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1101 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2826,12 +2826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3361d94-9508-4db7-880e-16c4775e14c5 - X-Total-Count: - - "1" + - 6e6de86f-505f-47a3-8e70-a102ec798d7f status: 200 OK code: 200 - duration: 64.339ms + duration: 37.203161ms - id: 57 request: proto: HTTP/1.1 @@ -2847,8 +2845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -2856,20 +2854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 475 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1070" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2877,10 +2875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b38bf46-904a-4a61-af25-f209797b9451 + - 2b7bbf01-9cc7-4796-b258-709b2fc417d4 status: 200 OK code: 200 - duration: 33.302292ms + duration: 93.895856ms - id: 58 request: proto: HTTP/1.1 @@ -2896,8 +2894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -2905,20 +2903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2450 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:41 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2926,10 +2924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63a0d3b4-60f6-42cc-8223-5537be9a7b7a + - 47c9c114-2005-4bdc-929f-22c7c2843096 status: 200 OK code: 200 - duration: 74.474292ms + duration: 141.81621ms - id: 59 request: proto: HTTP/1.1 @@ -2945,8 +2943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=127be423-31e2-4603-a771-dc9ee882743c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2954,20 +2952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 1101 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2428" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2975,10 +2973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a6aeb87-fdac-4581-a455-d19692b55e8b + - 9301e16d-d728-442d-bd1b-b07d1246a3f1 status: 200 OK code: 200 - duration: 207.443958ms + duration: 49.044047ms - id: 60 request: proto: HTTP/1.1 @@ -2994,8 +2992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3d25c26d-ce49-4da6-8d23-eae520bfdd13&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3003,20 +3001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1070" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3024,10 +3022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3ef3513-dc7a-46a3-b11d-3fe29476baaf + - 007f2632-95f1-4d6b-a317-b57e3d0e2fbc status: 200 OK code: 200 - duration: 75.163917ms + duration: 83.553366ms - id: 61 request: proto: HTTP/1.1 @@ -3043,8 +3041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 method: GET response: proto: HTTP/2.0 @@ -3052,20 +3050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 1990 uncompressed: false - body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-09T09:03:12.664997Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664997Z"}' headers: Content-Length: - - "535" + - "1990" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3073,10 +3071,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77a544c1-1ec5-48f5-ba08-65104e59a1ac + - 5f88256f-ef5d-47fd-8be5-714d892fd32e status: 200 OK code: 200 - duration: 44.877875ms + duration: 102.638153ms - id: 62 request: proto: HTTP/1.1 @@ -3092,8 +3090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -3101,20 +3099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1926 + content_length: 1107 uncompressed: false - body: '{"created_at":"2025-06-30T15:40:40.344312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312Z"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1926" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3122,10 +3120,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2158c205-bdc8-41cb-ba3d-08752fcb531d + - 61b798fc-31b3-4a21-a8f2-672ad321f194 status: 200 OK code: 200 - duration: 88.468583ms + duration: 138.288167ms - id: 63 request: proto: HTTP/1.1 @@ -3141,8 +3139,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -3150,20 +3148,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1107 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1073" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3171,10 +3169,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1d7b64-6f95-4c2d-b8cd-c58cc5d863dc + - cc9db42f-8c35-4b06-923c-999e0635797a status: 200 OK code: 200 - duration: 81.007125ms + duration: 146.079994ms - id: 64 request: proto: HTTP/1.1 @@ -3190,29 +3188,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 0 uncompressed: false - body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' + body: "" headers: - Content-Length: - - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3220,10 +3216,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73437c29-635a-4999-ae30-efd6b2ad9777 - status: 200 OK - code: 200 - duration: 52.25125ms + - e38ae188-96b4-47f2-8539-3251b1cf219d + status: 204 No Content + code: 204 + duration: 314.325391ms - id: 65 request: proto: HTTP/1.1 @@ -3239,8 +3235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -3248,20 +3244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1107 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1073" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:42 GMT + - Thu, 09 Oct 2025 09:03:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3269,10 +3265,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d67e65b-e7fe-4215-86fb-2a831db84be1 + - cdd6c01a-ff4e-4a22-ae14-152da2cbbde7 status: 200 OK code: 200 - duration: 66.884417ms + duration: 114.485419ms - id: 66 request: proto: HTTP/1.1 @@ -3288,27 +3284,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 475 uncompressed: false - body: "" + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: + Content-Length: + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3316,10 +3314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c34e03c1-f2bb-400f-9cb0-b4b4baabc883 - status: 204 No Content - code: 204 - duration: 404.349042ms + - 57c31f12-9077-4a57-b7df-5bee37c7a6f4 + status: 200 OK + code: 200 + duration: 97.323844ms - id: 67 request: proto: HTTP/1.1 @@ -3335,8 +3333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -3344,20 +3342,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 1107 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:42.892847Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' headers: Content-Length: - - "1075" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3365,10 +3363,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2861846b-6232-4e11-b953-91e71ace9fbe + - ca1d4039-b7a5-45c7-a871-b8d6df52e2b0 status: 200 OK code: 200 - duration: 97.946084ms + duration: 137.986456ms - id: 68 request: proto: HTTP/1.1 @@ -3384,29 +3382,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49?release_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 0 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:43.240062Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:59.041780Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3414,10 +3410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2065ecda-eedd-4cc2-a117-b13a1cbcfedc - status: 200 OK - code: 200 - duration: 57.435959ms + - c4a0b4f0-dc3f-4862-aa47-5fd9d8ce1912 + status: 204 No Content + code: 204 + duration: 321.785287ms - id: 69 request: proto: HTTP/1.1 @@ -3433,29 +3429,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 0 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3463,10 +3457,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54e72010-7e72-4c3a-89de-03d2dc8663a9 - status: 200 OK - code: 200 - duration: 58.305541ms + - 6b8dd5cb-d71a-4a7d-97e6-f5df83b949fc + status: 204 No Content + code: 204 + duration: 427.087371ms - id: 70 request: proto: HTTP/1.1 @@ -3482,27 +3476,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0?release_ip=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1111 uncompressed: false - body: "" + body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:03:16.106685Z","zone":"fr-par-1"}' headers: + Content-Length: + - "1111" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3510,10 +3506,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d73aac3-a96c-4998-b2ef-b0273d5ba206 - status: 204 No Content - code: 204 - duration: 319.028333ms + - a2d59bed-a8f7-4407-bcf6-f576a7fa1236 + status: 200 OK + code: 200 + duration: 100.816821ms - id: 71 request: proto: HTTP/1.1 @@ -3529,8 +3525,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 method: GET response: proto: HTTP/2.0 @@ -3538,20 +3534,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1077 + content_length: 148 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:43.240062Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:40:43.401908Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","type":"not_found"}' headers: Content-Length: - - "1077" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3559,10 +3555,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e34d651-3727-42bf-9825-1324923f611a - status: 200 OK - code: 200 - duration: 81.107958ms + - 3e33d6ca-7993-472e-95ae-65d0ef5292f9 + status: 404 Not Found + code: 404 + duration: 91.477333ms - id: 72 request: proto: HTTP/1.1 @@ -3578,27 +3574,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1992 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1992" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3606,199 +3604,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebc5a542-ebed-4949-b7ec-28cc613e8eb6 - status: 204 No Content - code: 204 - duration: 529.941041ms + - f8123bb6-3a28-47a6-b07f-248c7f355190 + status: 200 OK + code: 200 + duration: 143.879819ms - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 353 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"0331babf-3da0-4209-97d9-90f5ada936e1","type":"not_found"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action","href_result":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13","id":"ef54e829-db8b-4fa2-83a8-3df595949c23","progress":0,"started_at":"2025-10-09T09:03:16.812679+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:43 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 865e56b9-4345-4173-8f5f-9218fcd11d23 - status: 404 Not Found - code: 404 - duration: 67.519542ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1970 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1970" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6fac3bef-a211-455e-a877-f7c9a99bfc74 - status: 200 OK - code: 200 - duration: 200.839833ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 686 - uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "686" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:44 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d6d7b3f1-12e4-4c3f-96c1-40e6810e3a2f - status: 200 OK - code: 200 - duration: 41.811167ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweroff"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 352 - uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action","href_result":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75","id":"93fdec91-d48d-4d14-8107-dcfb8d574096","progress":0,"started_at":"2025-06-30T15:40:44.420415+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "352" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:44 GMT + - Thu, 09 Oct 2025 09:03:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93fdec91-d48d-4d14-8107-dcfb8d574096 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ef54e829-db8b-4fa2-83a8-3df595949c23 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3806,11 +3657,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86fe8001-f234-4db6-a5a7-b44b3c7d0373 + - 948f3a20-9876-46e2-a3a3-a1bade9d8709 status: 202 Accepted code: 202 - duration: 319.937291ms - - id: 77 + duration: 278.420892ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3825,8 +3676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -3834,20 +3685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:03:16.583756+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1930" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:44 GMT + - Thu, 09 Oct 2025 09:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3855,58 +3706,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca4b5249-3b98-4330-8248-a365d0fa1d4b + - 9896be93-837a-4c67-a58b-952175668d50 status: 200 OK code: 200 - duration: 165.083667ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:45 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4d85be2f-8252-431d-9d5f-f677ef0dab0f - status: 204 No Content - code: 204 - duration: 1.796258125s - - id: 79 + duration: 173.643872ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3921,8 +3725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c method: DELETE response: proto: HTTP/2.0 @@ -3939,9 +3743,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:45 GMT + - Thu, 09 Oct 2025 09:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3949,305 +3753,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06a3ac92-e598-408d-8c64-2076ed7bcc1a + - 90d8148f-cb12-4bf0-8c41-a0c78dce3e7a status: 204 No Content code: 204 - duration: 98.714084ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1930 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:49 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 96b9947f-b1d8-48ff-88e3-3d87433f2b6b - status: 200 OK - code: 200 - duration: 144.966041ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1930 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0810db7a-1c92-4755-a2c3-2f01132e9cf1 - status: 200 OK - code: 200 - duration: 144.945041ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1930 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f0e57766-6660-463e-bd38-7c65515d3c69 - status: 200 OK - code: 200 - duration: 174.420292ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1930 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1930" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc356a13-3f2b-483f-8391-521f751b5f5f - status: 200 OK - code: 200 - duration: 180.872958ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1814 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:41:07.805324+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1814" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6de51a84-367b-41e8-af3d-414ff8d14688 - status: 200 OK - code: 200 - duration: 144.98425ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1814 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:41:07.805324+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1814" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cc4b904c-41e7-47b1-97b6-42c12ee0bc2c - status: 200 OK - code: 200 - duration: 146.469625ms - - id: 86 + duration: 1.232897951s + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4262,8 +3772,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 method: DELETE response: proto: HTTP/2.0 @@ -4280,9 +3790,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:10 GMT + - Thu, 09 Oct 2025 09:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4290,11 +3800,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe84ae35-8f21-4a74-82ff-c71e5e8cad75 + - f0ca66a4-01c0-4a52-a915-50429b21e7a3 status: 204 No Content code: 204 - duration: 424.485291ms - - id: 87 + duration: 192.567458ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4309,8 +3819,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -4320,7 +3830,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","type":"not_found"}' headers: Content-Length: - "143" @@ -4329,9 +3839,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:11 GMT + - Thu, 09 Oct 2025 09:03:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4339,11 +3849,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77398b52-e313-4a4e-ac8e-d9a7a608a394 + - 110fdf26-8f2d-4ab5-8c5e-eead98df70d5 status: 404 Not Found code: 404 - duration: 108.642416ms - - id: 88 + duration: 67.862639ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4358,8 +3868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -4369,7 +3879,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' headers: Content-Length: - "143" @@ -4378,9 +3888,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:11 GMT + - Thu, 09 Oct 2025 09:03:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4388,11 +3898,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96412d50-b1e6-4951-a4bd-bec0f721fa79 + - 13bd4a0c-eea7-4cc4-9307-756160a956f8 status: 404 Not Found code: 404 - duration: 38.563291ms - - id: 89 + duration: 43.398592ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4407,8 +3917,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: GET response: proto: HTTP/2.0 @@ -4416,20 +3926,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":"2025-06-30T15:41:10.980693Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:41:10.980693Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":"2025-10-09T09:03:19.435160Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:19.435160Z","zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:11 GMT + - Thu, 09 Oct 2025 09:03:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4437,11 +3947,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f7a41d6-8bb4-47f7-b505-799935e5117e + - 14755939-8c80-42bc-af10-c96520a557c6 status: 200 OK code: 200 - duration: 43.929416ms - - id: 90 + duration: 86.529069ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4456,8 +3966,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 method: DELETE response: proto: HTTP/2.0 @@ -4474,9 +3984,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:11 GMT + - Thu, 09 Oct 2025 09:03:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4484,11 +3994,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50d444f6-f94e-4298-98c1-1a2768430a56 + - e53b926c-6ade-493f-8c69-5b2a237a10cc status: 204 No Content code: 204 - duration: 93.089417ms - - id: 91 + duration: 170.081975ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4503,8 +4013,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -4523,9 +4033,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:13 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4533,11 +4043,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 581fd5b1-d0ee-4f11-a001-a24e7780768a + - 6f65fab0-9bad-401c-bf78-a7093ad3b0fc status: 404 Not Found code: 404 - duration: 23.857625ms - - id: 92 + duration: 54.345895ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4552,8 +4062,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 method: GET response: proto: HTTP/2.0 @@ -4572,9 +4082,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:13 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4582,11 +4092,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d509777-5576-4e84-8d3d-8971b0980c6b + - 2d3b1d31-5417-4e55-b539-e80f37f4003b status: 404 Not Found code: 404 - duration: 29.91975ms - - id: 93 + duration: 19.130032ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4601,8 +4111,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 method: GET response: proto: HTTP/2.0 @@ -4610,20 +4120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 298 uncompressed: false - body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "288" + - "298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:13 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4631,11 +4141,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a139ab0d-7574-4393-a622-504b9d98459f + - 1fbd57d5-a42b-418c-9374-9608a39fe5e5 status: 200 OK code: 200 - duration: 52.713083ms - - id: 94 + duration: 133.665832ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4650,8 +4160,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 method: DELETE response: proto: HTTP/2.0 @@ -4668,9 +4178,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:14 GMT + - Thu, 09 Oct 2025 09:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4678,11 +4188,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa885fae-5bd0-4bae-afae-832ffe1e52b0 + - 520c1ef7-52c7-4577-9b5b-ef702e800dfe status: 204 No Content code: 204 - duration: 396.646708ms - - id: 95 + duration: 610.37019ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4697,8 +4207,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 method: GET response: proto: HTTP/2.0 @@ -4708,7 +4218,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","type":"not_found"}' headers: Content-Length: - "143" @@ -4717,9 +4227,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:14 GMT + - Thu, 09 Oct 2025 09:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4727,7 +4237,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dcbb95e-dcfd-4f57-b109-a60eb6e871a2 + - b65adc7d-3db5-411d-a1b4-560d5ad44aa4 status: 404 Not Found code: 404 - duration: 82.697875ms + duration: 108.189104ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml index 2e705eff8..8308096dd 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":false,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.830839Z"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "424" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:24 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac3a2f83-a39c-4df0-8f6a-09b97185e50e + - 638e8dfe-2b58-4527-8555-091d101f6082 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 181.287875ms + duration: 128.055447ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -76,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:24 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,31 +101,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8c46327-550f-4a99-9730-4a02d876037b + - 54cd63c2-c6b4-4db7-8936-801e1fd12177 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 180.499583ms + duration: 45.263256ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5/enable-custom-routes-propagation + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: proto: HTTP/2.0 @@ -131,20 +133,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.884867Z"}' + body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' headers: Content-Length: - - "423" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +154,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c01e216-ff47-4e28-91bb-7f77d49eed86 + - a15560bf-d838-407f-8c4b-b9d2dae32fb7 status: 200 OK code: 200 - duration: 40.09275ms + duration: 201.04615ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +173,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + 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: proto: HTTP/2.0 @@ -180,22 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1260 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "19730" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Thu, 09 Oct 2025 09:02:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96f158e7-97cf-44a4-9f5a-fcc705265dfc - X-Total-Count: - - "75" + - 83389c35-8fc1-4928-aef5-86cae77124a0 status: 200 OK code: 200 - duration: 54.485458ms + duration: 50.298008ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 method: GET response: proto: HTTP/2.0 @@ -233,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.884867Z"}' + body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' headers: Content-Length: - - "423" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,48 +252,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cc6b0d5-8f76-4374-8ee5-777030fec823 + - c7f5b400-030d-4d9c-b110-22a1be52d250 status: 200 OK code: 200 - duration: 29.138209ms + duration: 106.384423ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 214 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - 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 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1185 + content_length: 1105 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' headers: Content-Length: - - "1185" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:54 GMT + - Thu, 09 Oct 2025 09:02:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,50 +303,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da650177-c312-447e-a5a1-cc9e673c9b2a + - 9790867c-ebf7-4dc3-980b-f7af13970895 status: 200 OK code: 200 - duration: 79.672834ms + duration: 699.652944ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 214 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1105 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' + body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' headers: Content-Length: - - "1082" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,48 +352,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa9033e0-0768-4b3c-a24d-75c969d21f03 + - 575f6889-e0ba-4bd7-b21c-cfe50ddde4c1 status: 200 OK code: 200 - duration: 670.738917ms + duration: 105.182484ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 321 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1836 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1082" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:25 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,52 +405,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bdc02c2-1933-47a1-972e-81c7f4ef88c6 - status: 200 OK - code: 200 - duration: 33.541458ms + - 832166f5-ef56-4742-97a8-4162f6ee5255 + status: 201 Created + code: 201 + duration: 1.384836768s - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 321 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - Thu, 09 Oct 2025 09:02:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -456,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 541cbd9a-2854-43d2-94b9-859a10e8d098 - status: 201 Created - code: 201 - duration: 724.889416ms + - 2bc97f2b-861b-4865-85a9-865c268ccae4 + status: 200 OK + code: 200 + duration: 219.80295ms - id: 9 request: proto: HTTP/1.1 @@ -475,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -484,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:55 GMT + - Thu, 09 Oct 2025 09:02:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e389c19c-72d6-470b-a502-9782b8aee39d + - a36a7fd5-51ca-4a92-920e-f9a42ae99a10 status: 200 OK code: 200 - duration: 162.282208ms + duration: 176.575549ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -533,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 706 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' headers: Content-Length: - - "1814" + - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e8c03a2-aa25-4a9e-9785-3286efe4cfa9 + - bdb9d726-d1c4-4aea-985d-baffc9ac1b3e status: 200 OK code: 200 - duration: 131.691375ms + duration: 128.124963ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -582,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 907ee4f5-a8e6-44b5-8343-347aaeb4d5d6 + - 826f382f-c3bb-4c7f-94cf-6bed26803ad7 status: 200 OK code: 200 - duration: 56.268458ms + duration: 93.855103ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +622,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action method: POST response: proto: HTTP/2.0 @@ -635,7 +633,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/63b807af-58c6-4499-a6c3-664762f3df13/action","href_result":"/servers/63b807af-58c6-4499-a6c3-664762f3df13","id":"4f2eea4d-3743-4d22-9d00-9590c16b3028","progress":0,"started_at":"2025-06-30T15:39:56.314949+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action","href_result":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","id":"3006b751-4c84-4733-9eb4-f22bfdd6afe4","progress":0,"started_at":"2025-10-09T09:02:31.895853+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -644,11 +642,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4f2eea4d-3743-4d22-9d00-9590c16b3028 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3006b751-4c84-4733-9eb4-f22bfdd6afe4 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c086af66-c559-49eb-8f0c-7deaba1ff03f + - 5a53b47b-fe75-4b27-b6e8-49c3147c382e status: 202 Accepted code: 202 - duration: 275.267708ms + duration: 468.271087ms - id: 13 request: proto: HTTP/1.1 @@ -675,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -684,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1836 + content_length: 1858 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:56.105460+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:31.654369+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1836" + - "1858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:39:56 GMT + - Thu, 09 Oct 2025 09:02:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f545694-97cd-4e25-87f9-79095dd6f81a + - 1641dc57-2ca1-4cf9-abe4-c882062104a3 status: 200 OK code: 200 - duration: 165.965875ms + duration: 133.966181ms - id: 14 request: proto: HTTP/1.1 @@ -724,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -733,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 1994 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1971" + - "1994" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:01 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ecfb799-7a1b-4a75-a8cd-0d98a2733b4d + - 598da952-3f8b-43ce-a715-3f411c33e5b4 status: 200 OK code: 200 - duration: 171.390125ms + duration: 171.430004ms - id: 15 request: proto: HTTP/1.1 @@ -773,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -782,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 1994 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1971" + - "1994" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:01 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d1697ab-be10-449a-90c4-b3c5c1a8ece4 + - a0b74093-5493-4d6d-ad9b-f22f28973311 status: 200 OK code: 200 - duration: 289.753791ms + duration: 210.919947ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -833,7 +831,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' headers: Content-Length: - "143" @@ -842,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23d4016d-852a-44b5-a27c-00a0f3665a73 + - 8810f97b-11aa-46ab-908f-40207f81d3f1 status: 404 Not Found code: 404 - duration: 74.141333ms + duration: 34.469217ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -880,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bbadce3-c98b-4ed7-a424-4438ab4e0ebf + - 137b43cb-8040-4468-85e9-55238953e511 status: 200 OK code: 200 - duration: 54.066625ms + duration: 98.015281ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/user_data method: GET response: proto: HTTP/2.0 @@ -940,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16d77a47-ff57-45a2-a707-952e69831997 + - 9a1b4255-b386-4254-aa70-3552addd0c10 status: 200 OK code: 200 - duration: 92.192833ms + duration: 92.449215ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics method: GET response: proto: HTTP/2.0 @@ -989,11 +987,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,12 +999,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fbee0f8-dbca-49e2-a07a-f1ec08fddf47 + - e27d2c1a-817b-44c1-91f9-e543b6c08f9e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 104.864666ms + duration: 105.828465ms - id: 20 request: proto: HTTP/1.1 @@ -1022,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -1031,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1971 + content_length: 1994 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1971" + - "1994" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:02 GMT + - Thu, 09 Oct 2025 09:02:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1010b2c-b224-4ee3-a826-8cb036070572 + - aaffa0bb-3a8c-46d3-8799-e2bb8cf493ce status: 200 OK code: 200 - duration: 393.770209ms + duration: 143.554366ms - id: 21 request: proto: HTTP/1.1 @@ -1067,14 +1065,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9"}' + body: '{"private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics method: POST response: proto: HTTP/2.0 @@ -1084,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1093,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:08 GMT + - Thu, 09 Oct 2025 09:02:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91a2169a-96b8-4f69-b9b0-01d4a6cfeee3 + - b9d24e9b-b755-4d04-a662-fb44a9667675 status: 201 Created code: 201 - duration: 5.541093709s + duration: 788.920625ms - id: 22 request: proto: HTTP/1.1 @@ -1122,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1142,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:08 GMT + - Thu, 09 Oct 2025 09:02:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7609ccde-2e8d-4088-8029-d7460773ef54 + - 3dc46210-b2a8-43ae-8db3-6c9f7523bfae status: 200 OK code: 200 - duration: 95.037916ms + duration: 116.315694ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1191,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:13 GMT + - Thu, 09 Oct 2025 09:02:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c92d4365-80c5-4eab-9c33-3fbe415f2bed + - a98169c9-8a35-465e-a1a4-5e19ce8e4dc2 status: 200 OK code: 200 - duration: 107.097875ms + duration: 123.274714ms - id: 24 request: proto: HTTP/1.1 @@ -1220,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1240,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:18 GMT + - Thu, 09 Oct 2025 09:02:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11492acb-0f6a-4b74-a9b2-e77cc1d6694a + - 7726d58e-ecf4-417a-b9c7-75bf0d87786c status: 200 OK code: 200 - duration: 86.248208ms + duration: 117.249595ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1280,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1289,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:23 GMT + - Thu, 09 Oct 2025 09:02:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 122a7821-2441-4317-b03d-60b5e2743e81 + - 986c3b18-a085-443e-8b10-d6ec4c942f52 status: 200 OK code: 200 - duration: 82.257834ms + duration: 111.261969ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1338,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:28 GMT + - Thu, 09 Oct 2025 09:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - baf30b9c-2c09-445d-9ec9-7a3731a28bde + - bce280a7-66e5-4d06-bfe1-253e990b8d75 status: 200 OK code: 200 - duration: 61.879708ms + duration: 118.286215ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1376,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1387,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:33 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4ac4fad-71df-4265-8711-44ec984f9e7c + - 70e03676-60d0-4da8-877b-d57b12163af6 status: 200 OK code: 200 - duration: 61.36075ms + duration: 99.275861ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1425,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1436,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:33 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4914954-ceb9-4b85-843e-3b2a20c56c51 + - 306c0ae5-48d8-4f8c-ad91-23cc1d403e07 status: 200 OK code: 200 - duration: 69.025792ms + duration: 98.038946ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -1474,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2429 + content_length: 2452 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2429" + - "2452" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2926fc89-a256-4372-85c4-e4d3be51b2dd + - 93a23494-cc23-4bc5-be09-edabd6bb722b status: 200 OK code: 200 - duration: 222.041792ms + duration: 157.482051ms - id: 30 request: proto: HTTP/1.1 @@ -1514,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=4d11f49e-c441-4a06-91af-8929e36f39b9&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cc11bac3-9f77-4e7d-98b5-dcfcab329f6d&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1523,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1101 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48e8e2c9-253f-4a90-ae69-0d0ec652a5bd + - 658639ac-5df1-4aca-bb07-a77fa8a736f5 status: 200 OK code: 200 - duration: 52.85475ms + duration: 123.216847ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1572,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 775efd6f-07d1-4d1b-8ce5-7db3431555d0 + - 33546a0e-b95f-40ff-934b-92376e809319 status: 200 OK code: 200 - duration: 55.226125ms + duration: 112.319541ms - id: 32 request: proto: HTTP/1.1 @@ -1612,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1621,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4bb8b74-6959-45e1-b496-d9e65c71c83e + - 39ae2122-3295-466a-ae0d-3fc797a0162a status: 200 OK code: 200 - duration: 62.88175ms + duration: 137.980343ms - id: 33 request: proto: HTTP/1.1 @@ -1661,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1670,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20e1a80b-69db-4272-a1df-3232622330fe + - 9b6b4866-c0ff-4422-8274-15ce76f6af4e status: 200 OK code: 200 - duration: 45.401667ms + duration: 102.379423ms - id: 34 request: proto: HTTP/1.1 @@ -1710,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1719,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c252a441-d201-4f18-9db0-ab635da951b0 + - a34c5909-af9e-4851-a947-363fc8fa9bf4 status: 200 OK code: 200 - duration: 46.5125ms + duration: 102.440816ms - id: 35 request: proto: HTTP/1.1 @@ -1759,8 +1757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 method: GET response: proto: HTTP/2.0 @@ -1768,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 434 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:39:54.884867Z"}' + body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' headers: Content-Length: - - "423" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ffb9e82-0037-4620-bfb1-357cf0544482 + - 9828822c-e633-4db5-9021-5f355f50d20a status: 200 OK code: 200 - duration: 61.136792ms + duration: 85.964818ms - id: 36 request: proto: HTTP/1.1 @@ -1808,8 +1806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -1817,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 2452 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1082" + - "2452" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94cdea5-0358-4a1d-be43-45037e3fbe9c + - da3ea3c4-de28-4ec5-82cb-7b37f360c0a6 status: 200 OK code: 200 - duration: 29.371167ms + duration: 152.884815ms - id: 37 request: proto: HTTP/1.1 @@ -1857,8 +1855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d method: GET response: proto: HTTP/2.0 @@ -1866,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2429 + content_length: 1105 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' headers: Content-Length: - - "2429" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67ab3181-dab8-4436-b0d5-9038b97d4346 + - 631c7b41-cb0c-4a33-aadc-526e4df2a683 status: 200 OK code: 200 - duration: 172.561083ms + duration: 84.949043ms - id: 38 request: proto: HTTP/1.1 @@ -1906,8 +1904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -1917,7 +1915,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' headers: Content-Length: - "143" @@ -1926,9 +1924,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 647725d5-aad7-463a-92d0-bcb8695aac06 + - f9ba0aef-b832-4aab-bcb2-c180c0d17e4f status: 404 Not Found code: 404 - duration: 34.643375ms + duration: 34.066584ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -1964,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6d00202-6445-42b4-b3ab-3ee4c40cb81e + - 568a3d48-5ac5-44ea-9f3e-59be9fceccd1 status: 200 OK code: 200 - duration: 53.03575ms + duration: 90.118208ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/user_data method: GET response: proto: HTTP/2.0 @@ -2024,9 +2022,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2034,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 593bbbc6-6c94-4b62-8a13-11ae95685bfd + - 6c632e01-e38a-42d3-a590-8c01d0a03357 status: 200 OK code: 200 - duration: 78.502042ms + duration: 103.925798ms - id: 41 request: proto: HTTP/1.1 @@ -2053,8 +2051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics method: GET response: proto: HTTP/2.0 @@ -2064,7 +2062,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2073,11 +2071,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:34 GMT + - Thu, 09 Oct 2025 09:03:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,12 +2083,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2413df9-3a06-470f-b188-a5c33b509f84 + - 03604dee-c8d4-4662-91a1-0ec12e78df17 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 509.378834ms + duration: 107.70595ms - id: 42 request: proto: HTTP/1.1 @@ -2106,8 +2104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2115,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1101 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeadbcc9-52ab-4b53-a884-d91162b1c6b7 + - 796e5116-3fe0-4c69-933e-aef649786a88 status: 200 OK code: 200 - duration: 29.433917ms + duration: 85.720406ms - id: 43 request: proto: HTTP/1.1 @@ -2155,8 +2153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -2166,7 +2164,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2175,9 +2173,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7cac7da-d4b2-4351-af29-d71ba32a8c3c + - 82193b02-a9c8-4b45-bbb1-ff68b31c79d0 status: 200 OK code: 200 - duration: 68.161625ms + duration: 109.887806ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -2213,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2429 + content_length: 2452 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2429" + - "2452" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a4aad71-1b8f-4400-a291-c881cf1b5c3b + - c5a4cc38-5a21-417f-b795-ea1cd01a25f6 status: 200 OK code: 200 - duration: 149.448375ms + duration: 165.792944ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=4d11f49e-c441-4a06-91af-8929e36f39b9&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cc11bac3-9f77-4e7d-98b5-dcfcab329f6d&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2262,20 +2260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1101 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72448df3-1096-4c3f-a7c9-082bb9c18965 + - 71f513f6-b8a0-45a2-bda4-4aae96a757bb status: 200 OK code: 200 - duration: 50.018958ms + duration: 131.475081ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2311,20 +2309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13a985ab-a114-433c-9069-1ff7cea85efa + - 0801343c-7876-4e62-9695-ec134ca14c26 status: 200 OK code: 200 - duration: 56.299709ms + duration: 95.332188ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2360,20 +2358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 549 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:35 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e5c8123-c37d-4220-a0ed-e48a6327264e + - ab4e73aa-5191-4ec4-b108-d106c8a4f4a3 status: 200 OK code: 200 - duration: 57.441583ms + duration: 107.712089ms - id: 48 request: proto: HTTP/1.1 @@ -2400,106 +2398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 704c5874-fcb4-49c6-b641-2c525f437966 - status: 200 OK - code: 200 - duration: 46.753792ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 535 - uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' - headers: - Content-Length: - - "535" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b81d5352-6d3f-475e-b1ef-8f80aadec449 - status: 200 OK - code: 200 - duration: 72.706958ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -2509,7 +2409,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2518,9 +2418,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:36 GMT + - Thu, 09 Oct 2025 09:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,11 +2428,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38b2fc41-aec4-412d-8289-3fdbfe578a2d + - a591f441-c824-43e9-8e9d-21357e43e8b5 status: 200 OK code: 200 - duration: 64.6545ms - - id: 51 + duration: 102.617932ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2547,8 +2447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: DELETE response: proto: HTTP/2.0 @@ -2565,9 +2465,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:36 GMT + - Thu, 09 Oct 2025 09:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2575,11 +2475,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebee4655-fdf9-4e32-a0b6-f1eae6a7a8ff + - 1de948a2-6a54-498a-b29d-204b4b911a5d status: 204 No Content code: 204 - duration: 495.227333ms - - id: 52 + duration: 465.517867ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2594,8 +2494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 method: GET response: proto: HTTP/2.0 @@ -2605,7 +2505,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"320effc1-8980-4902-afff-75f006e6ad76","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","type":"not_found"}' headers: Content-Length: - "148" @@ -2614,9 +2514,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:36 GMT + - Thu, 09 Oct 2025 09:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2624,60 +2524,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523409aa-0e7f-4b91-9f69-968b9ee0f672 + - 84df8858-2368-4beb-aa79-f6e06b39d2a7 status: 404 Not Found code: 404 - duration: 150.516625ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1971 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1971" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a3f4654d-1b70-40f7-bce1-fe67a5ee03a6 - status: 200 OK - code: 200 - duration: 146.360917ms - - id: 54 + duration: 109.773555ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2692,8 +2543,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -2701,20 +2552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 2040 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "2040" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:36 GMT + - Thu, 09 Oct 2025 09:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2722,29 +2573,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 920db40c-73a7-4c0f-b10f-f35ab4cdf843 + - d56454bb-a14f-4854-ae2a-6c2812118ae1 status: 200 OK code: 200 - duration: 40.155791ms - - id: 55 + duration: 153.193603ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action method: POST response: proto: HTTP/2.0 @@ -2752,22 +2603,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/63b807af-58c6-4499-a6c3-664762f3df13/action","href_result":"/servers/63b807af-58c6-4499-a6c3-664762f3df13","id":"2a3bb6f4-8ae9-488f-8014-f670114f80ad","progress":0,"started_at":"2025-06-30T15:40:37.059720+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action","href_result":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","id":"9f55bc9d-096e-4f23-8ad2-565bb8e18503","progress":0,"started_at":"2025-10-09T09:03:07.994737+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:37 GMT + - Thu, 09 Oct 2025 09:03:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a3bb6f4-8ae9-488f-8014-f670114f80ad + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9f55bc9d-096e-4f23-8ad2-565bb8e18503 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,11 +2626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b6a7729-488f-43a5-85e4-b714c9b88b22 + - dd646474-36e6-4d0e-a484-ca563c714096 status: 202 Accepted code: 202 - duration: 263.29575ms - - id: 56 + duration: 339.269812ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2794,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -2803,20 +2654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1931" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:37 GMT + - Thu, 09 Oct 2025 09:03:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2824,11 +2675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cba0d286-d9a2-4e44-a216-7d73858d6b81 + - bdd9971d-6034-4861-b46f-f320aabadb28 status: 200 OK code: 200 - duration: 151.295458ms - - id: 57 + duration: 155.610539ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2843,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d method: DELETE response: proto: HTTP/2.0 @@ -2861,9 +2712,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:38 GMT + - Thu, 09 Oct 2025 09:03:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2871,11 +2722,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b2f203c-203a-4642-988a-07d5dc0c2134 + - 83bb1b1f-6032-4d2e-a7e6-7ed5558a9413 status: 204 No Content code: 204 - duration: 2.294986667s - - id: 58 + duration: 1.258153641s + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2890,8 +2741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 method: DELETE response: proto: HTTP/2.0 @@ -2908,9 +2759,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:40:39 GMT + - Thu, 09 Oct 2025 09:03:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2918,256 +2769,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 156c7d82-5072-4160-aceb-8ed2234ae346 + - 1c947568-9fa1-4c87-89a0-e44fa7b927b7 status: 204 No Content code: 204 - duration: 103.252375ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1931 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:42 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ebabde44-a66a-4bb3-abe2-684057e1524d - status: 200 OK - code: 200 - duration: 142.786ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1931 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:47 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f12e0fab-37e5-4871-ae15-6e25a74e401c - status: 200 OK - code: 200 - duration: 161.161ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1931 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9bf5ccfd-1a49-457a-982c-8099f65718e3 - status: 200 OK - code: 200 - duration: 263.801417ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1931 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:40:57 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - be6a378a-6865-4787-9a3c-f99153abd72b - status: 200 OK - code: 200 - duration: 144.279625ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1931 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1931" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:03 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0819501-f080-4063-9bf0-9ecc895ed8be - status: 200 OK - code: 200 - duration: 147.154042ms - - id: 64 + duration: 215.690654ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3182,8 +2788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -3191,20 +2797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:41:06.764388+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3212,11 +2818,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 176b9861-7d7d-49d5-983f-4bda3672be4b + - b06f1b5a-733d-44cb-8ece-ca549489101d status: 200 OK code: 200 - duration: 160.015917ms - - id: 65 + duration: 154.001337ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3231,8 +2837,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -3240,20 +2846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1957 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:41:06.764388+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1814" + - "1957" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3261,58 +2867,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f1fc629-8c63-4ae9-a313-5e27645093f1 + - 7349cd06-dda1-4fc9-872b-680b37f8c47f status: 200 OK code: 200 - duration: 148.673417ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:41:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4adf2c81-7384-42e4-afa6-83ab3a077c56 - status: 204 No Content - code: 204 - duration: 245.898209ms - - id: 67 + duration: 154.204502ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3327,8 +2886,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -3338,7 +2897,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","type":"not_found"}' headers: Content-Length: - "143" @@ -3347,9 +2906,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3357,11 +2916,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b51308c4-2f6e-4660-bbe4-df353abdd747 + - d22cf4e6-d317-40d4-9328-0da9c404b591 status: 404 Not Found code: 404 - duration: 114.134208ms - - id: 68 + duration: 58.811152ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3376,8 +2935,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -3387,7 +2946,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' headers: Content-Length: - "143" @@ -3396,9 +2955,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3406,11 +2965,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32833cce-e0ca-4163-a607-f53e40570017 + - e9eada48-62d6-4081-a16a-11c40e75235e status: 404 Not Found code: 404 - duration: 42.360375ms - - id: 69 + duration: 28.441442ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3425,8 +2984,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: GET response: proto: HTTP/2.0 @@ -3434,20 +2993,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":"2025-06-30T15:41:08.736570Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:41:08.736570Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":"2025-10-09T09:03:20.076294Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:20.076294Z","zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3455,11 +3014,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dad4e8c-1d88-48e1-990d-28f985aaadca + - 22acf491-1970-457d-ba6b-4fb001f9202a status: 200 OK code: 200 - duration: 47.327709ms - - id: 70 + duration: 98.787506ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3474,8 +3033,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c method: DELETE response: proto: HTTP/2.0 @@ -3492,9 +3051,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:08 GMT + - Thu, 09 Oct 2025 09:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3502,11 +3061,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87bd35dd-ad5e-4ae6-898c-4f3ea5a13456 + - 971af31e-6dea-44ef-b988-45ea9bc4a11a status: 204 No Content code: 204 - duration: 77.972542ms - - id: 71 + duration: 165.520803ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3521,8 +3080,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa method: GET response: proto: HTTP/2.0 @@ -3532,7 +3091,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","type":"not_found"}' headers: Content-Length: - "143" @@ -3541,9 +3100,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:41:09 GMT + - Thu, 09 Oct 2025 09:03:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3551,7 +3110,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55d7aa67-b10e-453b-a82b-0b9241641286 + - 0983f736-7381-4093-948a-11ca22c5283a status: 404 Not Found code: 404 - duration: 102.391375ms + duration: 50.752514ms diff --git a/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml b/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml index 59e3b2c6f..e9279910c 100644 --- a/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404b::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:45 GMT + - Thu, 09 Oct 2025 09:03:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df8cd45-90d8-4b42-85dd-42fb36e2584f + - 31498c7c-4ae0-4259-bfa9-1f1f285a84de status: 201 Created code: 201 - duration: 1.086963792s + duration: 776.685422ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404b::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:46 GMT + - Thu, 09 Oct 2025 09:03:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f79dbce-716d-4511-b0b9-2c15f1d8bd5f + - 006e7526-ae22-4044-a505-f321ce036823 status: 200 OK code: 200 - duration: 718.637459ms + duration: 131.108967ms - id: 2 request: proto: HTTP/1.1 @@ -118,7 +118,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -138,7 +138,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:46 GMT + - Thu, 09 Oct 2025 09:03:26 GMT Link: - ; rel="next",; rel="last" Server: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7b5f4da-e012-4db5-b86d-91709d56e19b + - bbce5b95-c8fb-49d4-a4c2-01b12f34e38a X-Total-Count: - "75" status: 200 OK code: 200 - duration: 60.887417ms + duration: 67.453096ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +171,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,7 +191,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:46 GMT + - Thu, 09 Oct 2025 09:03:26 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f44f597b-bf5c-4712-91e4-6cd0131cda39 + - 92a73edf-58fb-4e05-a10e-a26d684c48d7 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 55.847792ms + duration: 49.008262ms - id: 4 request: proto: HTTP/1.1 @@ -224,7 +224,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests 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: @@ -233,18 +233,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"arm64","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"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1352" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:46 GMT + - Thu, 09 Oct 2025 09:03:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef380124-85de-47c7-9c92-5ec16792f438 + - 3e8d81d0-7784-4d10-a48f-dbc9cf1801e7 status: 200 OK code: 200 - duration: 81.563292ms + duration: 65.875065ms - id: 5 request: proto: HTTP/1.1 @@ -269,13 +269,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"public_ips":["6e0fde74-7588-46f5-9ca0-c0791b471188"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -284,20 +284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:48 GMT + - Thu, 09 Oct 2025 09:03:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9be81b24-2f58-4631-806a-49408351afb7 + - cbca0606-1ee1-4c2d-b88d-b8b905e635ee status: 201 Created code: 201 - duration: 2.047293459s + duration: 1.866368537s - id: 6 request: proto: HTTP/1.1 @@ -326,8 +326,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -335,18 +335,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:48 GMT + - Thu, 09 Oct 2025 09:03:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f84bb3cf-722a-4c7a-9bf8-0660684b7698 + - b958ebdf-46fe-4f37-a176-3093cb09c67f status: 200 OK code: 200 - duration: 208.041541ms + duration: 153.806416ms - id: 7 request: proto: HTTP/1.1 @@ -375,8 +375,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -384,18 +384,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:48 GMT + - Thu, 09 Oct 2025 09:03:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f526460c-bc91-448c-b984-e0aabc02e7e0 + - af005431-5f62-4e39-9759-4893cab4f1ae status: 200 OK code: 200 - duration: 190.946834ms + duration: 171.371103ms - id: 8 request: proto: HTTP/1.1 @@ -424,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -433,18 +433,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:48 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ffd127-6e10-4946-ad09-961c0f087bf9 + - 55ce6477-9bdd-4d64-a069-8ebbdcdb7c16 status: 200 OK code: 200 - duration: 214.040334ms + duration: 172.417771ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' headers: Content-Length: - "143" @@ -493,7 +493,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5fc4a72-b130-40c7-8c66-9e87ef8f1280 + - cb2d7ebd-7501-4586-8194-a6c4c288ed2f status: 404 Not Found code: 404 - duration: 27.92925ms + duration: 27.975245ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:47.363917Z","id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:47.363917Z","id":"ac2b029f-5a9b-41c4-a4a3-3f6f3d321eb6","product_resource_id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:47.363917Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,7 +542,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b15e72-6813-4252-9ae3-2d3c417e9693 + - 8059f05e-1f2d-4e39-b920-40ea295eac17 status: 200 OK code: 200 - duration: 118.384375ms + duration: 88.034114ms - id: 11 request: proto: HTTP/1.1 @@ -571,8 +571,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data method: GET response: proto: HTTP/2.0 @@ -591,7 +591,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2d02e29-66be-4df0-8d92-dc9a09547516 + - d41dd703-d9bf-47d8-ba55-34ba8f3bb12d status: 200 OK code: 200 - duration: 129.636542ms + duration: 110.214002ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics method: GET response: proto: HTTP/2.0 @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac0b50d5-638e-4612-b0b2-4b661707627f + - 76cd85db-d887-4709-88ee-eb6ab2cb0f54 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 154.1305ms + duration: 111.479987ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -682,18 +682,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 668 + content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "668" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96333727-3bbd-4659-ac3f-604ca466ab12 + - 99736db8-fb98-448f-a979-433d8a439051 status: 200 OK code: 200 - duration: 122.707375ms + duration: 131.449196ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -731,18 +731,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 668 + content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "668" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:49 GMT + - Thu, 09 Oct 2025 09:03:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cae082e3-2237-48b2-8150-ea3a637b0e43 + - 1ceea67d-313a-4c6d-b2c0-a9a116d28c73 status: 200 OK code: 200 - duration: 140.919459ms + duration: 92.438187ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404b::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -791,7 +791,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 340829ce-9f84-49a6-a671-d0e9d7cae108 + - a4bfe119-b3b5-43d5-950b-41c0d3c052b3 status: 200 OK code: 200 - duration: 133.348875ms + duration: 165.309854ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -829,18 +829,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c895adb-2517-4436-878e-d6ef20b524f8 + - 41c5a89b-1443-4abc-9ef7-e3e51df8fb84 status: 200 OK code: 200 - duration: 188.758708ms + duration: 152.809377ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' headers: Content-Length: - "143" @@ -889,7 +889,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52a1b573-1540-4872-8a96-ae6c40231a37 + - 8aae2e80-d741-4ca9-960c-7381566c3b7a status: 404 Not Found code: 404 - duration: 28.199375ms + duration: 33.526551ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:47.363917Z","id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:47.363917Z","id":"ac2b029f-5a9b-41c4-a4a3-3f6f3d321eb6","product_resource_id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:47.363917Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -938,7 +938,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cf74b68-2341-43ee-9005-724a3ad33601 + - 8bbc9104-916e-4ae7-8e94-b2616a0e705b status: 200 OK code: 200 - duration: 116.459709ms + duration: 72.982126ms - id: 19 request: proto: HTTP/1.1 @@ -967,8 +967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data method: GET response: proto: HTTP/2.0 @@ -987,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d309f76-6043-411a-9877-1683d8567bbc + - 37da50c4-e693-4a92-a787-cef1aa4ffb42 status: 200 OK code: 200 - duration: 140.062667ms + duration: 109.968188ms - id: 20 request: proto: HTTP/1.1 @@ -1016,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61737356-1d23-4591-87ed-19e966ed84d7 + - 7b84570b-b271-43b5-baf7-2b779eecc562 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 123.371833ms + duration: 91.94574ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1078,18 +1078,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 668 + content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "668" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Thu, 09 Oct 2025 09:03:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7545f95-579e-4e4b-b77b-b8c65ed236f1 + - 6516e2ba-3106-44d0-97d0-0ee80c860720 status: 200 OK code: 200 - duration: 105.168083ms + duration: 90.334599ms - id: 22 request: proto: HTTP/1.1 @@ -1118,57 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 668 - uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "668" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cb097608-a3b0-41a6-bb3a-c84e7ee19242 - status: 200 OK - code: 200 - duration: 136.923792ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1129,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404b::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -1187,7 +1138,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1197,11 +1148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2e26ec8-6745-4862-b160-24f55d57e7b1 + - 98c51ce6-66aa-4805-a172-8dee900dd2a8 status: 200 OK code: 200 - duration: 177.061416ms - - id: 24 + duration: 288.376831ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1216,8 +1167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -1225,18 +1176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2404 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1246,11 +1197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2bff314-1715-4a5d-af0b-005d47d4c192 + - fe3683a8-de09-406c-a032-87538c746ab7 status: 200 OK code: 200 - duration: 240.332667ms - - id: 25 + duration: 155.327688ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1265,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -1276,7 +1227,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' headers: Content-Length: - "143" @@ -1285,7 +1236,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1295,11 +1246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39e37219-a5e7-4f44-8358-0f217cbc5464 + - e23594f4-f735-4492-a931-118129e3b3cd status: 404 Not Found code: 404 - duration: 175.742833ms - - id: 26 + duration: 26.446491ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1314,8 +1265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -1325,7 +1276,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:47.363917Z","id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:47.363917Z","id":"ac2b029f-5a9b-41c4-a4a3-3f6f3d321eb6","product_resource_id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:47.363917Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1334,7 +1285,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1344,11 +1295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74ab950e-faac-4149-8386-73a2505048b1 + - 99347a64-4d7e-40f4-9a73-f76661ca4e9c status: 200 OK code: 200 - duration: 137.704167ms - - id: 27 + duration: 88.716737ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1363,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data method: GET response: proto: HTTP/2.0 @@ -1383,7 +1334,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1393,11 +1344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4da84f96-64c0-425a-8245-a29f731b7945 + - 407850ac-5829-4c3d-a57c-01bf52c5598c status: 200 OK code: 200 - duration: 133.244708ms - - id: 28 + duration: 94.337833ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics method: GET response: proto: HTTP/2.0 @@ -1432,9 +1383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1444,62 +1395,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86f8a62-e58b-4735-99ce-cd5a2b5d8a84 + - 6d5cb5a7-5c41-45dd-8816-376b0b5c6867 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 152.157084ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 668 - uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "668" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e37e672c-56c4-4f47-8d3d-db262d2a390b - status: 200 OK - code: 200 - duration: 113.054792ms - - id: 30 + duration: 96.542549ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1514,8 +1416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1523,18 +1425,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 668 + content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "668" + - "670" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1544,11 +1446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9caf3c6b-d8cc-46de-b4e5-faaad0172fce + - 886f547a-dc7b-4bfe-9bff-217d8ad3dc29 status: 200 OK code: 200 - duration: 112.532208ms - - id: 31 + duration: 88.662877ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1563,8 +1465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/80af0f2c-a2f2-4680-b341-1395e523a599 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 method: GET response: proto: HTTP/2.0 @@ -1572,18 +1474,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 641 + content_length: 643 uncompressed: false - body: '{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:48.149439Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}' headers: Content-Length: - - "641" + - "643" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1593,29 +1495,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d45d2e70-99a9-459b-a7d5-5ec3d7c892fd + - 26eff52c-7694-4a7e-9541-dce4133a559a status: 200 OK code: 200 - duration: 95.802417ms - - id: 32 + duration: 93.228487ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 102 + content_length: 201 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"reverses":[{"hostname":"tf-reverse-ipam.scaleway-terraform.com","address":"2001:bc8:710:404b::2a"}]}' + body: '{"changes":[{"add":{"records":[{"data":"2001:bc8:710:4201::2a","name":"","priority":1,"ttl":3600,"type":"AAAA","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/80af0f2c-a2f2-4680-b341-1395e523a599 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records method: PATCH response: proto: HTTP/2.0 @@ -1623,18 +1525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 732 + content_length: 159 uncompressed: false - body: '{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}]}' headers: Content-Length: - - "732" + - "159" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1644,48 +1546,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbfb954b-60d7-4d89-963c-091923ab10ba + - 8147f3c3-6b18-4e7e-afd5-3165028037d2 status: 200 OK code: 200 - duration: 412.640625ms - - id: 33 + duration: 154.659955ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 201 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"2001:bc8:710:404b::2a","name":"","priority":1,"ttl":3600,"type":"AAAA","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&type=AAAA + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 159 + content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:404b::2a","id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b","name":"","priority":1,"ttl":3600,"type":"AAAA"}]}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - - "159" + - "176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1695,46 +1595,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2bf72cc-4c17-4138-9b28-af4cc4afb068 + - b9024393-a892-4a2e-a9f9-a9c82e793762 status: 200 OK code: 200 - duration: 619.910291ms - - id: 34 + duration: 85.691727ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"reverses":[{"hostname":"tf-reverse-ipam.scaleway-terraform.com","address":"2001:bc8:710:4201::2a"}]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/80af0f2c-a2f2-4680-b341-1395e523a599 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 732 + content_length: 734 uncompressed: false - body: '{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' headers: Content-Length: - - "732" + - "734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1744,11 +1646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8d41dd1-87c4-423f-b4b9-45cca0c3afc2 + - 559b5fbc-0a71-4549-96d9-fd2fcdcee97a status: 200 OK code: 200 - duration: 112.219916ms - - id: 35 + duration: 198.944005ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1763,8 +1665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&type=AAAA + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 method: GET response: proto: HTTP/2.0 @@ -1772,18 +1674,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 176 + content_length: 734 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:404b::2a","id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' headers: Content-Length: - - "176" + - "734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1793,11 +1695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34609a90-3317-463e-a4b1-c880b5d869d4 + - e1ca69aa-9460-4bc8-8a29-f3f3c02f3f54 status: 200 OK code: 200 - duration: 144.546333ms - - id: 36 + duration: 29.339684ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1812,7 +1714,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=AAAA method: GET response: @@ -1823,7 +1725,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:404b::2a","id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -1832,7 +1734,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1842,11 +1744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59d6fa1d-4f4e-4440-a549-b256ed9753cc + - 5b4d2f3b-6a20-4c8f-a98e-2cc21adbf4d5 status: 200 OK code: 200 - duration: 127.697375ms - - id: 37 + duration: 102.077906ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1861,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=05a5d4f4-6e13-4a42-9d40-720f5a3b389b&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=2daec900-45b9-455d-b9c4-176307345a83&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1872,7 +1774,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:404b::2a","id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -1881,7 +1783,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1891,11 +1793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c42d36-deac-48da-ac5e-3428dd5dd615 + - 32ac8a36-58f1-4298-b023-0ac455ed824b status: 200 OK code: 200 - duration: 106.719667ms - - id: 38 + duration: 115.258752ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1910,7 +1812,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -1921,7 +1823,7 @@ interactions: trailer: {} content_length: 369 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:53Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-09T09:03:31Z"}],"total_count":1}' headers: Content-Length: - "369" @@ -1930,7 +1832,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1940,11 +1842,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbd2bf46-57ef-4096-8f6d-9254b5ce9b50 + - 31f482da-4bf8-4cf9-bef1-b57ab0648875 status: 200 OK code: 200 - duration: 119.001709ms - - id: 39 + duration: 122.260655ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1959,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1968,18 +1870,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 759 + content_length: 761 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "759" + - "761" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1989,11 +1891,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb1a465f-2587-4c73-a40f-fac14ab62ea3 + - 917350c3-b038-47b9-8b10-97df4cf27188 status: 200 OK code: 200 - duration: 271.956667ms - - id: 40 + duration: 99.892026ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2008,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -2019,7 +1921,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404b::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -2028,7 +1930,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Thu, 09 Oct 2025 09:03:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2038,11 +1940,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f3c60ca-5986-4fac-a08a-f1bb2f82046e + - dbea6288-cec2-43e6-86f5-60248faf6e76 status: 200 OK code: 200 - duration: 219.697584ms - - id: 41 + duration: 143.52641ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2057,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -2066,18 +1968,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2087,11 +1989,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ffbcc70-6f1d-4731-a882-29aa532d4387 + - 85ad91aa-75f0-4225-945d-91952e2bc306 status: 200 OK code: 200 - duration: 182.984083ms - - id: 42 + duration: 164.793759ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2106,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -2117,7 +2019,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' headers: Content-Length: - "143" @@ -2126,7 +2028,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2136,11 +2038,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12bd37ad-5665-48fa-a29a-d17799cc1fd4 + - 65b5f31b-5bcb-49a1-8a97-026a9502d629 status: 404 Not Found code: 404 - duration: 30.373583ms - - id: 43 + duration: 52.265786ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2155,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -2166,7 +2068,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:47.363917Z","id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:47.363917Z","id":"ac2b029f-5a9b-41c4-a4a3-3f6f3d321eb6","product_resource_id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:47.363917Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2175,7 +2077,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2185,11 +2087,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72b624aa-89d2-4088-8ad9-37d1e600ab3f + - 184b2cb6-da2a-4c02-aea2-bd32e66db350 status: 200 OK code: 200 - duration: 97.006959ms - - id: 44 + duration: 88.461669ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2204,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data method: GET response: proto: HTTP/2.0 @@ -2224,7 +2126,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2234,11 +2136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93122ebe-803b-4565-883c-cb1791789f08 + - 8b74f93a-dd7b-4950-8e1f-d8183a1ceb0f status: 200 OK code: 200 - duration: 122.849459ms - - id: 45 + duration: 93.132041ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2253,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics method: GET response: proto: HTTP/2.0 @@ -2273,9 +2175,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2285,13 +2187,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d11471f-da1a-4c46-bdd4-d3846f2d69e1 + - 21ce9489-063c-4459-b00a-11347ca40b29 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 126.336458ms - - id: 46 + duration: 112.945596ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2306,8 +2208,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -2315,18 +2217,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 759 + content_length: 761 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "759" + - "761" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2336,11 +2238,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acb21db4-36d9-4104-a3a6-1d3fa922a2a8 + - 4a931dd9-74de-4d2c-8429-1bdab63a9394 status: 200 OK code: 200 - duration: 126.12225ms - - id: 47 + duration: 106.044151ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2355,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/80af0f2c-a2f2-4680-b341-1395e523a599 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 method: GET response: proto: HTTP/2.0 @@ -2364,18 +2266,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 732 + content_length: 734 uncompressed: false - body: '{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' headers: Content-Length: - - "732" + - "734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2385,11 +2287,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d93f437-7493-4a74-95c4-b2232d29a51d + - 9b59db1c-5aed-4a95-9f22-452f8e7b265e status: 200 OK code: 200 - duration: 117.340125ms - - id: 48 + duration: 95.226343ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2404,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=05a5d4f4-6e13-4a42-9d40-720f5a3b389b&name=&order_by=name_asc&page=1&type=AAAA + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=2daec900-45b9-455d-b9c4-176307345a83&name=&order_by=name_asc&page=1&type=AAAA method: GET response: proto: HTTP/2.0 @@ -2415,7 +2317,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:404b::2a","id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -2424,7 +2326,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2434,11 +2336,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 712403b5-0ea1-4597-a3d9-afc71400db02 + - 7e306645-7b57-40ce-b8cc-03172e70d83d status: 200 OK code: 200 - duration: 130.010083ms - - id: 49 + duration: 99.847845ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2453,7 +2355,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -2464,7 +2366,7 @@ interactions: trailer: {} content_length: 369 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:53Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-09T09:03:31Z"}],"total_count":1}' headers: Content-Length: - "369" @@ -2473,56 +2375,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 18325c6d-66fc-4502-8de8-b747e721d364 - status: 200 OK - code: 200 - duration: 138.08925ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=e55f64c1-ef73-422f-9697-8f2057bf9ddb&resource_type=instance_server - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 759 - uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","hostname":"ad9-feb5-ff-dc00-404b-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404b-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404b::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:53.077712Z","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "759" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2532,11 +2385,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c051beff-063b-43bd-8478-01fa41acd94d + - 8525bde4-bb41-4efe-b126-7089276bb8a3 status: 200 OK code: 200 - duration: 129.835875ms - - id: 51 + duration: 90.652719ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2553,8 +2406,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/80af0f2c-a2f2-4680-b341-1395e523a599 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 method: PATCH response: proto: HTTP/2.0 @@ -2564,7 +2417,7 @@ interactions: trailer: {} content_length: 450 uncompressed: false - body: '{"address":"2001:bc8:710:404b::/64","created_at":"2025-06-10T15:28:45.025893Z","id":"80af0f2c-a2f2-4680-b341-1395e523a599","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","mac_address":null,"name":null,"type":"instance_server"},"reverses":[],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-06-10T15:28:55.964171Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:34.104037Z","zone":"fr-par-1"}' headers: Content-Length: - "450" @@ -2573,7 +2426,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Thu, 09 Oct 2025 09:03:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2583,11 +2436,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ec1cdb1-3d69-4234-a314-acbf19232280 + - f4a1f79c-f6db-4439-b3e1-eb15b5d70692 status: 200 OK code: 200 - duration: 159.110875ms - - id: 52 + duration: 110.069966ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2598,13 +2451,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"05a5d4f4-6e13-4a42-9d40-720f5a3b389b"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"2daec900-45b9-455d-b9c4-176307345a83"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records method: PATCH response: @@ -2624,7 +2477,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Thu, 09 Oct 2025 09:03:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2634,11 +2487,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4318ae52-dcb7-44c8-a71f-a69694077b3d + - cdd9f1ea-aca0-4e07-93d7-99e024e517ac status: 200 OK code: 200 - duration: 303.173625ms - - id: 53 + duration: 123.362524ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2653,8 +2506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -2662,18 +2515,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 313 + content_length: 2358 uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"a514e857-90c0-4474-af83-4f5419e1dde7","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"82f9802e-bd02-4325-8d08-15fe1514b8a3","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "313" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Thu, 09 Oct 2025 09:03:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2683,11 +2536,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e53674a-af2b-4bd8-94ff-e0f14a958617 + - 3bacdfa6-e514-487f-96d1-8bab5100bb43 status: 200 OK code: 200 - duration: 116.266458ms - - id: 54 + duration: 152.052042ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2702,8 +2555,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -2711,18 +2564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 705 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:56Z"}],"total_count":1}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' headers: Content-Length: - - "369" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Thu, 09 Oct 2025 09:03:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2732,95 +2585,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09e1c8c6-c0be-4f78-8e3e-25732753cb3f + - 5a756508-6926-4f48-a32a-741e729dd79b status: 200 OK code: 200 - duration: 110.616458ms - - id: 55 + duration: 100.167635ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 369 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:56Z"}],"total_count":1}' - headers: - Content-Length: - - "369" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 10 Jun 2025 15:29:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 537d8abe-f72a-4e49-aded-a2f2ec163b8b - status: 200 OK - code: 200 - duration: 143.022042ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 357 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:56Z"}],"total_count":1}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action","href_result":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24","id":"a08d6341-5252-4916-a7ff-9232db5882ac","progress":0,"started_at":"2025-10-09T09:03:34.610864+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "369" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Thu, 09 Oct 2025 09:03:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a08d6341-5252-4916-a7ff-9232db5882ac Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2830,11 +2638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66664dd0-7f40-4cbe-9a8f-d86c9c072e9b - status: 200 OK - code: 200 - duration: 126.950792ms - - id: 57 + - 0cedd079-a456-4c50-a6f1-81aa1c90f44f + status: 202 Accepted + code: 202 + duration: 241.712574ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2849,8 +2657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -2858,18 +2666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 2380 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:28:56Z"}],"total_count":1}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:34.415477+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "369" + - "2380" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Thu, 09 Oct 2025 09:03:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2879,11 +2687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaa807b7-457b-4ea9-8fa4-e98852135262 + - 6768a276-839c-48c8-8c58-0b46ee28f93b status: 200 OK code: 200 - duration: 109.619541ms - - id: 58 + duration: 155.953566ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2898,8 +2706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-ipam.scaleway-terraform.com&domain=&order_by=domain_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -2907,18 +2715,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 368 + content_length: 2514 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-ipam","updated_at":"2025-06-10T15:29:14Z"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"301","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:36.633502+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "368" + - "2514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Thu, 09 Oct 2025 09:03:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2928,95 +2736,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b98bca4-73a2-4d30-90c7-f113f8e13db3 + - 8125116f-ac57-4575-a8d9-031ac2149874 status: 200 OK code: 200 - duration: 156.764166ms - - id: 59 + duration: 401.94299ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2 - uncompressed: false - body: '{}' - headers: - Content-Length: - - "2" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Tue, 10 Jun 2025 15:29:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7857c59f-5d83-4c43-a85b-504220549463 - status: 200 OK - code: 200 - duration: 190.759584ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action","href_result":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24","id":"4e203a71-6df9-40ba-92e8-b49bcd691a05","progress":0,"started_at":"2025-10-09T09:03:40.477898+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Thu, 09 Oct 2025 09:03:40 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4e203a71-6df9-40ba-92e8-b49bcd691a05 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3026,11 +2789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7b7c1a-9861-4ada-bd4a-623e5d54b250 - status: 200 OK - code: 200 - duration: 190.642041ms - - id: 61 + - 0050f157-95ac-4201-bd1f-3166b8f6b124 + status: 202 Accepted + code: 202 + duration: 303.912459ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3045,8 +2808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -3054,18 +2817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2332 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-06-10T15:28:47.076131+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:d9","maintenances":[],"modification_date":"2025-06-10T15:28:47.076131+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404b:dc00:ff:feb5:ad9","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:feb5:ada","id":"6e0fde74-7588-46f5-9ca0-c0791b471188","ipam_id":"80af0f2c-a2f2-4680-b341-1395e523a599","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"301","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:40.223233+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2332" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Thu, 09 Oct 2025 09:03:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3075,58 +2838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce922045-5213-45fd-848a-10508a36b173 + - 1d9f7298-b8ac-42e7-bcc8-57c1dd1ec565 status: 200 OK code: 200 - duration: 223.339791ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b7c37ead-b464-4f0d-8c15-d4e4e91b1cd9 - status: 204 No Content - code: 204 - duration: 801.694542ms - - id: 63 + duration: 237.796168ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3141,8 +2857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e55f64c1-ef73-422f-9697-8f2057bf9ddb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 method: GET response: proto: HTTP/2.0 @@ -3152,7 +2868,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e55f64c1-ef73-422f-9697-8f2057bf9ddb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","type":"not_found"}' headers: Content-Length: - "143" @@ -3161,7 +2877,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Thu, 09 Oct 2025 09:03:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3171,11 +2887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5330f3f5-c9e2-42fc-b015-f079e02da492 + - 56d95523-2e02-49a7-a747-28d360b20b75 status: 404 Not Found code: 404 - duration: 83.975667ms - - id: 64 + duration: 78.193347ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3190,8 +2906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -3201,7 +2917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' headers: Content-Length: - "143" @@ -3210,7 +2926,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Thu, 09 Oct 2025 09:03:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3220,11 +2936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5adc003-67e3-4190-b407-89d984bf96cd + - a6579c1d-43b4-49dc-824e-cad923025902 status: 404 Not Found code: 404 - duration: 30.202959ms - - id: 65 + duration: 131.769859ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3239,8 +2955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: GET response: proto: HTTP/2.0 @@ -3250,7 +2966,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:47.363917Z","id":"eadf1e1a-5662-4d8e-abe8-ce183c8afad2","last_detached_at":"2025-06-10T15:29:18.355502Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:29:18.355502Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":"2025-10-09T09:03:42.355594Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:42.355594Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -3259,7 +2975,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3269,11 +2985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c34596-1266-4009-8f1b-427719e10526 + - 5a0b9a90-0fb8-4ad5-b7bd-9c43b5d561a3 status: 200 OK code: 200 - duration: 121.494375ms - - id: 66 + duration: 114.814821ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3288,8 +3004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eadf1e1a-5662-4d8e-abe8-ce183c8afad2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 method: DELETE response: proto: HTTP/2.0 @@ -3306,7 +3022,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3316,11 +3032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e95de5d-3f01-4a03-93ca-bb4b4081c0d7 + - abd804aa-65db-4fff-9b2e-81a9dbc378ef status: 204 No Content code: 204 - duration: 207.430333ms - - id: 67 + duration: 199.346474ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3335,8 +3051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: DELETE response: proto: HTTP/2.0 @@ -3353,7 +3069,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3363,11 +3079,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55311dc2-2623-4e37-9406-07b94215942a + - 5b1afb5e-eac7-4981-a8e6-92148481a54c status: 204 No Content code: 204 - duration: 529.311292ms - - id: 68 + duration: 403.374024ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3382,8 +3098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6e0fde74-7588-46f5-9ca0-c0791b471188 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 method: GET response: proto: HTTP/2.0 @@ -3391,18 +3107,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:19 GMT + - Thu, 09 Oct 2025 09:03:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3412,7 +3128,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8c3f4b2-6356-41ce-92bc-b92f904e9f76 - status: 403 Forbidden - code: 403 - duration: 123.346ms + - 1c9703fd-06ff-4a41-aecb-a50d43d1ac66 + status: 404 Not Found + code: 404 + duration: 57.890408ms diff --git a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml index e819433e4..44e368f72 100644 --- a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:15 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f9f8f75-0507-42b3-af40-1b50555c4b0f + - 6b498968-9699-4a09-9339-61b444a763c9 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 391.058292ms + duration: 141.278668ms - id: 1 request: proto: HTTP/1.1 @@ -65,13 +65,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: '{"name":"tf-vpc-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 408 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":false,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.429130Z"}' + body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' headers: Content-Length: - - "398" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:15 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,50 +101,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b36547ad-761c-4205-9817-c2e05530840b + - 20dcb496-3f29-43f7-93f9-ff3275775873 status: 200 OK code: 200 - duration: 415.735625ms + duration: 160.504263ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5/enable-custom-routes-propagation - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 408 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.487392Z"}' + body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' headers: Content-Length: - - "397" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:15 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62718db1-b6ff-4862-bd17-4966729be050 + - 3183d06a-b4ce-44c0-8d0a-7dddca2a991c status: 200 OK code: 200 - duration: 42.953625ms + duration: 30.071733ms - id: 3 request: proto: HTTP/1.1 @@ -171,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -191,11 +189,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:15 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54fa1672-523c-4c65-b460-cc4f1392f4f9 + - 6f29b23a-5f89-4593-8f5d-08fdb37d4e00 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 54.632917ms + duration: 49.266681ms - id: 4 request: proto: HTTP/1.1 @@ -224,56 +222,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 397 - uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.487392Z"}' - headers: - Content-Length: - - "397" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:46:15 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e01fcf3-bc8e-4d6f-9b6f-172c2dba6a69 - status: 200 OK - code: 200 - duration: 35.232375ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -282,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 1002 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","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"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "937" + - "1002" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:15 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,11 +252,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d6e6efc-7920-4c4b-a9cf-fbf43f79a261 + - 434f8e5c-5947-4775-bd6f-58304c69158b status: 200 OK code: 200 - duration: 94.167666ms - - id: 6 + duration: 51.898699ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -318,13 +267,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -333,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 1079 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "1055" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,11 +303,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c255153-0053-4025-bebb-dda70237d73c + - eab52077-bb2e-468a-a929-0001806ba9f1 status: 200 OK code: 200 - duration: 600.324041ms - - id: 7 + duration: 530.37236ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -373,8 +322,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 method: GET response: proto: HTTP/2.0 @@ -382,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 1079 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "1055" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,11 +352,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0cbfb02-263c-4d94-a2dd-ae3cf2093f1e + - 4fbca11e-2634-4ff8-b56a-2f7755bcef99 status: 200 OK code: 200 - duration: 24.555917ms - - id: 8 + duration: 95.206433ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -418,13 +367,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -433,22 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "1710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -456,11 +405,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c650e5c-90f8-4906-9be9-a4670c02c369 + - d9db9df6-a5f6-4442-829a-61b3b55485f3 status: 201 Created code: 201 - duration: 913.053ms - - id: 9 + duration: 1.808196261s + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -475,8 +424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -484,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "1710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,11 +454,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfb60e05-e139-400f-a042-021ee8c343a1 + - 1368cb88-96f0-4336-9c8f-943f298e70b9 status: 200 OK code: 200 - duration: 142.348667ms - - id: 10 + duration: 228.705156ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -524,8 +473,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -533,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "1710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,11 +503,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 957f43c9-0903-4d92-8ef5-f5043e4ebc91 + - 78fb0b19-2c83-4e3a-9e54-20b33d23413b status: 200 OK code: 200 - duration: 176.926334ms - - id: 11 + duration: 230.529141ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -573,8 +522,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -582,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:16 GMT + - Thu, 09 Oct 2025 09:03:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,11 +552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 881a0181-673d-45fa-8cca-a0069ad91225 + - 43d49924-5bd2-468b-803e-a0b70ce5feb2 status: 200 OK code: 200 - duration: 50.88325ms - - id: 12 + duration: 84.383642ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -624,8 +573,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action method: POST response: proto: HTTP/2.0 @@ -635,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action","href_result":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","id":"e0930aac-5d47-4297-82b6-2b16fb7a2715","progress":0,"started_at":"2025-06-30T15:46:17.083123+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action","href_result":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c","id":"877e9f3c-59fd-4165-af6a-7188a53f3cf5","progress":0,"started_at":"2025-10-09T09:03:57.127944+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -644,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:17 GMT + - Thu, 09 Oct 2025 09:03:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e0930aac-5d47-4297-82b6-2b16fb7a2715 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/877e9f3c-59fd-4165-af6a-7188a53f3cf5 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,11 +605,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1a8fbf7-1cc4-4913-bb13-8c1e5da678e5 + - 2f51e698-6c7d-405a-9dcd-a3803d1c537c status: 202 Accepted code: 202 - duration: 236.6155ms - - id: 13 + duration: 667.644577ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -675,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -684,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1732 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:16.923677+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:56.551253+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:17 GMT + - Thu, 09 Oct 2025 09:03:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,11 +654,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ac0c337-a84e-4dde-8078-82b893df696b + - 663a2dba-a307-4d40-8b7b-7399a421100d status: 200 OK code: 200 - duration: 860.952958ms - - id: 14 + duration: 277.851798ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -724,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -733,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1866 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "1866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,11 +703,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43c7043e-140c-4db2-8f88-52e8fbc18ff0 + - 6adbde89-b05d-4f69-a2f3-a4b58587cc3d status: 200 OK code: 200 - duration: 140.769708ms - - id: 15 + duration: 278.029335ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -773,8 +722,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -782,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1866 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "1866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,11 +752,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a976578a-6457-4d3c-916a-bef9f1289f77 + - 4abfda09-cec2-4f9c-8d2a-84d9b95c5990 status: 200 OK code: 200 - duration: 150.291792ms - - id: 16 + duration: 167.898828ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -822,8 +771,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -833,7 +782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' headers: Content-Length: - "143" @@ -842,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,11 +801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba59e6e8-8b9e-4b3d-986d-8eb1889f18c2 + - d8bb5e7c-0279-4d39-bc2e-6023526e9d08 status: 404 Not Found code: 404 - duration: 35.091208ms - - id: 17 + duration: 31.544404ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -871,8 +820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -880,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,11 +850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80291019-7c2c-417e-bce7-c09a22d01d3a + - fdf53997-64f6-4f14-a261-93d15e84f76d status: 200 OK code: 200 - duration: 59.29375ms - - id: 18 + duration: 99.807476ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -920,8 +869,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data method: GET response: proto: HTTP/2.0 @@ -940,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,11 +899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e564aae6-476e-4df4-a233-0700b8bc1430 + - b5665d18-f406-4ecc-986e-f6b8d8737a32 status: 200 OK code: 200 - duration: 53.529208ms - - id: 19 + duration: 101.775454ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -969,8 +918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics method: GET response: proto: HTTP/2.0 @@ -989,11 +938,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,13 +950,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25801f25-97b6-4b6a-bfcb-a6c2a621f5b6 + - 8c3625b5-bfca-483a-99aa-4e564b3984f0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 79.475375ms - - id: 20 + duration: 131.428553ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1022,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -1031,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1866 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "1866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:23 GMT + - Thu, 09 Oct 2025 09:04:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,11 +1001,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc49ed2-7689-4b59-9c7c-b4156fc67369 + - c4a308dd-e8ce-49f1-8fc6-0f0962bfaa87 status: 200 OK code: 200 - duration: 155.698875ms - - id: 21 + duration: 179.885293ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1067,14 +1016,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93"}' + body: '{"private_network_id":"87093c60-561c-41be-8caf-50b4ae177439"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics method: POST response: proto: HTTP/2.0 @@ -1084,7 +1033,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1093,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:28 GMT + - Thu, 09 Oct 2025 09:04:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,11 +1052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e50d62ce-d8c1-407e-8e3b-6440cd99a464 + - 5e5fbf7c-3aca-430e-9dd4-4b615257ce72 status: 201 Created code: 201 - duration: 4.872704166s - - id: 22 + duration: 611.863756ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1122,8 +1071,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1142,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:28 GMT + - Thu, 09 Oct 2025 09:04:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,11 +1101,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27acb1fb-a7d8-446b-837a-bbe2879d07bf + - a4d5fced-6b34-43b2-86c7-000bad8a2dd6 status: 200 OK code: 200 - duration: 64.857584ms - - id: 23 + duration: 115.711284ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1171,8 +1120,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1191,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:33 GMT + - Thu, 09 Oct 2025 09:04:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,11 +1150,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da38054c-6047-42f3-b9fa-6e39163bf10a + - 9ae43303-0541-4fcb-b44f-79c08df0a858 status: 200 OK code: 200 - duration: 71.5785ms - - id: 24 + duration: 117.428736ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1220,8 +1169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1240,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:38 GMT + - Thu, 09 Oct 2025 09:04:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,11 +1199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e20a3ee2-e2c6-4c72-806c-aebf940f8306 + - 274ed960-e6a9-4bc3-8b57-598a7f159cc9 status: 200 OK code: 200 - duration: 79.16475ms - - id: 25 + duration: 110.522358ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1269,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1280,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1289,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:43 GMT + - Thu, 09 Oct 2025 09:04:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,11 +1248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df17eea4-9d03-48e2-b3ec-288163502db0 + - 75f0f8d0-839f-40a9-98b4-35f64be0b384 status: 200 OK code: 200 - duration: 70.263958ms - - id: 26 + duration: 105.026773ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1318,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1338,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:48 GMT + - Thu, 09 Oct 2025 09:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,11 +1297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec5bef4a-bc03-44e9-abb9-d8c51df93f8c + - dcefeff7-039d-42bd-b248-f527ad9723ae status: 200 OK code: 200 - duration: 56.716ms - - id: 27 + duration: 101.772183ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1367,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1387,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:53 GMT + - Thu, 09 Oct 2025 09:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,11 +1346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0836e59a-ff57-41dd-b6bf-93f7b65b63df + - 30f7a31d-6117-4927-a3df-5f6dce99ffbe status: 200 OK code: 200 - duration: 87.261125ms - - id: 28 + duration: 137.783404ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1416,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1376,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1436,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:46:59 GMT + - Thu, 09 Oct 2025 09:04:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,11 +1395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c3de61d-81d4-40a3-bec7-88c6ece58565 + - f919533c-ef06-417f-a20c-8fe05bca571d status: 200 OK code: 200 - duration: 79.183042ms - - id: 29 + duration: 119.053842ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1465,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1476,7 +1425,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1485,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,11 +1444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 508528ac-68dc-4554-a15f-f4b9fd2e8be1 + - 276e8a73-8ebd-4916-bb86-852fe9fe220b status: 200 OK code: 200 - duration: 65.623125ms - - id: 30 + duration: 124.554588ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1514,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -1525,7 +1474,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1534,9 +1483,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,11 +1493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a35236d-718b-430d-ab6f-7042a7ad7bd1 + - a1be1cc4-13e6-422b-8a46-1e9299da2960 status: 200 OK code: 200 - duration: 92.110083ms - - id: 31 + duration: 106.147464ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1563,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -1572,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 423d79d4-b8c9-454a-a57c-197a21bc3cf6 + - 2358e39c-5aca-4aa3-8f63-70cee2988def status: 200 OK code: 200 - duration: 149.857459ms - - id: 32 + duration: 151.23566ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1612,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1621,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e96ed21-5e0f-45ec-a5ac-11085a0036c0 + - 0df70077-18cb-4ab9-bc56-617e3bccb235 status: 200 OK code: 200 - duration: 56.125916ms - - id: 33 + duration: 62.568882ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1657,13 +1606,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","destination":"10.0.0.0/24","nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c"}' + body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","destination":"10.0.0.0/24","nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes method: POST response: @@ -1672,20 +1621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "392" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,11 +1642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0870e70-02d9-4782-84d8-863c5cb22c0d + - b02474be-90a9-4e46-9cc3-c73706474f7c status: 200 OK code: 200 - duration: 113.018292ms - - id: 34 + duration: 96.263033ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1712,8 +1661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -1721,20 +1670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "392" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95464927-a09c-4470-983e-958a95fe8497 + - 6114cfcd-c67a-4f5e-98e2-2aa001829c52 status: 200 OK code: 200 - duration: 37.52575ms - - id: 35 + duration: 32.777465ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1761,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -1770,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "392" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12fde8c1-e8b0-493f-b16b-cacbfdd1077b + - a3dd0aa3-2bce-4145-bb37-8b4f195a7ed0 status: 200 OK code: 200 - duration: 36.1435ms - - id: 36 + duration: 32.684224ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1810,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d method: GET response: proto: HTTP/2.0 @@ -1819,20 +1768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 408 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.487392Z"}' + body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' headers: Content-Length: - - "397" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:04 GMT + - Thu, 09 Oct 2025 09:04:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,11 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c88af687-7d54-49d7-b3aa-d83a45e72f62 + - 47e54f98-c164-40a2-9a8d-6289830f90c1 status: 200 OK code: 200 - duration: 82.518417ms - - id: 37 + duration: 83.449296ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1859,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 method: GET response: proto: HTTP/2.0 @@ -1868,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 1079 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "1055" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4d8da6b-44d3-40db-ad70-8ee50b1e58d2 + - a6e066f0-4a86-4e3a-b37d-b02a4d88a141 status: 200 OK code: 200 - duration: 31.045333ms - - id: 38 + duration: 36.85396ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1908,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -1917,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e97cfaa4-37e0-4e43-96e7-d36ffaba66e6 + - e2f7f8da-5644-4a0c-b39c-8e02fc7f7b75 status: 200 OK code: 200 - duration: 204.011292ms - - id: 39 + duration: 147.194491ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1957,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -1968,7 +1917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' headers: Content-Length: - "143" @@ -1977,9 +1926,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e525f9d-9144-43af-ae4e-bfc39d967e1f + - e866c4e4-e75e-4079-93d5-6ca3ab830fe5 status: 404 Not Found code: 404 - duration: 39.498459ms - - id: 40 + duration: 27.514018ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2006,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -2015,20 +1964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,11 +1985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40de719c-9bd3-4f50-9d81-a29dc1c87a46 + - 1796754e-f6ec-4932-9b5b-446dfdd277b5 status: 200 OK code: 200 - duration: 40.340333ms - - id: 41 + duration: 93.429496ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2055,8 +2004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data method: GET response: proto: HTTP/2.0 @@ -2075,9 +2024,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,11 +2034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e75474e4-614b-49f7-bca0-4f0b8e651dad + - 76703376-e4e0-49d9-8441-13385760647a status: 200 OK code: 200 - duration: 69.758459ms - - id: 42 + duration: 172.210246ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2104,8 +2053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics method: GET response: proto: HTTP/2.0 @@ -2115,7 +2064,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2124,11 +2073,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,13 +2085,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a119d5e-9db3-4595-96c7-afb45abc5f48 + - 6384038d-f82c-4213-b33f-f3066cc3fd9a X-Total-Count: - "1" status: 200 OK code: 200 - duration: 56.013792ms - - id: 43 + duration: 125.912729ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2157,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2166,20 +2115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,11 +2136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb883906-d434-47d6-815d-250cf2b9a60d + - b0638150-8405-418a-a298-03de71685ebf status: 200 OK code: 200 - duration: 32.047167ms - - id: 44 + duration: 96.867056ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2206,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -2217,7 +2166,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2226,9 +2175,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,11 +2185,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4d9efae-5946-4b00-9834-80fe4724852e + - 6d11856e-3d06-4005-8a01-42ba397ee813 status: 200 OK code: 200 - duration: 67.705708ms - - id: 45 + duration: 113.014649ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2255,8 +2204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -2264,20 +2213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,11 +2234,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88b9638b-f072-4935-8421-e8d6a58ebd6d + - 47393931-c6ce-44b9-832e-f2bd1dad467f status: 200 OK code: 200 - duration: 155.270542ms - - id: 46 + duration: 181.021744ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2304,8 +2253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2313,20 +2262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,11 +2283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 458f6cf5-6e8d-40b3-8b58-7621642d4953 + - 93c21b2c-ec00-44ee-b66a-d94c7a414d14 status: 200 OK code: 200 - duration: 87.707666ms - - id: 47 + duration: 43.341543ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2353,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -2362,20 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "392" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,11 +2332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c88727a-fd35-4876-ad50-f69de85dd72e + - 122facd4-77cc-4f00-90f5-c8850e2a97c3 status: 200 OK code: 200 - duration: 26.760917ms - - id: 48 + duration: 25.333179ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2402,8 +2351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d method: GET response: proto: HTTP/2.0 @@ -2411,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 408 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.487392Z"}' + body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' headers: Content-Length: - - "397" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:05 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,11 +2381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88f4159d-c070-4521-acfa-d0b0c1a82527 + - 12f48292-dd67-47be-9c51-359a3b782431 status: 200 OK code: 200 - duration: 76.507583ms - - id: 49 + duration: 23.656094ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2451,8 +2400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 method: GET response: proto: HTTP/2.0 @@ -2460,20 +2409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 1079 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "1055" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,11 +2430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8832dbf6-ff34-47cf-a736-bf7e0909f63f + - e6a19bda-d0ca-4f82-8bf0-f6781a03a62f status: 200 OK code: 200 - duration: 35.138125ms - - id: 50 + duration: 31.836542ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2500,8 +2449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -2509,20 +2458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "392" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,11 +2479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 996fe385-c447-40d6-93e9-b77cb6861e49 + - bf55029a-146d-4ae9-9a1b-4f0f12a9c06e status: 200 OK code: 200 - duration: 28.009791ms - - id: 51 + duration: 17.59342ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2549,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -2558,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,11 +2528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab983778-422a-409c-91f4-fd6dd7cee299 + - 632f55ca-abf8-4adf-9739-665581b1fd4e status: 200 OK code: 200 - duration: 152.407833ms - - id: 52 + duration: 151.677149ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2598,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -2609,7 +2558,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' headers: Content-Length: - "143" @@ -2618,9 +2567,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,11 +2577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420b0a4f-3eaf-4744-a026-a5eeb723d201 + - 81e29df4-68a7-40b2-865d-59c9f7be11d5 status: 404 Not Found code: 404 - duration: 50.715208ms - - id: 53 + duration: 41.977523ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2647,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -2656,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,11 +2626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e58e15e1-df8b-46c2-9366-816f18e08653 + - 51cf447f-784a-4c0b-b36e-9ed0daa88c9c status: 200 OK code: 200 - duration: 49.4195ms - - id: 54 + duration: 206.417633ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2696,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data method: GET response: proto: HTTP/2.0 @@ -2716,9 +2665,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2726,11 +2675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 827ce092-52a5-4c54-ad96-51cd5b17762c + - eca31c9a-e41d-4c56-8c72-01e03bcd54fd status: 200 OK code: 200 - duration: 72.442417ms - - id: 55 + duration: 98.90237ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2745,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics method: GET response: proto: HTTP/2.0 @@ -2756,7 +2705,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2765,11 +2714,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,13 +2726,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 699e4c2c-8e55-4654-ad00-46f1bb7832ef + - db6ce6d1-b093-4114-b507-73b60ba28994 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 62.324209ms - - id: 56 + duration: 99.885066ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2798,8 +2747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2807,20 +2756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,11 +2777,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 079a9ce0-59a1-44e2-a58f-687269509feb + - eafe4bda-8bae-47df-b068-94e3d1122aab status: 200 OK code: 200 - duration: 29.0235ms - - id: 57 + duration: 39.204615ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2847,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -2858,7 +2807,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2867,9 +2816,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2877,11 +2826,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e82b205-6bcf-42cd-8a2e-f6bd80c7cd40 + - 76356e79-ac09-4842-8e1e-5a33afd2fc31 status: 200 OK code: 200 - duration: 79.50125ms - - id: 58 + duration: 97.636052ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2896,8 +2845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -2905,20 +2854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2926,11 +2875,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 991edd77-013e-491c-bb1a-eb99ddd22b9e + - f42ed7eb-e7cb-4d13-b7f8-1d0c77ff6d1c status: 200 OK code: 200 - duration: 153.067875ms - - id: 59 + duration: 154.191892ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2945,8 +2894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2954,20 +2903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2975,11 +2924,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c2f72c5-af24-4cd5-bb1c-f78d2f47efe4 + - 0c81f357-4999-44f2-9a0e-ec97d56bf8c4 status: 200 OK code: 200 - duration: 47.786084ms - - id: 60 + duration: 49.597729ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2994,7 +2943,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -3014,11 +2963,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:43 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3026,13 +2975,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6aab8f7-f959-424b-a1fb-8811e9f74d4e + - 8b121650-4f86-4191-818e-f7d48cfaf4cf X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.689875ms - - id: 61 + duration: 41.818226ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3047,7 +2996,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -3067,11 +3016,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:06 GMT + - Thu, 09 Oct 2025 09:04:43 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3079,13 +3028,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f7e455e-3a48-468a-954e-5e45cc486c38 + - ba32de01-3755-411c-a886-c54bfd58f8eb X-Total-Count: - "75" status: 200 OK code: 200 - duration: 42.913792ms - - id: 62 + duration: 49.03977ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3100,7 +3049,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -3109,20 +3058,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 1002 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","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"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "937" + - "1002" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:07 GMT + - Thu, 09 Oct 2025 09:04:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3130,11 +3079,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4505bb18-db08-4479-9398-8b80425c27a3 + - a24e8d6b-c538-4ed4-833e-6ac5c1dfce4e status: 200 OK code: 200 - duration: 95.055333ms - - id: 63 + duration: 62.627445ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3145,13 +3094,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -3160,22 +3109,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:07 GMT + - Thu, 09 Oct 2025 09:04:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3183,11 +3132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff4d3ab4-fc05-400b-a821-a61f61a430ba + - b9e8adf4-ad15-40b5-86d9-1d85618a278f status: 201 Created code: 201 - duration: 704.02825ms - - id: 64 + duration: 1.323209726s + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3202,8 +3151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3211,20 +3160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:07 GMT + - Thu, 09 Oct 2025 09:04:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3232,11 +3181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32b71fd3-39de-477c-b91e-55b8c62adf18 + - b80bbe30-3db4-43de-a813-7e9d54a46846 status: 200 OK code: 200 - duration: 174.536375ms - - id: 65 + duration: 240.919497ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3251,8 +3200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3260,20 +3209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:08 GMT + - Thu, 09 Oct 2025 09:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3281,11 +3230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 014eda72-8022-46a5-b1e5-4e182e289ab2 + - a8c4af47-5c5a-4293-beab-71daddad0c1f status: 200 OK code: 200 - duration: 145.59375ms - - id: 66 + duration: 184.576246ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3300,8 +3249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -3309,20 +3258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:08 GMT + - Thu, 09 Oct 2025 09:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3330,11 +3279,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44c3dbbf-9279-4dd7-b86f-34f483a99f3a + - 70a1ef3d-1e9c-4ce5-857a-b1e8fc74f23d status: 200 OK code: 200 - duration: 49.515791ms - - id: 67 + duration: 79.640767ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3351,8 +3300,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action method: POST response: proto: HTTP/2.0 @@ -3362,7 +3311,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ab11d677-e74e-48d2-a427-5f0649925291/action","href_result":"/servers/ab11d677-e74e-48d2-a427-5f0649925291","id":"faebebb0-bfdc-4299-9070-a9240dfadabc","progress":0,"started_at":"2025-06-30T15:47:08.335965+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action","href_result":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478","id":"19536505-bdb3-4476-a701-119713fa9bc9","progress":0,"started_at":"2025-10-09T09:04:45.339883+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -3371,11 +3320,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:08 GMT + - Thu, 09 Oct 2025 09:04:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/faebebb0-bfdc-4299-9070-a9240dfadabc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/19536505-bdb3-4476-a701-119713fa9bc9 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3383,11 +3332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3878bc6-6ee3-4411-90ef-2d8d1b8d501f + - 6c5b9683-def1-4c0d-bb5c-80d3b8d6b029 status: 202 Accepted code: 202 - duration: 371.539458ms - - id: 68 + duration: 234.66234ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3402,8 +3351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3411,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1714 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:08.164073+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:45.154303+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1714" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:08 GMT + - Thu, 09 Oct 2025 09:04:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3432,11 +3381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 413abcdb-4390-411d-a1a7-51fe1f777690 + - 4b3ee334-a009-432f-88a2-0c2da8546a2d status: 200 OK code: 200 - duration: 158.785333ms - - id: 69 + duration: 137.922546ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3451,8 +3400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3460,20 +3409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1848 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1848" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:13 GMT + - Thu, 09 Oct 2025 09:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3481,11 +3430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 899e4761-b7bb-4d70-afdc-05b700fcf2b4 + - 9b9ed64a-2523-430a-b598-c52a085ff594 status: 200 OK code: 200 - duration: 148.543625ms - - id: 70 + duration: 139.134424ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3500,8 +3449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3509,20 +3458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1848 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1848" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:13 GMT + - Thu, 09 Oct 2025 09:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3530,11 +3479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bda73a49-37b4-4b03-806e-79b7323fa043 + - 2e9a53e1-8573-4dde-911d-db782394e5a3 status: 200 OK code: 200 - duration: 165.3755ms - - id: 71 + duration: 165.490395ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3549,8 +3498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -3560,7 +3509,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' headers: Content-Length: - "143" @@ -3569,9 +3518,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:14 GMT + - Thu, 09 Oct 2025 09:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3579,11 +3528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 212d93a8-bc09-4724-bfad-a9606ac5bb6b + - 691dfe16-638e-4bf4-b4f1-230c57b37354 status: 404 Not Found code: 404 - duration: 35.858625ms - - id: 72 + duration: 29.150907ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3598,8 +3547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -3607,20 +3556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:14 GMT + - Thu, 09 Oct 2025 09:04:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3628,11 +3577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17c1e63d-a1c6-457d-add8-b78c7bdbd58b + - 416febdb-9099-4f3a-9d21-a70cd8de0684 status: 200 OK code: 200 - duration: 46.0645ms - - id: 73 + duration: 111.055125ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3647,8 +3596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/user_data method: GET response: proto: HTTP/2.0 @@ -3667,9 +3616,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:14 GMT + - Thu, 09 Oct 2025 09:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3677,11 +3626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d450310-63f4-47e2-b0ac-a914c51fce77 + - 9d2cc49a-95c7-46f1-8056-7bf88d429e45 status: 200 OK code: 200 - duration: 74.672042ms - - id: 74 + duration: 90.106019ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3696,8 +3645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics method: GET response: proto: HTTP/2.0 @@ -3716,11 +3665,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:14 GMT + - Thu, 09 Oct 2025 09:04:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,13 +3677,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70dcaca-7181-4b40-b2d1-152cf10e2704 + - dc691730-6d87-4f05-a15d-dd0d94f45de6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.586584ms - - id: 75 + duration: 160.436908ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3749,8 +3698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -3758,20 +3707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1848 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1848" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:14 GMT + - Thu, 09 Oct 2025 09:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,11 +3728,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6045b907-5cac-43ba-a845-e7d9128a57c4 + - 4c350816-d2b5-4ccf-a8f9-4104581ea9d2 status: 200 OK code: 200 - duration: 163.093833ms - - id: 76 + duration: 172.238604ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3794,14 +3743,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93"}' + body: '{"private_network_id":"87093c60-561c-41be-8caf-50b4ae177439"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics method: POST response: proto: HTTP/2.0 @@ -3811,7 +3760,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3820,9 +3769,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:20 GMT + - Thu, 09 Oct 2025 09:04:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,10 +3779,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9de141b-5c55-441d-bd17-e84b14bf63b4 + - 9a74aaf8-ccb3-45f6-9e89-bc0581dbc964 status: 201 Created code: 201 - duration: 6.584972125s + duration: 559.971676ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 09 Oct 2025 09:04:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 751758d4-6105-45bb-b18b-d27824235280 + status: 200 OK + code: 200 + duration: 118.058934ms - id: 77 request: proto: HTTP/1.1 @@ -3849,8 +3847,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -3860,7 +3858,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3869,9 +3867,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:21 GMT + - Thu, 09 Oct 2025 09:04:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,10 +3877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9c90379-ed60-4578-956e-841ada585f5b + - d9665668-2c6b-4700-b4bb-2f4032a174d3 status: 200 OK code: 200 - duration: 76.415333ms + duration: 122.83392ms - id: 78 request: proto: HTTP/1.1 @@ -3898,8 +3896,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -3909,7 +3907,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3918,9 +3916,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:26 GMT + - Thu, 09 Oct 2025 09:05:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,10 +3926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bac05714-a91b-445d-881a-a714db4359c6 + - ac549700-5fd7-4bc2-ae6e-78be3af95104 status: 200 OK code: 200 - duration: 77.17275ms + duration: 91.342876ms - id: 79 request: proto: HTTP/1.1 @@ -3947,8 +3945,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -3958,7 +3956,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3967,9 +3965,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:31 GMT + - Thu, 09 Oct 2025 09:05:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3977,10 +3975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 669dbe21-cccf-4544-9ed5-3787784860b8 + - feeac264-5e06-44fb-aa21-85c2a867fb49 status: 200 OK code: 200 - duration: 84.35925ms + duration: 97.234315ms - id: 80 request: proto: HTTP/1.1 @@ -3996,8 +3994,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4007,7 +4005,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4016,9 +4014,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:36 GMT + - Thu, 09 Oct 2025 09:05:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,10 +4024,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db1b575f-4e01-4bd3-8e79-9aaed88a01ce + - 1967d6e0-592d-467a-9095-3b9867c92bb4 status: 200 OK code: 200 - duration: 69.327542ms + duration: 105.079989ms - id: 81 request: proto: HTTP/1.1 @@ -4045,8 +4043,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4056,7 +4054,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4065,9 +4063,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:41 GMT + - Thu, 09 Oct 2025 09:05:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4075,10 +4073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e00486b-a5ee-449a-ad2f-669b1479863f + - 17381996-637e-4a4d-89e2-3acd6b010bf6 status: 200 OK code: 200 - duration: 64.231333ms + duration: 109.369229ms - id: 82 request: proto: HTTP/1.1 @@ -4094,8 +4092,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4105,7 +4103,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4114,9 +4112,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:46 GMT + - Thu, 09 Oct 2025 09:05:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4124,10 +4122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dbacdd9-abf4-4fad-a996-7855173eba0f + - 675aa921-709e-457a-8e18-9373ee10e4ea status: 200 OK code: 200 - duration: 62.526833ms + duration: 106.771596ms - id: 83 request: proto: HTTP/1.1 @@ -4143,8 +4141,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4154,7 +4152,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4163,9 +4161,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:51 GMT + - Thu, 09 Oct 2025 09:05:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4173,10 +4171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 257c40a3-e69a-46cf-b356-f60919a847eb + - b576782d-4b4d-4647-b26b-c24983417c58 status: 200 OK code: 200 - duration: 65.311584ms + duration: 100.77529ms - id: 84 request: proto: HTTP/1.1 @@ -4192,8 +4190,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4203,7 +4201,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4212,9 +4210,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:47:56 GMT + - Thu, 09 Oct 2025 09:05:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4222,10 +4220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420a367a-3ffc-46d6-aab1-94723e1bef94 + - 9bff6ebc-9544-48d0-adcb-73a390ace83f status: 200 OK code: 200 - duration: 67.803916ms + duration: 101.220787ms - id: 85 request: proto: HTTP/1.1 @@ -4241,8 +4239,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4252,7 +4250,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4261,9 +4259,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:01 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,10 +4269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d788232-c0d3-4f32-b780-14282bc43c1b + - 3800168b-7e5b-41d9-b22f-2d9acf7c648d status: 200 OK code: 200 - duration: 82.648584ms + duration: 101.025567ms - id: 86 request: proto: HTTP/1.1 @@ -4290,8 +4288,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -4301,7 +4299,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4310,9 +4308,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:01 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4320,10 +4318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed3b5bb6-4e8f-4424-bf78-e2718b71ce35 + - 460ce9f2-98a5-4034-8445-8eae5f349746 status: 200 OK code: 200 - duration: 69.126958ms + duration: 126.718807ms - id: 87 request: proto: HTTP/1.1 @@ -4339,8 +4337,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -4348,20 +4346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2306 + content_length: 2329 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2306" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:01 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4369,10 +4367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f1a69c3-21f1-4a82-a05a-2a5278837ad8 + - f124e933-5332-4c8a-af3f-0588fd53af4c status: 200 OK code: 200 - duration: 153.902667ms + duration: 142.680579ms - id: 88 request: proto: HTTP/1.1 @@ -4388,8 +4386,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4397,20 +4395,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 1060 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1030" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:01 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4418,10 +4416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c0086c3-0195-4498-8cdf-08bc11ab5165 + - 5e029da7-1893-43c6-9500-12fd503df2d2 status: 200 OK code: 200 - duration: 52.85525ms + duration: 57.485848ms - id: 89 request: proto: HTTP/1.1 @@ -4433,14 +4431,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8"}' + body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: PATCH response: proto: HTTP/2.0 @@ -4448,20 +4446,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "410" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:01 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4469,10 +4467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e6d1173-23ce-4fd4-b587-141e0819fe16 + - b563f580-6b56-4473-a28c-a755a30e0ea4 status: 200 OK code: 200 - duration: 82.64075ms + duration: 99.848012ms - id: 90 request: proto: HTTP/1.1 @@ -4488,8 +4486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -4497,20 +4495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "410" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4518,10 +4516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efdfad82-1cdf-477c-88df-93cf13b73a86 + - 75bee964-c0a7-4925-9df1-dd1376c5830a status: 200 OK code: 200 - duration: 38.789416ms + duration: 25.010632ms - id: 91 request: proto: HTTP/1.1 @@ -4537,8 +4535,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -4546,20 +4544,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "410" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4567,10 +4565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d9ef16-938f-4221-882c-742e554b8ffd + - 99603abc-045e-4baa-bfef-f016786c07cf status: 200 OK code: 200 - duration: 26.939167ms + duration: 27.559017ms - id: 92 request: proto: HTTP/1.1 @@ -4586,8 +4584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d method: GET response: proto: HTTP/2.0 @@ -4595,20 +4593,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 408 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":1,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:46:15.487392Z"}' + body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' headers: Content-Length: - - "397" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4616,10 +4614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1877c951-6051-4bd2-bfe4-cdf83a329ee3 + - 80be2b6b-6232-415c-a279-5a5eb0df1d59 status: 200 OK code: 200 - duration: 35.137375ms + duration: 97.506296ms - id: 93 request: proto: HTTP/1.1 @@ -4635,8 +4633,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -4644,20 +4642,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 2415 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1055" + - "2415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4665,10 +4663,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81588b87-2108-4201-820b-029a9a5678e9 + - 7ae8b483-e92f-48ed-bfde-b62c623e3c9b status: 200 OK code: 200 - duration: 31.534916ms + duration: 125.481726ms - id: 94 request: proto: HTTP/1.1 @@ -4684,8 +4682,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -4693,20 +4691,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2324 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2324" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4714,10 +4712,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0d55f7-aed1-4d79-91ad-e8bdc5a79c24 + - 8a04101b-24d2-4054-bf6e-5571f8dae26a status: 200 OK code: 200 - duration: 192.447834ms + duration: 149.197151ms - id: 95 request: proto: HTTP/1.1 @@ -4733,8 +4731,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -4742,20 +4740,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2306 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' headers: Content-Length: - - "2306" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4763,10 +4761,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 912e74b7-fa00-437c-bc1e-430fd37d2acc - status: 200 OK - code: 200 - duration: 203.735875ms + - 3cce9859-a7bc-4f44-813f-d4f1cc04f841 + status: 404 Not Found + code: 404 + duration: 43.204377ms - id: 96 request: proto: HTTP/1.1 @@ -4782,8 +4780,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -4793,7 +4791,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' headers: Content-Length: - "143" @@ -4802,9 +4800,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4812,10 +4810,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c6d1fd7-6daf-494e-8a4b-2bb60d98d62e + - 71e77f42-fa11-482c-8b11-b6287d320e1a status: 404 Not Found code: 404 - duration: 36.533667ms + duration: 29.931488ms - id: 97 request: proto: HTTP/1.1 @@ -4831,8 +4829,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 method: GET response: proto: HTTP/2.0 @@ -4840,20 +4838,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1079 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' + body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "143" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4861,10 +4859,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b1e540d-0103-485b-9bec-89aad82468eb - status: 404 Not Found - code: 404 - duration: 30.275125ms + - aa025349-b713-4176-a086-de038ccc3a17 + status: 200 OK + code: 200 + duration: 90.16266ms - id: 98 request: proto: HTTP/1.1 @@ -4880,8 +4878,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -4889,20 +4887,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4910,10 +4908,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22ff9cb6-a032-47ef-ac9c-8604d1c8a757 + - 715c6fcd-1474-4d49-872e-03c1ac97d79c status: 200 OK code: 200 - duration: 45.42925ms + duration: 87.567638ms - id: 99 request: proto: HTTP/1.1 @@ -4929,8 +4927,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -4938,20 +4936,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 684 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' headers: Content-Length: - - "665" + - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4959,10 +4957,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b271db4f-50bd-484a-965b-34bf5b01d4ee + - 7b4e8cd1-e93e-4dc4-86a8-f32e40094f86 status: 200 OK code: 200 - duration: 72.692459ms + duration: 81.622764ms - id: 100 request: proto: HTTP/1.1 @@ -4978,8 +4976,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/user_data method: GET response: proto: HTTP/2.0 @@ -4998,9 +4996,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5008,10 +5006,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da163025-4792-4cf6-9ddc-af34ada7acf4 + - 2cf6ea14-442b-4ea6-96f4-8fde52e5f0c2 status: 200 OK code: 200 - duration: 87.497791ms + duration: 90.510738ms - id: 101 request: proto: HTTP/1.1 @@ -5027,8 +5025,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data method: GET response: proto: HTTP/2.0 @@ -5047,9 +5045,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5057,10 +5055,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbbc81a5-e274-4189-8ba9-afb125c84759 + - 7fb3940f-b1ed-44c8-9200-72e0c1f3fb1b status: 200 OK code: 200 - duration: 63.263791ms + duration: 96.417203ms - id: 102 request: proto: HTTP/1.1 @@ -5076,8 +5074,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics method: GET response: proto: HTTP/2.0 @@ -5087,7 +5085,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5096,11 +5094,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5108,12 +5106,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47e21771-a909-437a-801b-bd966f2625f6 + - 00e744a2-6094-45a6-ada9-acce4547df0c X-Total-Count: - "1" status: 200 OK code: 200 - duration: 85.196958ms + duration: 104.880238ms - id: 103 request: proto: HTTP/1.1 @@ -5129,8 +5127,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics method: GET response: proto: HTTP/2.0 @@ -5140,7 +5138,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5149,11 +5147,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5161,12 +5159,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4452ccf4-4db4-4814-955e-ac6a50dd3f33 + - a3e77f07-1068-4a7a-897e-cb8de0272edf X-Total-Count: - "1" status: 200 OK code: 200 - duration: 105.697292ms + duration: 117.150608ms - id: 104 request: proto: HTTP/1.1 @@ -5182,8 +5180,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5191,20 +5189,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5212,10 +5210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6220737-10f4-43be-8946-19c9bd532325 + - dc34fb68-520c-4486-9e87-8716e7019fd7 status: 200 OK code: 200 - duration: 28.904042ms + duration: 27.762189ms - id: 105 request: proto: HTTP/1.1 @@ -5231,8 +5229,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5240,20 +5238,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 1060 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1030" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5261,10 +5259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91af0297-ce66-49fd-8788-59f0f08a15b5 + - aa5e68e8-5459-4556-949e-1a3daadb1276 status: 200 OK code: 200 - duration: 38.926083ms + duration: 28.415818ms - id: 106 request: proto: HTTP/1.1 @@ -5280,8 +5278,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -5291,7 +5289,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5300,9 +5298,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5310,10 +5308,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9bc96df-03c5-4715-b856-c4d18fdc5817 + - 800577ba-8dfd-4f30-b4e3-86a8b81827be status: 200 OK code: 200 - duration: 63.928125ms + duration: 96.145745ms - id: 107 request: proto: HTTP/1.1 @@ -5329,8 +5327,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -5340,7 +5338,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5349,9 +5347,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:02 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5359,10 +5357,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71754108-64d6-4bab-b1aa-698112cee6e7 + - 07d36d0b-4a77-4e4e-b23d-201d4aae22a6 status: 200 OK code: 200 - duration: 68.87325ms + duration: 102.504189ms - id: 108 request: proto: HTTP/1.1 @@ -5378,8 +5376,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -5387,20 +5385,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2329 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5408,10 +5406,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45774dd-9918-4406-9363-fff3b183dc23 + - dffcb5f6-b65a-46c7-961a-a38b05e854ed status: 200 OK code: 200 - duration: 201.084875ms + duration: 143.326145ms - id: 109 request: proto: HTTP/1.1 @@ -5427,8 +5425,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -5436,20 +5434,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2306 + content_length: 2410 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2306" + - "2410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5457,10 +5455,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6254c69-c1af-4e9a-b796-c54ebdfca504 + - 5edcf4dd-9e05-4000-ba45-97b170dd384d status: 200 OK code: 200 - duration: 158.867125ms + duration: 148.13662ms - id: 110 request: proto: HTTP/1.1 @@ -5476,8 +5474,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5485,20 +5483,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 1060 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1030" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5506,10 +5504,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b57cac-ca32-4714-9848-e66b903ee8c0 + - 8c4e6ea3-499e-45c1-b49a-3afb7351c3cf status: 200 OK code: 200 - duration: 57.603833ms + duration: 47.16425ms - id: 111 request: proto: HTTP/1.1 @@ -5525,8 +5523,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5534,20 +5532,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5555,10 +5553,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dfcd757-c7ee-4e0e-8fc9-e5214bb013eb + - e3f0610f-35f7-4ce1-a4c3-6ff7f0fa57f6 status: 200 OK code: 200 - duration: 63.740375ms + duration: 55.295668ms - id: 112 request: proto: HTTP/1.1 @@ -5574,8 +5572,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -5583,20 +5581,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 410 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' + body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' headers: Content-Length: - - "410" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5604,10 +5602,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bd7a8a4-48e0-4e78-ba37-7969cdc750a8 + - ef9f6107-903c-46ad-93bb-f9ead02cc047 status: 200 OK code: 200 - duration: 31.687208ms + duration: 29.9814ms - id: 113 request: proto: HTTP/1.1 @@ -5623,8 +5621,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: DELETE response: proto: HTTP/2.0 @@ -5641,9 +5639,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5651,10 +5649,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb4778f9-e2b6-4092-9277-37e98513d5b2 + - 0d3cc5e3-3a0d-4abb-89db-bf9938a2703c status: 204 No Content code: 204 - duration: 55.541625ms + duration: 54.619163ms - id: 114 request: proto: HTTP/1.1 @@ -5670,8 +5668,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: GET response: proto: HTTP/2.0 @@ -5681,7 +5679,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5690,9 +5688,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5700,10 +5698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2b77351-aa5a-440a-883e-d7f146805ee8 + - f9ff5840-722c-43be-9d31-381ac38fe74c status: 200 OK code: 200 - duration: 65.560041ms + duration: 95.903916ms - id: 115 request: proto: HTTP/1.1 @@ -5719,8 +5717,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -5730,7 +5728,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5739,9 +5737,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5749,10 +5747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d951e315-6fec-4217-9cea-8820ff5dd0ad + - 572f6636-07c7-49a0-87ee-6c1f3b3bf991 status: 200 OK code: 200 - duration: 53.397709ms + duration: 105.98067ms - id: 116 request: proto: HTTP/1.1 @@ -5768,8 +5766,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 method: DELETE response: proto: HTTP/2.0 @@ -5786,9 +5784,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5796,10 +5794,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba205e0f-a1c1-4114-a6d8-9d068050adf7 + - 30b7e4e2-db66-44c4-8db4-7190d01940b2 status: 204 No Content code: 204 - duration: 465.046791ms + duration: 378.697381ms - id: 117 request: proto: HTTP/1.1 @@ -5815,27 +5813,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 148 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","type":"not_found"}' headers: + Content-Length: + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:03 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5843,10 +5843,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3588a7f-6353-4972-b54b-ad1edd93b81c - status: 204 No Content - code: 204 - duration: 415.345167ms + - 2e4f3af2-0eda-4bff-b6ac-76c62e92f4c2 + status: 404 Not Found + code: 404 + duration: 101.743828ms - id: 118 request: proto: HTTP/1.1 @@ -5862,29 +5862,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","type":"not_found"}' + body: "" headers: - Content-Length: - - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5892,10 +5890,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ce2b23c-5f3c-47c2-87a8-0b8be0a084e9 - status: 404 Not Found - code: 404 - duration: 93.251458ms + - 56aae9d4-94bd-4a32-8bb7-5f6dc6689f39 + status: 204 No Content + code: 204 + duration: 405.799957ms - id: 119 request: proto: HTTP/1.1 @@ -5911,8 +5909,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f method: GET response: proto: HTTP/2.0 @@ -5922,7 +5920,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","type":"not_found"}' headers: Content-Length: - "148" @@ -5931,9 +5929,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5941,10 +5939,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7be2fb4-0402-462a-b69f-3034514cec53 + - 2864b923-a757-4dd6-83a2-46d87a01f9c1 status: 404 Not Found code: 404 - duration: 102.957209ms + duration: 107.111525ms - id: 120 request: proto: HTTP/1.1 @@ -5960,8 +5958,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -5969,20 +5967,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1866 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "1866" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5990,10 +5988,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb33b643-d3f2-4410-9009-60914f2ccff5 + - 681de0ed-12ed-40e7-9bd5-45ca9747ed24 status: 200 OK code: 200 - duration: 148.010083ms + duration: 132.362585ms - id: 121 request: proto: HTTP/1.1 @@ -6009,8 +6007,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -6018,20 +6016,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1848 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1848" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6039,127 +6037,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9406c437-c2b2-4890-8ee6-1531a8a7856c + - 0c58dd70-dcd2-42df-a897-d77fd1c38884 status: 200 OK code: 200 - duration: 188.937541ms + duration: 141.672353ms - id: 122 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 665 - uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "665" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5a82d512-99b7-4fda-b0e8-e9f693a1944f - status: 200 OK - code: 200 - duration: 40.854417ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 665 - uncompressed: false - body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "665" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:04 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b64bd658-bcdf-4a4a-add7-8b6aa8be6db2 - status: 200 OK - code: 200 - duration: 43.635834ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action method: POST response: proto: HTTP/2.0 @@ -6167,22 +6067,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action","href_result":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","id":"15d4acb7-8a25-46a1-aaa0-8ed4fee45c9c","progress":0,"started_at":"2025-06-30T15:48:04.439230+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action","href_result":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478","id":"6f1e976a-bb39-4c30-9d86-07eee2222173","progress":0,"started_at":"2025-10-09T09:05:41.166343+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/15d4acb7-8a25-46a1-aaa0-8ed4fee45c9c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6f1e976a-bb39-4c30-9d86-07eee2222173 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6190,29 +6090,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4869c57e-cd7b-4a50-9502-11154efe0ca2 + - c759c806-0006-44b1-8ceb-c7ae150e18b5 status: 202 Accepted code: 202 - duration: 248.89175ms - - id: 125 + duration: 314.099612ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: '{"action":"terminate"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action method: POST response: proto: HTTP/2.0 @@ -6220,22 +6120,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 353 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/ab11d677-e74e-48d2-a427-5f0649925291/action","href_result":"/servers/ab11d677-e74e-48d2-a427-5f0649925291","id":"b2c10929-1ae3-47da-94b3-28975133c4ee","progress":0,"started_at":"2025-06-30T15:48:04.504840+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action","href_result":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c","id":"8672955b-1f4c-485b-8bc8-8ff258e1c676","progress":0,"started_at":"2025-10-09T09:05:41.321422+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b2c10929-1ae3-47da-94b3-28975133c4ee + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8672955b-1f4c-485b-8bc8-8ff258e1c676 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6243,11 +6143,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e87c2ff3-3f0d-4a04-98fa-0d3eee718d8a + - 398d9a89-b3c0-4d7e-80c4-36c2ad44298c status: 202 Accepted code: 202 - duration: 274.653875ms - - id: 126 + duration: 566.530031ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6262,8 +6162,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -6271,20 +6171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 1834 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:05:40.928055+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1804" + - "1834" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6292,11 +6192,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1d42149-4b6c-4b2c-8ccf-ef682c13f8bc + - a935c442-ddf4-4aa5-b7f2-2bef69ca32a4 status: 200 OK code: 200 - duration: 196.400083ms - - id: 127 + duration: 141.422566ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6311,8 +6211,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -6320,20 +6220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:05:40.815612+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1808" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:04 GMT + - Thu, 09 Oct 2025 09:05:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6341,11 +6241,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5acff6e-752c-4b73-a3ce-11afa5f05e11 + - ef0b6fab-15bd-4089-8190-0743ce18d00a status: 200 OK code: 200 - duration: 276.847834ms - - id: 128 + duration: 167.171639ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6360,8 +6260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 method: DELETE response: proto: HTTP/2.0 @@ -6378,9 +6278,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:06 GMT + - Thu, 09 Oct 2025 09:05:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6388,11 +6288,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757737d9-891d-42d0-ab80-fe60bb1656e6 + - f4a4eb9e-9687-45a4-b65f-99893f705340 status: 204 No Content code: 204 - duration: 2.838335083s - - id: 129 + duration: 1.382021392s + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6407,8 +6307,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d method: DELETE response: proto: HTTP/2.0 @@ -6425,9 +6325,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:06 GMT + - Thu, 09 Oct 2025 09:05:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6435,11 +6335,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4420c380-af53-41b9-ada7-ff76750c6095 + - bced817e-5812-448d-bc76-dc5f4b31bec3 status: 204 No Content code: 204 - duration: 154.291417ms - - id: 130 + duration: 193.123332ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6454,8 +6354,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 method: GET response: proto: HTTP/2.0 @@ -6463,20 +6363,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","type":"not_found"}' headers: Content-Length: - - "1804" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:09 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6484,11 +6384,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33eb03df-0668-420d-8f20-437b32f0ef60 - status: 200 OK - code: 200 - duration: 156.480708ms - - id: 131 + - 982e8fcb-0cc3-4f04-9888-c26f174f4a4f + status: 404 Not Found + code: 404 + duration: 55.72399ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6503,8 +6403,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -6512,20 +6412,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' headers: Content-Length: - - "1808" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:09 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6533,11 +6433,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01708312-fc7c-42e4-ac97-f565b2cf1871 - status: 200 OK - code: 200 - duration: 183.591375ms - - id: 132 + - cf5e6427-bcce-4d37-b520-9cef146dbe55 + status: 404 Not Found + code: 404 + duration: 29.512197ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6552,8 +6452,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 method: GET response: proto: HTTP/2.0 @@ -6561,20 +6461,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":"2025-10-09T09:05:43.162587Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:05:43.162587Z","zone":"fr-par-1"}' headers: Content-Length: - - "1804" + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:14 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6582,11 +6482,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db1a7694-7cad-4c63-9782-a94d91435e8d + - 62ecd50d-3cf3-4e06-80d2-0178e0cdff29 status: 200 OK code: 200 - duration: 143.361875ms - - id: 133 + duration: 93.68379ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6601,8 +6501,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c method: GET response: proto: HTTP/2.0 @@ -6610,20 +6510,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","type":"not_found"}' headers: Content-Length: - - "1808" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:15 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6631,11 +6531,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51509a82-16c5-4211-a482-752ec64961f6 - status: 200 OK - code: 200 - duration: 193.407375ms - - id: 134 + - fcb9cd21-601d-474f-ac2d-07578e873a8a + status: 404 Not Found + code: 404 + duration: 54.375057ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6650,8 +6550,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -6659,20 +6559,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' headers: Content-Length: - - "1804" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:20 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6680,11 +6580,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e550ec-fdb8-4520-9cc9-785967df00e7 - status: 200 OK - code: 200 - duration: 187.181417ms - - id: 135 + - e4eae7b4-6b42-4228-be87-95e35fe81581 + status: 404 Not Found + code: 404 + duration: 30.477767ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6699,8 +6599,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e method: GET response: proto: HTTP/2.0 @@ -6708,20 +6608,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":"2025-10-09T09:05:43.548377Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:05:43.548377Z","zone":"fr-par-1"}' headers: Content-Length: - - "1808" + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:20 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6729,11 +6629,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edb76d52-4b95-405d-b9e5-ed15006feee5 + - 55c863d6-8b37-4e22-bdc0-42bcc1b5fc95 status: 200 OK code: 200 - duration: 184.633375ms - - id: 136 + duration: 87.10784ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6748,127 +6648,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1804" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4a5a79bf-2c9a-4813-9f7f-6a77e932a388 - status: 200 OK - code: 200 - duration: 162.551583ms - - id: 137 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:25 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c2766eb-d4b5-4cbc-b42d-960ba8a46df5 - status: 200 OK - code: 200 - duration: 184.749417ms - - id: 138 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1804 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: - Content-Length: - - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:30 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6876,11 +6676,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d531635a-4b5f-40c1-820c-d4160307b77f - status: 200 OK - code: 200 - duration: 259.989375ms - - id: 139 + - 04b86b99-fa66-44ed-b954-fb7711ea38f2 + status: 204 No Content + code: 204 + duration: 159.105428ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6895,29 +6695,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:30 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6925,983 +6723,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18ae6eb0-1135-4428-a9eb-4c431a772b4a - status: 200 OK - code: 200 - duration: 145.926459ms - - id: 140 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1804 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1804" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9498bbda-dfdf-4303-b565-3f667e76a5b5 - status: 200 OK - code: 200 - duration: 169.30325ms - - id: 141 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9938f3c7-bbee-4570-bcca-d0e0eb3e9df9 - status: 200 OK - code: 200 - duration: 158.312416ms - - id: 142 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1804 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1804" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:40 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 64d06726-eaa6-42a0-bcc4-ae3767a72d12 - status: 200 OK - code: 200 - duration: 156.402542ms - - id: 143 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:41 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ec5f7bba-a5f2-452f-ac2d-a62db703ae70 - status: 200 OK - code: 200 - duration: 138.627125ms - - id: 144 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1804 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1804" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b31166d3-bfdd-4976-9b4b-56fdb8cad20e - status: 200 OK - code: 200 - duration: 151.979709ms - - id: 145 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1808 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1808" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:46 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 153cdda2-9ab2-4cbd-8931-1d16d5ec671f - status: 200 OK - code: 200 - duration: 139.532791ms - - id: 146 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1688 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:48.388561+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1688" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a08a0767-5e73-40ca-a74f-b8e8419eee1a - status: 200 OK - code: 200 - duration: 135.017416ms - - id: 147 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1692 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:48.201011+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 974cce5f-78fa-4e5a-b14d-84174d6f4049 - status: 200 OK - code: 200 - duration: 140.169541ms - - id: 148 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1688 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:48.388561+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1688" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a34ef37b-3355-4e83-802a-1dcfb12d0e56 - status: 200 OK - code: 200 - duration: 139.084709ms - - id: 149 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1692 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:48.201011+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1692" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c2d93d4-a74c-4918-963b-9a0f544c94b3 - status: 200 OK - code: 200 - duration: 173.237083ms - - id: 150 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a0f0fc06-5292-47f1-8400-18616aa5e524 - status: 204 No Content - code: 204 - duration: 489.79625ms - - id: 151 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5983ef3-074c-43ed-810f-1dd299f4efed - status: 404 Not Found - code: 404 - duration: 94.495334ms - - id: 152 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aa9359e3-a6a7-4c64-b0a4-4c8cef189285 - status: 204 No Content - code: 204 - duration: 484.239916ms - - id: 153 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:51 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aa55aae8-37dd-49bd-b2c3-f466f746a90d - status: 404 Not Found - code: 404 - duration: 37.269625ms - - id: 154 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":"2025-06-30T15:48:51.821807Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:48:51.821807Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c0fb1cd5-8b2c-4c16-9bd5-19e7da415705 - status: 200 OK - code: 200 - duration: 54.634458ms - - id: 155 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb92353f-8a63-479b-8152-31768f799ea8 - status: 404 Not Found - code: 404 - duration: 97.069375ms - - id: 156 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ab067df-076e-4a53-96ab-7c4fff327e8d - status: 204 No Content - code: 204 - duration: 100.453042ms - - id: 157 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb029f88-12db-4d24-a373-c7c51e1daab7 - status: 404 Not Found - code: 404 - duration: 69.5315ms - - id: 158 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 463 - uncompressed: false - body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":"2025-06-30T15:48:52.019416Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:48:52.019416Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "463" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ba7ec1dc-8950-419f-b8e1-d0cce1f68018 - status: 200 OK - code: 200 - duration: 51.020417ms - - id: 159 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:48:52 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ef728333-533f-458a-91fc-0c9c6f3d76e7 + - d7d53c9f-4f99-4cfb-a011-51d2970fa8f3 status: 204 No Content code: 204 - duration: 91.185ms - - id: 160 + duration: 158.685106ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -7916,8 +6742,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 method: GET response: proto: HTTP/2.0 @@ -7936,9 +6762,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:48:52 GMT + - Thu, 09 Oct 2025 09:05:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7946,7 +6772,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7447e1f5-0de4-470f-9803-de0c61fcedc2 + - b9eb3f53-c0db-4d32-b8fb-963d6d77c61f status: 404 Not Found code: 404 - duration: 26.077625ms + duration: 26.174395ms diff --git a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml index d19a5ca3f..69ac46c5c 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:42.944858Z","custom_routes_propagation_enabled":true,"id":"e21dc695-181e-495f-9121-a141040e4fdb","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:09:42.944858Z"}' + body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' headers: Content-Length: - "444" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:42 GMT + - Thu, 09 Oct 2025 09:38:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c0d31b6-92fa-4452-a083-9bd7ab02cd48 + - 69a32fbc-4bf8-429f-8217-f0f227918cde status: 200 OK code: 200 - duration: 312.241125ms + duration: 168.44596ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e21dc695-181e-495f-9121-a141040e4fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:42.944858Z","custom_routes_propagation_enabled":true,"id":"e21dc695-181e-495f-9121-a141040e4fdb","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:09:42.944858Z"}' + body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' headers: Content-Length: - "444" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:43 GMT + - Thu, 09 Oct 2025 09:38:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,29 +97,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1631d29-0c7b-4362-8987-b0a69a2b764d + - 5bb0458c-d6ff-4b5a-a6b5-c671086fe193 status: 200 OK code: 200 - duration: 94.646334ms + duration: 106.699034ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 207 + content_length: 156 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb","default_route_propagation_enabled":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-goofy-kowalevski","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 924 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.055723Z","zone":"fr-par-1"}' headers: Content-Length: - - "1085" + - "924" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:43 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31c75f51-6892-467a-b68a-1da2b6a8d921 + - d26797a9-1339-400d-bfcd-5772cea0a8bf status: 200 OK code: 200 - duration: 619.48125ms + duration: 804.25921ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 924 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.055723Z","zone":"fr-par-1"}' headers: Content-Length: - - "1085" + - "924" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:43 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +197,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc86cfe0-631e-4c75-bc9e-02f85964cc2e + - 2cceba13-8c0b-4153-ace1-b706a53bcd3c status: 200 OK code: 200 - duration: 98.963291ms + duration: 25.030655ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 207 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-nervous-cannon","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' + body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 924 + content_length: 1085 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:43.908394Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - - "924" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:43 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21bc9d30-a287-46cf-a41f-a8d4d7616fb2 + - d74fef43-9050-4aef-9fdd-96fdd365c6b2 status: 200 OK code: 200 - duration: 1.268984458s + duration: 620.081708ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 924 + content_length: 1085 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:43.908394Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - - "924" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:44 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f478b77d-30ff-40d5-b44e-a0ceed27eced + - e91b5559-4122-4db5-9efa-0099592a3432 status: 200 OK code: 200 - duration: 101.883792ms + duration: 20.47117ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 944 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:48.790493Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.262234Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "944" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6dfca59-a4ab-4338-be7d-b5dba026fd6e + - 66f59227-5cd0-4007-9a9a-09e12220143a status: 200 OK code: 200 - duration: 91.95725ms + duration: 31.884418ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 940 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:48.790493Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "940" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feaaa642-a524-4fa2-880e-b575f3a6b705 + - 34801939-2f2b-4ae8-99f8-66c0d64acb42 status: 200 OK code: 200 - duration: 29.034875ms + duration: 31.037799ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 940 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:48.790493Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "940" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e15209e9-76a2-40ac-9656-503b38a826a5 + - 3e8f3bd2-da4b-4496-b1be-62372b1ea8d0 status: 200 OK code: 200 - duration: 30.160959ms + duration: 25.019846ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e21dc695-181e-495f-9121-a141040e4fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 940 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:42.944858Z","custom_routes_propagation_enabled":true,"id":"e21dc695-181e-495f-9121-a141040e4fdb","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:09:42.944858Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "444" + - "940" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a87afc0-a174-445a-be2d-7662942cbef8 + - fc9657df-dcdb-4ad6-9ec7-e521a5476830 status: 200 OK code: 200 - duration: 84.824875ms + duration: 33.127601ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 444 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' headers: Content-Length: - - "1085" + - "444" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fca1544-bf6f-4068-bff1-aa9cac26c898 + - 7bfa02ea-56fe-4965-9a6c-819b9020cc6d status: 200 OK code: 200 - duration: 26.839208ms + duration: 90.929168ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 1085 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:48.790493Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - - "940" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b0f5446-67ec-437c-9de4-c4ee9d3a3c1f + - f6db2c8a-6543-4c47-b357-73ae621eff07 status: 200 OK code: 200 - duration: 38.366875ms + duration: 248.792858ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e21dc695-181e-495f-9121-a141040e4fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 method: GET response: proto: HTTP/2.0 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:42.944858Z","custom_routes_propagation_enabled":true,"id":"e21dc695-181e-495f-9121-a141040e4fdb","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:09:42.944858Z"}' + body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' headers: Content-Length: - "444" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f34e91f3-110b-4c32-835e-317cddfaf891 + - 3649dfed-f1d6-4e4f-ae01-a3ade7a0755f status: 200 OK code: 200 - duration: 93.406375ms + duration: 22.616076ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +659,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 940 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + headers: + Content-Length: + - "940" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 09 Oct 2025 09:38:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 09ee2d2c-9793-4532-94c7-4362112bdf39 + status: 200 OK + code: 200 + duration: 27.265578ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: GET response: proto: HTTP/2.0 @@ -670,7 +719,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - "1085" @@ -679,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:49 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,11 +738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acda21f2-bcbe-45b9-9610-42eaf00fe2b4 + - 6c2553f8-2d60-4246-92f3-1b7d3079d827 status: 200 OK code: 200 - duration: 97.417167ms - - id: 14 + duration: 94.133262ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -708,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -719,7 +768,7 @@ interactions: trailer: {} content_length: 940 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:48.790493Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "940" @@ -728,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,11 +787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54b662dd-a024-4616-af38-6b84194737ed + - 85570b91-0150-4dcd-bf68-8cc16ec93b58 status: 200 OK code: 200 - duration: 31.784292ms - - id: 15 + duration: 28.715121ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -757,7 +806,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -777,11 +826,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,13 +838,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b49ff47-6c1c-4078-afb0-4dd6b5c914b1 + - 9d38a164-7c6a-49a2-ac47-aa8ba58b375d X-Total-Count: - "75" status: 200 OK code: 200 - duration: 65.59075ms - - id: 16 + duration: 55.716564ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -810,7 +859,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -830,11 +879,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,13 +891,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 296927fe-1c7b-4575-bb99-40d5adf43431 + - 8621126d-3ced-41e8-960a-7462e8af23bc X-Total-Count: - "75" status: 200 OK code: 200 - duration: 42.70975ms - - id: 17 + duration: 61.635551ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -863,7 +912,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -883,9 +932,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,11 +942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 347da0d6-b766-4d0a-8870-264d56605b88 + - 07422e30-4af3-49c0-aaa1-c25b42589777 status: 200 OK code: 200 - duration: 45.19775ms - - id: 18 + duration: 44.775217ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -908,13 +957,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","enable_masquerade":true,"push_default_route":true}' + body: '{"gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","enable_masquerade":true,"push_default_route":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: @@ -925,7 +974,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"created","updated_at":"2025-09-30T09:09:50.463196Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}' headers: Content-Length: - "393" @@ -934,9 +983,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -944,11 +993,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f791e444-1805-4ad5-9013-c0e485913a36 + - eb6e3f18-543b-40b1-8a6f-477b00eeefc3 status: 200 OK code: 200 - duration: 417.139459ms - - id: 19 + duration: 337.515855ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -963,8 +1012,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -974,7 +1023,7 @@ interactions: trailer: {} content_length: 1337 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"created","updated_at":"2025-09-30T09:09:50.463196Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:50.562102Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:26.615313Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1337" @@ -983,9 +1032,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:50 GMT + - Thu, 09 Oct 2025 09:38:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,11 +1042,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b1a8cb1-006d-4183-9fe5-4bfb53ac4061 + - c101d15e-91ef-4da3-a56d-2b22da27fdbe status: 200 OK code: 200 - duration: 30.390334ms - - id: 20 + duration: 30.379796ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1014,7 +1063,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -1023,22 +1072,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1807 + content_length: 1721 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:50.877654+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1807" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:51 GMT + - Thu, 09 Oct 2025 09:38:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,11 +1095,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11699bf6-0ac7-415f-b638-f525cce25b77 + - d0929724-cb74-4f4a-a980-d7b685825562 status: 201 Created code: 201 - duration: 1.516025917s - - id: 21 + duration: 1.180285086s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1065,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -1074,20 +1123,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1807 + content_length: 1721 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:50.877654+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1807" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:51 GMT + - Thu, 09 Oct 2025 09:38:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,11 +1144,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4003e58f-8d4b-44cd-a25a-42356ca88461 + - 6afb51cd-a324-46e7-b5bd-7f45104090a4 status: 200 OK code: 200 - duration: 164.4415ms - - id: 22 + duration: 140.622702ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1114,8 +1163,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -1123,20 +1172,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1807 + content_length: 1721 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:50.877654+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1807" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:52 GMT + - Thu, 09 Oct 2025 09:38:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1144,11 +1193,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70724e39-8543-4662-bb39-aaa3e13d3a4a + - 2681b89e-48be-4f88-8f38-c1b095884c30 status: 200 OK code: 200 - duration: 174.763958ms - - id: 23 + duration: 166.835178ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1163,8 +1212,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -1174,7 +1223,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:51.046416Z","id":"cfffb764-911e-48c0-a31c-e9e7899109e0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:09:51.046416Z","id":"638c0913-7d16-4bd0-9e5e-82d5ae212229","product_resource_id":"f4444856-9348-4c43-abdd-259dab24d461","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:09:51.046416Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -1183,9 +1232,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:52 GMT + - Thu, 09 Oct 2025 09:38:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1193,11 +1242,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff0ffc9f-eccd-4c05-a98f-197baec07e0e + - 18cc962b-c948-4f49-a87a-d65137c0d2c8 status: 200 OK code: 200 - duration: 101.024375ms - - id: 24 + duration: 77.796464ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1214,8 +1263,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action method: POST response: proto: HTTP/2.0 @@ -1225,7 +1274,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f4444856-9348-4c43-abdd-259dab24d461/action","href_result":"/servers/f4444856-9348-4c43-abdd-259dab24d461","id":"4fcd20b3-90a5-4f40-a326-a3ae1380b7fa","progress":0,"started_at":"2025-09-30T09:09:52.463043+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action","href_result":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556","id":"4974e000-6f4a-4bff-9b62-5230d50b4401","progress":0,"started_at":"2025-10-09T09:38:28.212792+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1234,11 +1283,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:52 GMT + - Thu, 09 Oct 2025 09:38:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4fcd20b3-90a5-4f40-a326-a3ae1380b7fa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4974e000-6f4a-4bff-9b62-5230d50b4401 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,11 +1295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3020a58-6a38-4e9b-89b7-79a3a1894f8d + - 86f80321-f2e2-4034-a827-22eb6d4de756 status: 202 Accepted code: 202 - duration: 249.188625ms - - id: 25 + duration: 238.16914ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1265,8 +1314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -1274,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1743 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:52.270829+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:28.019483+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1829" + - "1743" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:52 GMT + - Thu, 09 Oct 2025 09:38:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,11 +1344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20822ee3-4462-4a48-b665-5c0a5b279072 + - 84d1504f-882e-4b53-97ee-cd5ae373d6ad status: 200 OK code: 200 - duration: 175.002333ms - - id: 26 + duration: 135.577686ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1314,8 +1363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -1325,7 +1374,7 @@ interactions: trailer: {} content_length: 1337 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"created","updated_at":"2025-09-30T09:09:50.463196Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:09:50.562102Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:26.615313Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1337" @@ -1334,9 +1383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:55 GMT + - Thu, 09 Oct 2025 09:38:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,11 +1393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97fd9dc0-1045-4d11-af6c-b1a5e0df3ff5 + - 09c9d903-8cb3-447c-9fc6-f51f279bb698 status: 200 OK code: 200 - duration: 37.247166ms - - id: 27 + duration: 33.6976ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1363,8 +1412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -1372,20 +1421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1923 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:55.695796+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:57 GMT + - Thu, 09 Oct 2025 09:38:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,11 +1442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08020a7e-2738-4f85-9fd3-2c1ad4ae1106 + - eacc6cb0-335d-4280-abf2-7fb96f4c7d5b status: 200 OK code: 200 - duration: 144.172833ms - - id: 28 + duration: 135.503114ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1412,8 +1461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: GET response: proto: HTTP/2.0 @@ -1423,7 +1472,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:56.686678Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - "1085" @@ -1432,9 +1481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:57 GMT + - Thu, 09 Oct 2025 09:38:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,11 +1491,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6afcdca-c911-4059-9e36-b04e6e4e618b + - 9e6183bd-74f1-447f-a187-7d919f0e1525 status: 200 OK code: 200 - duration: 104.878208ms - - id: 29 + duration: 100.401378ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1461,8 +1510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -1470,20 +1519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1877 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:55.695796+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:58 GMT + - Thu, 09 Oct 2025 09:38:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,11 +1540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bf07a33-202f-481d-a5b2-84ec13e82353 + - 64ad4af6-5e1b-43f8-93bb-22014aab7f1e status: 200 OK code: 200 - duration: 173.350084ms - - id: 30 + duration: 145.353315ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1506,14 +1555,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680"}' + body: '{"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics method: POST response: proto: HTTP/2.0 @@ -1523,7 +1572,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1532,9 +1581,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:59 GMT + - Thu, 09 Oct 2025 09:38:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f4eb062-a9ec-453b-b931-a5400270e74c + - 15f00bc7-bd24-4460-b38d-27a970612d02 status: 201 Created code: 201 - duration: 922.999542ms - - id: 31 + duration: 649.408163ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1561,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -1572,7 +1621,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1581,9 +1630,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:09:59 GMT + - Thu, 09 Oct 2025 09:38:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,11 +1640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05254de0-d7ec-49be-80a5-05e30350e135 + - 37e4fa7d-c906-412d-83c0-ef75fcd064f3 status: 200 OK code: 200 - duration: 104.891917ms - - id: 32 + duration: 89.825845ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1610,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -1621,7 +1670,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -1630,9 +1679,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:00 GMT + - Thu, 09 Oct 2025 09:38:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,11 +1689,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2366a5f0-9988-48e2-b09e-84b480ea1a2f + - 287e5133-4f9e-4b87-88eb-d826024be40c status: 200 OK code: 200 - duration: 33.979458ms - - id: 33 + duration: 27.582051ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1659,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -1670,7 +1719,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -1679,9 +1728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:00 GMT + - Thu, 09 Oct 2025 09:38:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,11 +1738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87aeb162-79b9-436e-8449-75fd58ae879f + - e0f315db-724b-46bb-b96a-5a5669f2775f status: 200 OK code: 200 - duration: 112.644875ms - - id: 34 + duration: 102.386952ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1708,8 +1757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -1719,7 +1768,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -1728,9 +1777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:00 GMT + - Thu, 09 Oct 2025 09:38:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,11 +1787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9178c9e1-c0c8-4b94-82b7-da94a789c9a7 + - 7f70c8f3-4104-4edb-8f71-07fe2be6cd13 status: 200 OK code: 200 - duration: 126.8665ms - - id: 35 + duration: 40.000378ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1757,8 +1806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -1768,7 +1817,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -1777,9 +1826,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:00 GMT + - Thu, 09 Oct 2025 09:38:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,11 +1836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a228f09-1e8b-46f3-a67c-858123109121 + - cce8a0c2-a8f7-4001-b68a-cc78455173ab status: 200 OK code: 200 - duration: 34.824834ms - - id: 36 + duration: 36.796783ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1806,8 +1855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=bca75e55-6509-4a5a-a370-0a4d277cc680&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=7ddc538f-75d0-4d98-9609-c77112b4f71b&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=dca404c5-2a25-4bb9-a605-6bfc61b56341&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5142f9e4-5aec-4fa3-a25d-e71be977b21f&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1815,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-09-30T09:09:50.409412Z","id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","mac_address":"02:00:00:1B:A8:9E","name":"tf-pn-nervous-cannon","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:50.878394Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-09T09:38:26.460879Z","id":"39ccdf29-6182-4229-bddf-df4fc90f1475","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","mac_address":"02:00:00:1F:08:70","name":"tf-pn-goofy-kowalevski","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:26.871168Z","zone":null}],"total_count":1}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:01 GMT + - Thu, 09 Oct 2025 09:38:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,11 +1885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2f0d73e-dc48-4802-a8bd-8b9a0c8ed9a9 + - 13d291a8-8ec3-4a7f-903b-927a2ec8b83b status: 200 OK code: 200 - duration: 165.219834ms - - id: 37 + duration: 52.934519ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1855,8 +1904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -1866,7 +1915,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1875,9 +1924,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:04 GMT + - Thu, 09 Oct 2025 09:38:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,11 +1934,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be3d85a0-ba7d-4cd5-b5e9-ffe4c27ca7a2 + - 2f65d1d1-491b-4f4d-90ee-5a382c898f97 status: 200 OK code: 200 - duration: 158.567042ms - - id: 38 + duration: 101.602444ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1904,8 +1953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -1915,7 +1964,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1924,9 +1973,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:09 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,11 +1983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07c14ec9-d3d8-4100-8181-646f6eeb6226 + - 71d630e1-07c2-4a37-87a3-01b9fbad35bf status: 200 OK code: 200 - duration: 113.868084ms - - id: 39 + duration: 102.251091ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1953,8 +2002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -1964,7 +2013,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1973,9 +2022,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:14 GMT + - Thu, 09 Oct 2025 09:38:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,11 +2032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd149de3-65d0-4c64-9b0d-e6456dd9c2f6 + - ca1f1d31-8bba-4082-b1fa-e99ae73b407d status: 200 OK code: 200 - duration: 126.709417ms - - id: 40 + duration: 105.743567ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2002,8 +2051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -2013,7 +2062,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2022,9 +2071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:19 GMT + - Thu, 09 Oct 2025 09:38:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,11 +2081,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2490e06b-857e-4273-aa06-79f626a24c68 + - d939d0ad-4f09-43bd-a499-6043e554767b status: 200 OK code: 200 - duration: 130.377958ms - - id: 41 + duration: 109.723804ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2051,8 +2100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -2062,7 +2111,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2071,9 +2120,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:24 GMT + - Thu, 09 Oct 2025 09:39:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,11 +2130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 827685ea-8f63-4ca1-9a70-91bbb587b0da + - d0e3b7b0-febb-47e7-8211-62f822d5f40f status: 200 OK code: 200 - duration: 101.366375ms - - id: 42 + duration: 102.853285ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2100,8 +2149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -2111,7 +2160,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:09:58.384793+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2120,9 +2169,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:29 GMT + - Thu, 09 Oct 2025 09:39:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2130,11 +2179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d320e20-8ed4-4927-9290-d4d0b9fda8ad + - 1136d9c5-0da3-4763-952a-9699f797c635 status: 200 OK code: 200 - duration: 112.817083ms - - id: 43 + duration: 100.368809ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2149,8 +2198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2209,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2169,9 +2218,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:34 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2179,11 +2228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 021092fd-3fdf-480a-b1b1-c25bca86cdea + - c8d7fd85-4f74-4de4-b568-b7f07a19e0fc status: 200 OK code: 200 - duration: 97.206333ms - - id: 44 + duration: 94.697648ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2198,8 +2247,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -2209,7 +2258,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2218,9 +2267,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2228,11 +2277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab5f4912-d077-4a32-8307-6af3b8cffe4f + - e9f18b9b-7111-4f66-b357-9d2cf8f27384 status: 200 OK code: 200 - duration: 99.672834ms - - id: 45 + duration: 98.118164ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2247,8 +2296,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -2256,20 +2305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2422 + content_length: 2335 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:55.695796+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2422" + - "2335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2277,11 +2326,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6171c869-4adf-41e3-97d1-3b11245eeeae + - 4d9faa19-ebfb-4596-b122-83233bf0855b status: 200 OK code: 200 - duration: 171.138459ms - - id: 46 + duration: 159.019532ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2296,8 +2345,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -2307,7 +2356,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cfffb764-911e-48c0-a31c-e9e7899109e0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' headers: Content-Length: - "143" @@ -2316,9 +2365,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2326,11 +2375,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f12613d-950c-43a9-b1b5-9bf3881d489b + - eb98a0ab-420e-4f7e-8a2b-120de976d3d0 status: 404 Not Found code: 404 - duration: 57.714333ms - - id: 47 + duration: 29.88203ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2345,8 +2394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -2356,7 +2405,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:51.046416Z","id":"cfffb764-911e-48c0-a31c-e9e7899109e0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:09:51.046416Z","id":"638c0913-7d16-4bd0-9e5e-82d5ae212229","product_resource_id":"f4444856-9348-4c43-abdd-259dab24d461","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:09:51.046416Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -2365,9 +2414,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2375,11 +2424,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a5f8919-a8b2-419c-aaf1-4a9cf6756d06 + - de503339-20f9-44fc-a43b-26ba56e174f6 status: 200 OK code: 200 - duration: 119.258209ms - - id: 48 + duration: 97.584286ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2394,8 +2443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/user_data method: GET response: proto: HTTP/2.0 @@ -2414,9 +2463,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2424,11 +2473,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72064c73-f87c-4b15-8e00-ab8fe0f1a164 + - b08d2828-4bb7-410f-9ba0-c166e6f63c10 status: 200 OK code: 200 - duration: 115.960916ms - - id: 49 + duration: 126.268326ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2443,8 +2492,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics method: GET response: proto: HTTP/2.0 @@ -2454,7 +2503,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2463,11 +2512,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2475,13 +2524,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd519c4c-ff6c-4661-a19b-500da01c00de + - 15328e97-6df7-4ac8-bfd9-a07b5c994e72 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 109.54ms - - id: 50 + duration: 91.595828ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2496,8 +2545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a20ff46a-2cee-4eb5-88d6-a4e97b842dfe&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=978dd5ff-83a6-4398-98fc-29266e967470&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2507,7 +2556,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:f5ff:c5bb:8c53:54e4:3e6b/64","created_at":"2025-09-30T09:09:58.689204Z","id":"ed6db8b5-fd3e-4194-873e-a97b0c62d4da","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d"},"tags":[],"updated_at":"2025-09-30T09:09:58.689204Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-09-30T09:09:58.529873Z","id":"c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:58.529873Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:5eac:b62a:6c0f:6a84:d4cd/64","created_at":"2025-10-09T09:38:34.265666Z","id":"fabe9cff-e6a5-4f50-8eee-af834cd66bf0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fca3782d-72d8-4a57-8793-517b5ce8af07"},"tags":[],"updated_at":"2025-10-09T09:38:34.265666Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":2}' headers: Content-Length: - "1064" @@ -2516,9 +2565,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2526,11 +2575,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f5c523-2001-488a-8290-1922656f0648 + - c94400b7-1766-492b-924b-9d1bc8e76d0a status: 200 OK code: 200 - duration: 83.948625ms - - id: 51 + duration: 26.134573ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2545,8 +2594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A18%3A17&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2556,7 +2605,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-09-30T09:09:58.529873Z","id":"c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:58.529873Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -2565,9 +2614,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2575,11 +2624,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ab48ca6-ebd3-453e-a585-a9e530cb4157 + - e1b4e017-7393-4c44-a283-c431689fe2f4 status: 200 OK code: 200 - duration: 87.308833ms - - id: 52 + duration: 85.762128ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2594,8 +2643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -2605,7 +2654,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -2614,9 +2663,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2624,11 +2673,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e5c82e-2416-4f80-9eb7-f6d4ead7b024 + - b7191d1e-86c4-44f3-90bf-03639c48dc3d status: 200 OK code: 200 - duration: 48.716208ms - - id: 53 + duration: 27.031089ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2643,8 +2692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -2654,7 +2703,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -2663,9 +2712,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:35 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2673,11 +2722,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef72bf71-c175-4502-9cb9-cf16cfa43c8f + - 6aeacd61-4fd5-419f-8ad4-3e26f416fd29 status: 200 OK code: 200 - duration: 37.057542ms - - id: 54 + duration: 26.605673ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2688,13 +2737,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' + body: '{"gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules method: POST response: @@ -2705,7 +2754,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2714,9 +2763,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,11 +2773,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e7acffa-4774-49d6-b25a-c90a13de104c + - 3bbd9e42-ad16-4e2d-bf0e-5f0f54afe2b3 status: 200 OK code: 200 - duration: 99.929292ms - - id: 55 + duration: 82.135734ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2743,8 +2792,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -2754,7 +2803,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -2763,9 +2812,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,11 +2822,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9b2071a-84e2-4c35-8258-df0754850f82 + - cefe79fb-d017-49dc-b8a4-dc76544a6629 status: 200 OK code: 200 - duration: 27.117708ms - - id: 56 + duration: 33.627585ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2792,8 +2841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -2803,7 +2852,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2812,9 +2861,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2822,11 +2871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e212f55f-6abf-422a-ab00-885850da81c8 + - c09f86c8-b47c-4e1b-a58d-d6b0257130d1 status: 200 OK code: 200 - duration: 32.299542ms - - id: 57 + duration: 28.583921ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2841,8 +2890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -2852,7 +2901,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2861,9 +2910,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2871,11 +2920,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e2df8f-dbd1-4c0f-b0b6-9b5bd30cd1d0 + - e328a301-49a5-443f-906f-b51d7ab7a9f9 status: 200 OK code: 200 - duration: 34.355625ms - - id: 58 + duration: 23.417651ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2890,8 +2939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -2901,7 +2950,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2910,9 +2959,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2920,11 +2969,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eab3a844-0e3e-4864-911b-f6e04c12235e + - 88790dc1-701d-408a-9165-4700962c0275 status: 200 OK code: 200 - duration: 25.816416ms - - id: 59 + duration: 22.922977ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2939,8 +2988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -2950,7 +2999,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2959,9 +3008,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2969,11 +3018,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbf9e48-c717-4d4b-8fa3-432e12b546dc + - ec83d7ce-a3a4-43ca-9e34-2271c9758649 status: 200 OK code: 200 - duration: 28.776917ms - - id: 60 + duration: 32.291486ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2988,8 +3037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A18%3A17&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2999,7 +3048,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-09-30T09:09:58.529873Z","id":"c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:58.529873Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -3008,9 +3057,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3018,11 +3067,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d54ffd12-b1ed-42fd-8ad1-d98c4a7dbbd9 + - 8882002c-60fc-479a-8595-5af4ba622a60 status: 200 OK code: 200 - duration: 96.65025ms - - id: 61 + duration: 87.659974ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3037,8 +3086,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3048,7 +3097,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3057,9 +3106,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3067,11 +3116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a1a2db6-c51d-4f50-9be5-71782971fcd4 + - c7915e22-fbe8-4b54-91bf-dcca8576192b status: 200 OK code: 200 - duration: 22.635541ms - - id: 62 + duration: 25.019146ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3086,8 +3135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3097,7 +3146,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3106,9 +3155,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3116,11 +3165,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ebdee1-b476-4c7a-8a69-320612d674f2 + - e042fef0-ab37-47b2-8480-a9623bda32f6 status: 200 OK code: 200 - duration: 25.7665ms - - id: 63 + duration: 19.519021ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3135,8 +3184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -3146,7 +3195,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -3155,9 +3204,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3165,11 +3214,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 978f5bd6-049c-41dc-b4e7-306faa27785e + - bd377e3d-4b48-48de-9bb5-b5bd1d67d2ce status: 200 OK code: 200 - duration: 32.687375ms - - id: 64 + duration: 26.612686ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,8 +3233,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e21dc695-181e-495f-9121-a141040e4fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 method: GET response: proto: HTTP/2.0 @@ -3195,7 +3244,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:42.944858Z","custom_routes_propagation_enabled":true,"id":"e21dc695-181e-495f-9121-a141040e4fdb","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-09-30T09:09:42.944858Z"}' + body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' headers: Content-Length: - "444" @@ -3204,9 +3253,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3214,11 +3263,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2e1b50e-5f82-4549-a98f-528685a57e28 + - 3febe2cf-f395-446b-a186-b93a6d6c86b1 status: 200 OK code: 200 - duration: 93.703125ms - - id: 65 + duration: 102.285074ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3233,8 +3282,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: GET response: proto: HTTP/2.0 @@ -3244,7 +3293,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:43.183349Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bca75e55-6509-4a5a-a370-0a4d277cc680","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-09-30T09:09:43.183349Z","id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"},{"created_at":"2025-09-30T09:09:43.183349Z","id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f5ff::/64","updated_at":"2025-09-30T09:09:43.183349Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}],"tags":[],"updated_at":"2025-09-30T09:09:56.686678Z","vpc_id":"e21dc695-181e-495f-9121-a141040e4fdb"}' + body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:33.628467Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' headers: Content-Length: - "1085" @@ -3253,9 +3302,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3263,11 +3312,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4032457d-da2e-4559-9daa-288858d476e7 + - 8816b904-b6d9-4805-83df-c59bf79d0bac status: 200 OK code: 200 - duration: 85.562542ms - - id: 66 + duration: 27.456324ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3282,8 +3331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -3293,7 +3342,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -3302,9 +3351,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3312,11 +3361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c354298f-d691-4635-8abe-9c6a39de0603 + - 7f8cc1f9-5947-4601-8815-a97d2a36df98 status: 200 OK code: 200 - duration: 55.417583ms - - id: 67 + duration: 43.539478ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3331,8 +3380,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -3342,7 +3391,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -3351,9 +3400,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:36 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3361,11 +3410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f89cabf-00c8-4790-b121-69ee76a16c80 + - 7c33f71c-bcdc-4ac1-b79e-db750381595b status: 200 OK code: 200 - duration: 38.252291ms - - id: 68 + duration: 26.926602ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3380,8 +3429,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=bca75e55-6509-4a5a-a370-0a4d277cc680&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=7ddc538f-75d0-4d98-9609-c77112b4f71b&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=dca404c5-2a25-4bb9-a605-6bfc61b56341&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5142f9e4-5aec-4fa3-a25d-e71be977b21f&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3389,20 +3438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 533 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-09-30T09:09:50.409412Z","id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","mac_address":"02:00:00:1B:A8:9E","name":"tf-pn-nervous-cannon","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:50.878394Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-09T09:38:26.460879Z","id":"39ccdf29-6182-4229-bddf-df4fc90f1475","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","mac_address":"02:00:00:1F:08:70","name":"tf-pn-goofy-kowalevski","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:26.871168Z","zone":null}],"total_count":1}' headers: Content-Length: - - "533" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3410,11 +3459,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba3e5fb4-f791-41ea-890f-c1a6f20ccf62 + - ec70ba82-2f6c-4743-9ab9-48e20aeb9765 status: 200 OK code: 200 - duration: 49.73725ms - - id: 69 + duration: 55.489394ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3429,8 +3478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -3438,20 +3487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2422 + content_length: 2335 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:55.695796+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2422" + - "2335" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3459,11 +3508,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0a7e9e9-0360-4e3a-8f6f-3e7023dda56c + - 76a2decb-b952-4aad-9058-840c1ae33ce1 status: 200 OK code: 200 - duration: 182.893167ms - - id: 70 + duration: 166.558992ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3478,8 +3527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -3489,7 +3538,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cfffb764-911e-48c0-a31c-e9e7899109e0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' headers: Content-Length: - "143" @@ -3498,9 +3547,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3508,11 +3557,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8c4da02-bf35-40c4-8905-70b23771de55 + - 6b6be45a-19c1-4ed1-8e2e-e9fce28a9198 status: 404 Not Found code: 404 - duration: 44.106125ms - - id: 71 + duration: 34.246921ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3527,8 +3576,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -3538,7 +3587,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:51.046416Z","id":"cfffb764-911e-48c0-a31c-e9e7899109e0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:09:51.046416Z","id":"638c0913-7d16-4bd0-9e5e-82d5ae212229","product_resource_id":"f4444856-9348-4c43-abdd-259dab24d461","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:09:51.046416Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -3547,9 +3596,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3557,11 +3606,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba97f98-38aa-4fc9-8094-6b609ed9465e + - 89b8281c-24cf-4c91-9225-f5cf7a9eb6cb status: 200 OK code: 200 - duration: 73.283875ms - - id: 72 + duration: 110.92627ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3576,8 +3625,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/user_data method: GET response: proto: HTTP/2.0 @@ -3596,9 +3645,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3606,11 +3655,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ee58767-df4e-4bc8-bb77-f008b6f071b9 + - 0c34d3b7-d3ce-4fa0-892d-b016d165a282 status: 200 OK code: 200 - duration: 105.096042ms - - id: 73 + duration: 122.447744ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3625,8 +3674,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics method: GET response: proto: HTTP/2.0 @@ -3636,7 +3685,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3645,11 +3694,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3657,13 +3706,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aebce179-a9a0-4cd4-afde-c7ce8b4fbdac + - 8aedbb1c-24a8-402f-b2c8-20a67a5bb54b X-Total-Count: - "1" status: 200 OK code: 200 - duration: 110.98375ms - - id: 74 + duration: 114.159045ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3678,8 +3727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a20ff46a-2cee-4eb5-88d6-a4e97b842dfe&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=978dd5ff-83a6-4398-98fc-29266e967470&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3689,7 +3738,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:f5ff:c5bb:8c53:54e4:3e6b/64","created_at":"2025-09-30T09:09:58.689204Z","id":"ed6db8b5-fd3e-4194-873e-a97b0c62d4da","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"0a670496-43bb-4bc2-8d27-d11f2031ca2d"},"tags":[],"updated_at":"2025-09-30T09:09:58.689204Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-09-30T09:09:58.529873Z","id":"c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:58.529873Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:5eac:b62a:6c0f:6a84:d4cd/64","created_at":"2025-10-09T09:38:34.265666Z","id":"fabe9cff-e6a5-4f50-8eee-af834cd66bf0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fca3782d-72d8-4a57-8793-517b5ce8af07"},"tags":[],"updated_at":"2025-10-09T09:38:34.265666Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":2}' headers: Content-Length: - "1064" @@ -3698,9 +3747,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3708,11 +3757,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54908859-e044-42bd-85b0-2dda971cef5d + - 36426b17-5ee1-432a-8917-635e9b3ad1f9 status: 200 OK code: 200 - duration: 132.016666ms - - id: 75 + duration: 94.313654ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3727,8 +3776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A18%3A17&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3738,7 +3787,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-09-30T09:09:58.529873Z","id":"c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","mac_address":"02:00:00:1B:18:17","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"34a7bff9-4e64-407d-a5fd-2dfd09cef5a3"},"tags":[],"updated_at":"2025-09-30T09:09:58.529873Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -3747,9 +3796,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3757,11 +3806,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad9e932d-84dc-4eb0-8cc2-a5db5974cb50 + - 5c9779fe-617a-4e81-b3cf-4f6c98252e6f status: 200 OK code: 200 - duration: 104.378416ms - - id: 76 + duration: 95.32757ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3776,8 +3825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3787,7 +3836,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3796,9 +3845,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3806,11 +3855,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7feb194-9c28-4bb1-bd96-3888220ec99f + - 4be1084b-9385-4a24-b0b2-e93e959a8bff status: 200 OK code: 200 - duration: 69.573042ms - - id: 77 + duration: 25.892298ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3825,8 +3874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3836,7 +3885,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3845,9 +3894,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3855,11 +3904,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24a50b7f-c4dc-4b79-88b2-c66e6a167cd9 + - bdfed457-6eb7-4e2a-a5f5-64cc9cf30c0b status: 200 OK code: 200 - duration: 32.161834ms - - id: 78 + duration: 23.887429ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3874,8 +3923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3885,7 +3934,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3894,9 +3943,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:37 GMT + - Thu, 09 Oct 2025 09:39:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3904,11 +3953,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca0e603c-9967-4252-b069-158f9e062e51 + - 93d41201-9cbd-41d3-be67-14c9d04e9d42 status: 200 OK code: 200 - duration: 23.892125ms - - id: 79 + duration: 25.30501ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3923,8 +3972,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: GET response: proto: HTTP/2.0 @@ -3934,7 +3983,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-09-30T09:10:36.005524Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"c0f8c858-cb9d-4832-a840-33febaa664ed","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-09-30T09:10:36.005524Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3943,9 +3992,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3953,11 +4002,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bc6e0ca-cd7b-4562-9fb1-60afac9a0dcd + - 504b1ac3-480d-4d53-867f-f1fe8f84d0ab status: 200 OK code: 200 - duration: 27.442584ms - - id: 80 + duration: 22.739812ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3972,8 +4021,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -3983,7 +4032,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -3992,9 +4041,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4002,11 +4051,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 778e536b-3a34-464d-93af-85fe8638808d + - dc61d264-5046-4cbd-8e7d-f8202472fab8 status: 200 OK code: 200 - duration: 39.643916ms - - id: 81 + duration: 33.340405ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4021,8 +4070,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c0f8c858-cb9d-4832-a840-33febaa664ed + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc method: DELETE response: proto: HTTP/2.0 @@ -4039,9 +4088,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4049,11 +4098,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a25b42-bb7b-4fe3-98e0-2564e54e4a5f + - 5b3fd6e4-ad60-4b0c-9034-4e5cdedf8316 status: 204 No Content code: 204 - duration: 57.425875ms - - id: 82 + duration: 49.137875ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4068,8 +4117,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -4079,7 +4128,7 @@ interactions: trailer: {} content_length: 1366 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - "1366" @@ -4088,9 +4137,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4098,11 +4147,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f738cce-8c8f-44f5-8fbe-7fe4490d1d04 + - 65167c32-6218-43ee-bfca-b2ce71d4b87a status: 200 OK code: 200 - duration: 29.534083ms - - id: 83 + duration: 24.340185ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4117,8 +4166,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -4128,7 +4177,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"ready","updated_at":"2025-09-30T09:10:00.410132Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -4137,9 +4186,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4147,11 +4196,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86edd6a0-f614-40c7-ad46-649ef03b0386 + - 6cf6a7be-d3ed-45d8-ba4e-2c7ca7ae10d5 status: 200 OK code: 200 - duration: 44.54975ms - - id: 84 + duration: 43.914618ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4166,8 +4215,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics method: GET response: proto: HTTP/2.0 @@ -4175,20 +4224,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:09:55.695796+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2336" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4196,11 +4247,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e0c1906-5e72-47c3-b864-06100a28bca5 + - 00041ba8-bf8f-468b-b4b7-f19c70c96788 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 140.725708ms - - id: 85 + duration: 96.509838ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4215,8 +4268,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: DELETE response: proto: HTTP/2.0 @@ -4226,7 +4279,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"detaching","updated_at":"2025-09-30T09:10:38.341786Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"detaching","updated_at":"2025-10-09T09:39:13.354155Z","zone":"fr-par-1"}' headers: Content-Length: - "430" @@ -4235,9 +4288,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4245,11 +4298,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f27a025f-f7fc-45d1-8efe-62ab0964256b + - 4fd37b76-120c-4866-8aaa-9f2c74b3ecc5 status: 200 OK code: 200 - duration: 150.889792ms - - id: 86 + duration: 62.053245ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4264,8 +4317,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -4273,20 +4326,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 430 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:51.046416Z","id":"cfffb764-911e-48c0-a31c-e9e7899109e0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-09-30T09:09:51.046416Z","id":"638c0913-7d16-4bd0-9e5e-82d5ae212229","product_resource_id":"f4444856-9348-4c43-abdd-259dab24d461","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:09:51.046416Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"detaching","updated_at":"2025-10-09T09:39:13.354155Z","zone":"fr-par-1"}' headers: Content-Length: - - "692" + - "430" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4294,11 +4347,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e6b9850-d505-40aa-9c2e-a55595bfceec + - 990af112-6900-49e1-988c-a0c94a51df3e status: 200 OK code: 200 - duration: 86.295375ms - - id: 87 + duration: 43.30063ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4313,8 +4366,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -4322,20 +4375,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:50.463196Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","ipam_ip_id":"6526ef09-73f9-41c1-8f0d-3bb9960faf3f","mac_address":"02:00:00:1B:A8:9E","masquerade_enabled":true,"private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","push_default_route":true,"status":"detaching","updated_at":"2025-09-30T09:10:38.341786Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "430" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT + - Thu, 09 Oct 2025 09:39:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4343,52 +4396,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6feaa6c1-5df2-42ad-a2db-8cdcbc143e0a + - 902908c4-80fd-4670-93aa-e77948d8e26d status: 200 OK code: 200 - duration: 43.325334ms - - id: 88 + duration: 128.476133ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 0 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/f4444856-9348-4c43-abdd-259dab24d461/action","href_result":"/servers/f4444856-9348-4c43-abdd-259dab24d461","id":"dd1c150f-fe82-4f6d-9d23-c32967366381","progress":0,"started_at":"2025-09-30T09:10:38.580358+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dd1c150f-fe82-4f6d-9d23-c32967366381 + - Thu, 09 Oct 2025 09:39:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4396,59 +4443,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42fe384a-5430-404a-ac2b-06444389299d - status: 202 Accepted - code: 202 - duration: 210.458709ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2382 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:10:38.415190+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2382" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:38 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e64e284e-d7e1-4954-bdc9-4977e5d4bd18 - status: 200 OK - code: 200 - duration: 149.707041ms + - a44bdd61-a8bb-4db5-9575-7d49bf4fcd92 + status: 204 No Content + code: 204 + duration: 586.931365ms - id: 90 request: proto: HTTP/1.1 @@ -4464,8 +4462,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/7ddc538f-75d0-4d98-9609-c77112b4f71b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 method: GET response: proto: HTTP/2.0 @@ -4473,20 +4471,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"7ddc538f-75d0-4d98-9609-c77112b4f71b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"978dd5ff-83a6-4398-98fc-29266e967470","type":"not_found"}' headers: Content-Length: - - "136" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:43 GMT + - Thu, 09 Oct 2025 09:39:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4494,10 +4492,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24e92d0d-e920-4e56-9e92-f6e4cf9c5992 + - 54daf1bf-b2d7-45c0-ad7f-47f15cd37967 status: 404 Not Found code: 404 - duration: 21.866167ms + duration: 95.979022ms - id: 91 request: proto: HTTP/1.1 @@ -4513,8 +4511,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -4522,20 +4520,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 1877 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:00.559744Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "940" + - "1877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:43 GMT + - Thu, 09 Oct 2025 09:39:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4543,48 +4541,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b3a5c7e-6ee8-4191-8dc0-c73b01a5589f + - 662d6acf-cda2-4fe2-96eb-610dd791d7c9 status: 200 OK code: 200 - duration: 31.216291ms + duration: 142.273979ms - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec?delete_ip=false - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 941 + content_length: 353 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-09-30T09:09:43.908394Z","gateway_networks":[],"id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","ipv4":{"address":"163.172.159.31","created_at":"2025-09-30T09:09:43.879016Z","gateway_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","id":"7808f19c-59c3-4723-af73-2d2439a1dfe9","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"31-159-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-09-30T09:09:43.879016Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nervous-cannon","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-09-30T09:10:43.502771Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action","href_result":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556","id":"7c2413c5-7c81-4ce9-8397-4456494f62c5","progress":0,"started_at":"2025-10-09T09:39:14.560094+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "941" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:43 GMT + - Thu, 09 Oct 2025 09:39:14 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7c2413c5-7c81-4ce9-8397-4456494f62c5 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4592,10 +4594,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f17312ff-eb28-4884-bc6a-d4f454430517 - status: 200 OK - code: 200 - duration: 65.586459ms + - 90233cba-f4c3-4ba1-a38b-d538ffefb24d + status: 202 Accepted + code: 202 + duration: 267.519748ms - id: 93 request: proto: HTTP/1.1 @@ -4611,8 +4613,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/da9d3dd4-7011-4a26-8ad4-1fd6bead41ec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -4620,20 +4622,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 1840 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"da9d3dd4-7011-4a26-8ad4-1fd6bead41ec","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:39:14.338245+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "128" + - "1840" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:43 GMT + - Thu, 09 Oct 2025 09:39:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4641,10 +4643,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16b403a4-db0a-4ff8-9a91-de928232a360 - status: 404 Not Found - code: 404 - duration: 37.268959ms + - 916555d8-3c0d-4f3e-a55c-5efacde3fa4b + status: 200 OK + code: 200 + duration: 170.363344ms - id: 94 request: proto: HTTP/1.1 @@ -4660,8 +4662,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f method: GET response: proto: HTTP/2.0 @@ -4669,20 +4671,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2382 + content_length: 136 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:10:38.415190+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","type":"not_found"}' headers: Content-Length: - - "2382" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:43 GMT + - Thu, 09 Oct 2025 09:39:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4690,10 +4692,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f356c847-9a4c-4f37-8aba-0454940f5576 - status: 200 OK - code: 200 - duration: 192.398416ms + - 3473a14e-4ac7-4d72-ab0a-e4cf6781ff20 + status: 404 Not Found + code: 404 + duration: 26.131761ms - id: 95 request: proto: HTTP/1.1 @@ -4709,8 +4711,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -4718,20 +4720,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2382 + content_length: 940 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"48","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:10:38.415190+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "2382" + - "940" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:49 GMT + - Thu, 09 Oct 2025 09:39:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4739,10 +4741,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7d32a38-b161-4b48-a40e-02cd34d8ae7c + - 10cb229b-b0f0-42c1-b8f6-a538dbf1123c status: 200 OK code: 200 - duration: 175.690667ms + duration: 27.811371ms - id: 96 request: proto: HTTP/1.1 @@ -4758,29 +4760,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8?delete_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2179 + content_length: 941 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:10:53.329036+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:39:18.509554Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "2179" + - "941" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:54 GMT + - Thu, 09 Oct 2025 09:39:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4788,10 +4790,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c67a0b0-9aa5-468f-815b-6572fdfccfc3 + - 4e98ce2a-00e8-4391-83ac-36a8903ff16c status: 200 OK code: 200 - duration: 182.985375ms + duration: 52.368157ms - id: 97 request: proto: HTTP/1.1 @@ -4807,157 +4809,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 478 - uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "478" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c7b69f0-a112-4119-b8ec-7f7f165740c4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 120.139167ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-09-30T09:09:58.122487+00:00","id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","ipam_ip_ids":["c5149f7a-dc05-40ef-ac9b-e8afd1b4ab39","ed6db8b5-fd3e-4194-873e-a97b0c62d4da"],"mac_address":"02:00:00:1b:18:17","modification_date":"2025-09-30T09:10:32.285661+00:00","private_network_id":"bca75e55-6509-4a5a-a370-0a4d277cc680","server_id":"f4444856-9348-4c43-abdd-259dab24d461","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0964fa9c-4300-446f-9cce-eca587e52090 - status: 200 OK - code: 200 - duration: 109.196834ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b80d992c-a94a-464f-8942-5b372738f057 - status: 204 No Content - code: 204 - duration: 352.935708ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461/private_nics/a20ff46a-2cee-4eb5-88d6-a4e97b842dfe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 method: GET response: proto: HTTP/2.0 @@ -4965,20 +4818,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"a20ff46a-2cee-4eb5-88d6-a4e97b842dfe","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","type":"not_found"}' headers: Content-Length: - - "148" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:55 GMT + - Thu, 09 Oct 2025 09:39:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4986,107 +4839,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 100db641-15f0-4697-b3de-d72147208af9 + - 9ec9ee8f-8ace-4fa5-b9ee-1337cd575144 status: 404 Not Found code: 404 - duration: 117.186ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1807 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-09-30T09:09:50.877654+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"f4444856-9348-4c43-abdd-259dab24d461","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ca:fb:c3","maintenances":[],"modification_date":"2025-09-30T09:10:53.329036+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"cfffb764-911e-48c0-a31c-e9e7899109e0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1807" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:55 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 497bfeea-642d-425c-acfb-e4b56deec648 - status: 200 OK - code: 200 - duration: 158.86975ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 30 Sep 2025 09:10:55 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 091319c2-199e-4a4d-bb51-2233a50b35ef - status: 204 No Content - code: 204 - duration: 230.318416ms - - id: 103 + duration: 24.131941ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5101,8 +4858,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f4444856-9348-4c43-abdd-259dab24d461 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 method: GET response: proto: HTTP/2.0 @@ -5112,7 +4869,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f4444856-9348-4c43-abdd-259dab24d461","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","type":"not_found"}' headers: Content-Length: - "143" @@ -5121,9 +4878,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:55 GMT + - Thu, 09 Oct 2025 09:39:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5131,11 +4888,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed3dccfa-8cee-46ff-8147-568ccf3dc9f0 + - 0cabf631-ccb2-4e01-85e6-2ba0c3862c95 status: 404 Not Found code: 404 - duration: 54.7165ms - - id: 104 + duration: 48.431145ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5150,8 +4907,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -5161,7 +4918,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cfffb764-911e-48c0-a31c-e9e7899109e0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' headers: Content-Length: - "143" @@ -5170,9 +4927,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:55 GMT + - Thu, 09 Oct 2025 09:39:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5180,11 +4937,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5838f56-db2d-4b37-8e32-4fdadfb0778e + - 9124c84d-5fbb-4637-a4ec-d4720b192692 status: 404 Not Found code: 404 - duration: 33.796833ms - - id: 105 + duration: 31.119325ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5199,8 +4956,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: GET response: proto: HTTP/2.0 @@ -5210,7 +4967,7 @@ interactions: trailer: {} content_length: 485 uncompressed: false - body: '{"created_at":"2025-09-30T09:09:51.046416Z","id":"cfffb764-911e-48c0-a31c-e9e7899109e0","last_detached_at":"2025-09-30T09:10:55.468674Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T09:10:55.468674Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":"2025-10-09T09:39:16.703890Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:39:16.703890Z","zone":"fr-par-1"}' headers: Content-Length: - "485" @@ -5219,9 +4976,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:55 GMT + - Thu, 09 Oct 2025 09:39:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5229,11 +4986,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66d0df94-c342-45a0-9e46-b982142a65fa + - 6fb560eb-f0df-4d02-8da0-8c38839aeddc status: 200 OK code: 200 - duration: 104.744959ms - - id: 106 + duration: 77.155782ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5248,8 +5005,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/cfffb764-911e-48c0-a31c-e9e7899109e0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 method: DELETE response: proto: HTTP/2.0 @@ -5266,9 +5023,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:55 GMT + - Thu, 09 Oct 2025 09:39:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5276,11 +5033,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 151609f4-134e-4d56-9bd8-fc7e3be84d02 + - c9450438-0168-40ac-a548-530ee1b44155 status: 204 No Content code: 204 - duration: 174.6215ms - - id: 107 + duration: 185.14397ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5295,8 +5052,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bca75e55-6509-4a5a-a370-0a4d277cc680 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 method: DELETE response: proto: HTTP/2.0 @@ -5313,9 +5070,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:56 GMT + - Thu, 09 Oct 2025 09:39:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5323,11 +5080,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1fa7ac7-ab99-4a9e-bd92-9be63d14f67e + - d99bebff-8f14-4add-91e8-59896dd663ea status: 204 No Content code: 204 - duration: 1.192357541s - - id: 108 + duration: 1.266278312s + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5342,8 +5099,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e21dc695-181e-495f-9121-a141040e4fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 method: DELETE response: proto: HTTP/2.0 @@ -5360,9 +5117,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 09:10:57 GMT + - Thu, 09 Oct 2025 09:39:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5370,7 +5127,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b06f54a-6e1c-48f5-a692-9b05d04cc97a + - 47ae365a-3e8f-45d1-bdeb-0fc362afe3ca status: 204 No Content code: 204 - duration: 185.728291ms + duration: 211.85901ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml index 5b1d706a1..9e8e74716 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"My Private Network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null}' + body: '{"name":"My Private Network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1063 + content_length: 1087 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.494728Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","name":"My Private Network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.494728Z","id":"ac005d26-199e-48e8-b69e-4f301637fa17","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.16.0/22","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.494728Z","id":"eda23d37-cc52-4dbe-b99b-322552065db7","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:7ab::/64","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1063" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f93552d-8936-4d40-bb9b-85529955b7d0 + - 41c1614d-71c4-490e-a0e3-332166c66cbc status: 200 OK code: 200 - duration: 682.52714ms + duration: 837.322073ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/68cb8063-dff3-4a81-a418-d5c721c9a4fe - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1063 + content_length: 348 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.494728Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","name":"My Private Network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.494728Z","id":"ac005d26-199e-48e8-b69e-4f301637fa17","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.16.0/22","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.494728Z","id":"eda23d37-cc52-4dbe-b99b-322552065db7","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:7ab::/64","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' headers: Content-Length: - - "1063" + - "348" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a33fa25-10b5-455c-865e-571bf5a9925f + - a6141328-436c-47da-8dca-dd784d5c8098 status: 200 OK code: 200 - duration: 34.759101ms + duration: 889.962911ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b method: GET response: proto: HTTP/2.0 @@ -125,22 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38951 + content_length: 348 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' headers: Content-Length: - - "38951" + - "348" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT - Link: - - ; rel="next",; rel="last" + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,12 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f413813d-e5d6-490b-ba6e-ed8d5e701808 - X-Total-Count: - - "71" + - 649417fa-176c-4f0c-899c-14bcd23aaf54 status: 200 OK code: 200 - duration: 87.76565ms + duration: 33.275882ms - id: 3 request: proto: HTTP/1.1 @@ -169,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - 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.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 method: GET response: proto: HTTP/2.0 @@ -178,22 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 16732 + content_length: 1087 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}' + body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "16732" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,31 +197,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cc77d76-0e06-45ff-914c-b87791bd84e4 - X-Total-Count: - - "71" + - c89a3b49-6be1-42a2-8502-4505e78f56c2 status: 200 OK code: 200 - duration: 92.634117ms + duration: 215.060106ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 199 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","ip_id":"cf61f321-4670-4762-bd95-6e422e558f9b","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -233,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 342 + content_length: 920 uncompressed: false - body: '{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.407818Z","zone":"fr-par-1"}' headers: Content-Length: - - "342" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aa73583-c767-45b1-a772-8ef6ef784d67 + - 646a0f97-61c0-4f30-98db-357d5c8297dc status: 200 OK code: 200 - duration: 970.703277ms + duration: 159.180493ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -282,20 +276,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1275 + content_length: 39208 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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"],"id":"6465cef1-374a-451c-bc2d-e2d179625dad","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","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"],"id":"f7766058-79ab-416b-84ad-3939f110ce0c","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "1275" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Thu, 09 Oct 2025 09:38:04 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +299,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68e2762-b3d7-4edf-8971-e2ba1d570c6a + - 92807808-5156-418d-9f06-1f256763027b + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 85.30405ms + duration: 55.959383ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ccba0ea4-96c2-4361-a1e3-0008ab3c74e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -331,20 +329,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 342 + content_length: 19730 uncompressed: false - body: '{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "342" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Thu, 09 Oct 2025 09:38:04 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,50 +352,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea638eea-dc49-4397-8bfb-cb37c3eaa30f + - 4f00f32d-f827-405e-aa6f-841f885c47a7 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 41.743228ms + duration: 59.452833ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 199 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","ip_id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","enable_smtp":false,"enable_bastion":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 896 + content_length: 920 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.387469Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.407818Z","zone":"fr-par-1"}' headers: Content-Length: - - "896" + - "920" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c932adf2-b4e5-4676-83fd-72a043d5293a + - d30e0eba-9f68-4e60-8b73-2b3eb6a3c853 status: 200 OK code: 200 - duration: 144.514372ms + duration: 108.141193ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 914 + content_length: 1266 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.438034Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"8effba5f-dade-4804-8ddd-da973cb2cac2","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"942c58b9-89fb-48cc-be8b-126c9187794d","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "914" + - "1266" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Thu, 09 Oct 2025 09:38:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8965ac90-2ac4-456a-95a3-aca0b7ced5a4 + - 44928dfc-b8cf-4533-8422-3a7898a27127 status: 200 OK code: 200 - duration: 61.061717ms + duration: 63.325404ms - id: 9 request: proto: HTTP/1.1 @@ -467,13 +467,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6465cef1-374a-451c-bc2d-e2d179625dad","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"942c58b9-89fb-48cc-be8b-126c9187794d","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -482,22 +482,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1699 + content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:34.492106+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1699" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:35 GMT + - Thu, 09 Oct 2025 09:38:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6824d8d-5d9b-4330-bff6-8da840b75808 + - 9c022f7c-53d9-442a-b1ad-8d5dbb3d6f0f status: 201 Created code: 201 - duration: 921.409926ms + duration: 1.562194538s - id: 10 request: proto: HTTP/1.1 @@ -524,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -533,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1699 + content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:34.492106+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1699" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:35 GMT + - Thu, 09 Oct 2025 09:38:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a765afd9-6a9c-4d63-ac73-af20e744e9c8 + - 41b3d672-f9e0-4b1c-92d4-5753e98854b8 status: 200 OK code: 200 - duration: 134.354702ms + duration: 146.527894ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1699 + content_length: 1767 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:34.492106+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1699" + - "1767" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:35 GMT + - Thu, 09 Oct 2025 09:38:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a12dd4bd-13df-4996-b33e-2ff661d6a457 + - 1d4626b3-c1f9-41de-980a-f8528c255b09 status: 200 OK code: 200 - duration: 316.048856ms + duration: 170.694658ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 692 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:34.626502Z","id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:34.626502Z","id":"bc0b7db0-3e8a-4790-94cd-056502e9957d","product_resource_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:34.626502Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:35 GMT + - Thu, 09 Oct 2025 09:38:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30be48cc-9128-4895-a15b-88d64ec0ebb3 + - f95fb3fd-0efb-413f-b2aa-37e172d9576c status: 200 OK code: 200 - duration: 56.408683ms + duration: 101.187736ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +673,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action method: POST response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/action","href_result":"/servers/1076cf30-7810-48c5-a8b9-c2460ad13922","id":"cc7c06be-90d9-49f8-a21a-890f365aff8a","progress":0,"started_at":"2025-05-16T13:39:36.191510+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action","href_result":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f","id":"008f9d2d-8f53-4d91-922b-3aa148beaaaf","progress":0,"started_at":"2025-10-09T09:38:06.824707+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:36 GMT + - Thu, 09 Oct 2025 09:38:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cc7c06be-90d9-49f8-a21a-890f365aff8a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/008f9d2d-8f53-4d91-922b-3aa148beaaaf Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e75c785f-d7a7-4884-b492-a294d90bc55f + - d8ee6cab-88b1-4667-9956-254a17c26413 status: 202 Accepted code: 202 - duration: 516.321313ms + duration: 269.670404ms - id: 14 request: proto: HTTP/1.1 @@ -724,8 +724,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -733,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1743 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:35.774395+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:06.607401+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1721" + - "1743" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:36 GMT + - Thu, 09 Oct 2025 09:38:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04d84b0b-61a1-44fd-80ab-25dc5484d092 + - 8dc55b4b-f9c8-4663-99fa-91f36403ffb2 status: 200 OK code: 200 - duration: 194.75136ms + duration: 170.805396ms - id: 15 request: proto: HTTP/1.1 @@ -773,8 +773,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -782,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 911 + content_length: 940 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:37.202612Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.624056Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "911" + - "940" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Thu, 09 Oct 2025 09:38:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 315e64e3-dfed-4bcc-84f9-dc2bd661492a + - 06d4df80-aeeb-4d96-a534-8c375ad96423 status: 200 OK code: 200 - duration: 28.78953ms + duration: 34.508124ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +822,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -831,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 911 + content_length: 1878 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:37.202612Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "911" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Thu, 09 Oct 2025 09:38:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc17b3e9-4fee-4093-a675-a0b3e65a4024 + - af787ff1-8778-4990-91c9-e1d440c581b1 status: 200 OK code: 200 - duration: 30.865519ms + duration: 161.507524ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 911 + content_length: 1087 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:37.202612Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "911" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Thu, 09 Oct 2025 09:38:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,50 +901,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6665d8dd-de65-48b1-8193-87adf3a809bf + - 52be185f-097c-49a2-a22b-52678c3e4739 status: 200 OK code: 200 - duration: 74.232537ms + duration: 94.998428ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 165 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","enable_masquerade":true,"push_default_route":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 385 + content_length: 1878 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"created","updated_at":"2025-05-16T13:39:41.364723Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "385" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Thu, 09 Oct 2025 09:38:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,48 +950,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe22af35-3cc6-4233-a03e-e0206bb9297c + - 53c1d5fb-9eaa-4be3-ae38-a9b9b11ac777 status: 200 OK code: 200 - duration: 1.794433544s + duration: 139.613006ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1300 + content_length: 473 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"created","updated_at":"2025-05-16T13:39:41.364723Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:41.440638Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1300" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Thu, 09 Oct 2025 09:38:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22ba2c0d-039c-4858-909f-d58ade40b8a1 - status: 200 OK - code: 200 - duration: 284.128063ms + - 20c69c43-9933-42bb-9c83-5fa40a628f20 + status: 201 Created + code: 201 + duration: 749.386893ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:40.096572+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Thu, 09 Oct 2025 09:38:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b38468ec-afd2-4931-9e14-d05da1a21d3b + - 38af07b9-842f-4ca8-8aeb-b9db27701b4a status: 200 OK code: 200 - duration: 298.529647ms + duration: 117.21336ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/68cb8063-dff3-4a81-a418-d5c721c9a4fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1063 + content_length: 936 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.494728Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","name":"My Private Network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.494728Z","id":"ac005d26-199e-48e8-b69e-4f301637fa17","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.16.0/22","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.494728Z","id":"eda23d37-cc52-4dbe-b99b-322552065db7","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:7ab::/64","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1063" + - "936" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Thu, 09 Oct 2025 09:38:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bae9c942-78c0-4fee-ae69-2203daea00a4 + - 693216cd-6b47-452d-add5-293e49787bca status: 200 OK code: 200 - duration: 46.647527ms + duration: 27.906088ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 936 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:40.096572+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1856" + - "936" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:42 GMT + - Thu, 09 Oct 2025 09:38:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,50 +1148,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d041210-e3c7-4e64-9b75-fb9a3d4bd3fc + - 9c8f589d-77c0-4f70-869e-68de315c97a0 status: 200 OK code: 200 - duration: 234.711231ms + duration: 125.858659ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 936 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "936" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:43 GMT + - Thu, 09 Oct 2025 09:38:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,48 +1197,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ede037c-8bff-4df4-ac89-1ef4c3017b02 - status: 201 Created - code: 201 - duration: 1.417818065s + - 1d586b67-96ee-4ddf-82fb-b64de9164542 + status: 200 OK + code: 200 + duration: 23.522362ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 165 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","enable_masquerade":true,"push_default_route":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 394 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:43 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1e16920-874c-42f3-80ac-990b619af45d + - 3ac295b6-ddad-4a43-abea-d813e7047f20 status: 200 OK code: 200 - duration: 86.557089ms + duration: 304.704415ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1300 + content_length: 1334 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"created","updated_at":"2025-05-16T13:39:41.364723Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:41.440638Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1300" + - "1334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:46 GMT + - Thu, 09 Oct 2025 09:38:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c43516fc-59a8-4538-8cb7-e03d4a57acfd + - 41a7bd4c-f0bc-4365-ae8b-8a3609c5c22f status: 200 OK code: 200 - duration: 35.560729ms + duration: 34.280971ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:48 GMT + - Thu, 09 Oct 2025 09:38:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9779fa75-5eee-45f6-8b6b-57c207a9f59a + - 8316c8fb-7a64-48da-82ed-407007d9711f status: 200 OK code: 200 - duration: 55.090419ms + duration: 98.822355ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1374,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1334 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:53 GMT + - Thu, 09 Oct 2025 09:38:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70be26a6-f42f-4dfa-8034-8112cdace3e6 + - 21715389-3160-41f7-be3d-a32ce6375555 status: 200 OK code: 200 - duration: 324.97828ms + duration: 31.251795ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1423,20 +1423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 473 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1328" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Thu, 09 Oct 2025 09:38:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb43ad3e-d4af-4d14-a66c-10cdac4fe393 + - 518cb8d8-83b6-4403-b733-772a51cf81cc status: 200 OK code: 200 - duration: 30.512165ms + duration: 90.872759ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1472,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 1373 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"configuring","updated_at":"2025-10-09T09:38:20.534116Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "417" + - "1373" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Thu, 09 Oct 2025 09:38:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acbd434e-18ac-4cd5-862a-58db87305766 + - 553ae8bd-7267-49c7-b214-b5ef980752f7 status: 200 OK code: 200 - duration: 112.111179ms + duration: 21.924253ms - id: 30 request: proto: HTTP/1.1 @@ -1512,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1521,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "417" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Thu, 09 Oct 2025 09:38:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b131dbad-cd69-4956-b901-261399c03a70 + - f407397a-0261-4b43-9e54-9ca49b3c3762 status: 200 OK code: 200 - duration: 70.148321ms + duration: 125.421139ms - id: 31 request: proto: HTTP/1.1 @@ -1561,8 +1561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1570,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1328" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Thu, 09 Oct 2025 09:38:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52d0b88c-03a1-484f-aabd-751742dae5f5 + - c27e4983-5dd5-44a5-be49-dfc359222567 status: 200 OK code: 200 - duration: 96.721902ms + duration: 26.278617ms - id: 32 request: proto: HTTP/1.1 @@ -1610,8 +1610,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=68cb8063-dff3-4a81-a418-d5c721c9a4fe&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=585fbdc8-3e5e-4ede-a164-31f71a921f88&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 427 uncompressed: false - body: '{"ips":[{"address":"172.16.16.2/22","created_at":"2025-05-16T13:39:41.218651Z","id":"60897312-1119-4db1-83cc-c32469e26d7d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","mac_address":"02:00:00:10:5C:2C","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:41.732943Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' headers: Content-Length: - - "516" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Thu, 09 Oct 2025 09:38:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47901cfa-6037-4dbb-867d-316e005d8c25 + - d08c7bbf-c6d4-492f-aafd-d187e1b6e2a9 status: 200 OK code: 200 - duration: 54.671666ms + duration: 88.360205ms - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -1668,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 427 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Thu, 09 Oct 2025 09:38:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00643aec-83ad-4ff9-8311-9d0f4af68cb7 + - 7c70725d-203d-4375-859e-f029b67c9c8d status: 200 OK code: 200 - duration: 103.724086ms + duration: 41.369307ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1708,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1363 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:04 GMT + - Thu, 09 Oct 2025 09:38:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43756899-8a60-4af9-8f45-d7292f12d62c + - 856710d2-97d3-4c49-afcc-8eb1198c1ee0 status: 200 OK code: 200 - duration: 119.034489ms + duration: 38.084741ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=90a980aa-edeb-4450-b46d-8de066fa6ac3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=ceed7407-bdca-42ce-bfd0-0192c0b762be&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1766,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 531 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:39:42.220104+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.88.3/22","created_at":"2025-10-09T09:38:14.966645Z","id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","mac_address":"02:00:00:19:C5:6B","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:15.313004Z","zone":null}],"total_count":1}' headers: Content-Length: - - "473" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:09 GMT + - Thu, 09 Oct 2025 09:38:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25c881f9-1fc5-4bca-bee6-a18b40355c29 + - e82fef3f-157e-4b79-88a8-cba7ebc480e5 status: 200 OK code: 200 - duration: 464.231407ms + duration: 106.460407ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1815,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:14 GMT + - Thu, 09 Oct 2025 09:38:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 474c7c81-4c0f-456c-abf6-e0952c2191c4 + - 04ad78f9-6b53-4618-be44-8d3944d9e06e status: 200 OK code: 200 - duration: 225.019287ms + duration: 97.776677ms - id: 37 request: proto: HTTP/1.1 @@ -1855,8 +1855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1864,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:14 GMT + - Thu, 09 Oct 2025 09:38:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51409f75-a69e-426a-9e96-110d90660faf + - f9ee87c0-636b-4971-9cd7-a09b3399b8a4 status: 200 OK code: 200 - duration: 88.711441ms + duration: 107.662166ms - id: 38 request: proto: HTTP/1.1 @@ -1904,8 +1904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1913,20 +1913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 475 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:40.096572+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2314" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82d806fb-bbc2-44b0-9841-7f8191caefb0 + - eb54e3c8-c84b-44cf-8ef3-70ac2d4c6879 status: 200 OK code: 200 - duration: 327.125561ms + duration: 101.41532ms - id: 39 request: proto: HTTP/1.1 @@ -1953,8 +1953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -1962,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deebd138-dded-4851-809a-89ccbe6e13b8 - status: 404 Not Found - code: 404 - duration: 87.344748ms + - c0142351-d796-4360-b205-87930e38b94e + status: 200 OK + code: 200 + duration: 116.470186ms - id: 40 request: proto: HTTP/1.1 @@ -2002,8 +2002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -2011,20 +2011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 2336 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:34.626502Z","id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:34.626502Z","id":"bc0b7db0-3e8a-4790-94cd-056502e9957d","product_resource_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:34.626502Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "673" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42f71eaf-e056-4ed6-91bc-ccb1bd6be3c5 + - b9441ce0-8e69-4b6a-b9dd-fd63a0dea3dd status: 200 OK code: 200 - duration: 47.642651ms + duration: 156.832457ms - id: 41 request: proto: HTTP/1.1 @@ -2051,8 +2051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -2060,20 +2060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d1aa2a2-07a2-4387-a0c2-6dd65cd71ea0 - status: 200 OK - code: 200 - duration: 70.557304ms + - f08fce12-7413-48fb-9ed5-77859e87dcd3 + status: 404 Not Found + code: 404 + duration: 33.487902ms - id: 42 request: proto: HTTP/1.1 @@ -2100,8 +2100,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -2109,22 +2109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 692 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2132,12 +2130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2d32182-dc82-47dc-af21-d855326c3231 - X-Total-Count: - - "1" + - 67371868-4bc0-41d9-a1ab-74425f55f61c status: 200 OK code: 200 - duration: 65.135252ms + duration: 74.744579ms - id: 43 request: proto: HTTP/1.1 @@ -2153,8 +2149,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=6ab7f6b5-d1e8-4a2b-9296-9869b50a5245&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/user_data method: GET response: proto: HTTP/2.0 @@ -2162,20 +2158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1032 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:7ab:b9b:c725:5351:f614/64","created_at":"2025-05-16T13:39:42.886176Z","id":"e53e91e0-915f-4459-96f9-389f6d4cad6d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"eda23d37-cc52-4dbe-b99b-322552065db7"},"tags":[],"updated_at":"2025-05-16T13:39:42.886176Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1032" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e45597-630d-4784-bd25-cab766c7fb6f + - 502fc5f1-e94e-4b2b-8f31-874d7eec239f status: 200 OK code: 200 - duration: 32.941809ms + duration: 96.26414ms - id: 44 request: proto: HTTP/1.1 @@ -2202,8 +2198,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Acf%3A85&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics method: GET response: proto: HTTP/2.0 @@ -2211,20 +2207,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":1}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "516" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2230,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 057742c7-7103-4ab7-8ff7-55f0f4cfc5c9 + - e9ca1c22-fd93-4a81-a705-4655c4ea5e4d + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 49.831727ms + duration: 86.919326ms - id: 45 request: proto: HTTP/1.1 @@ -2251,8 +2251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a70736f4-f09a-4e74-bde7-1cad3a3efe58&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2260,20 +2260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 1061 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:efa:6bc8:31:7267:a4be/64","created_at":"2025-10-09T09:38:12.974887Z","id":"2f5631eb-533e-4901-bd02-76ce36486ceb","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f"},"tags":[],"updated_at":"2025-10-09T09:38:12.974887Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1328" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,10 +2281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b62164e5-8b74-4d4e-8d2b-4122e8314cbb + - 5fc42186-445d-43b5-8bf6-d1590bd7db3a status: 200 OK code: 200 - duration: 29.159516ms + duration: 121.184643ms - id: 46 request: proto: HTTP/1.1 @@ -2300,8 +2300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2309,20 +2309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 531 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1328" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,50 +2330,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12001a02-44e8-4bc3-bf42-655a26d44bf6 + - 745c2d9b-6196-4cb6-99c6-491529d4f1d6 status: 200 OK code: 200 - duration: 83.944593ms + duration: 88.857462ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 134 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","public_port":2023,"private_ip":"172.16.16.3","private_port":22,"protocol":"tcp"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 1363 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:15.822286Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"18662d30-b516-4f41-8233-44e3bf5606a8","private_ip":"172.16.16.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-05-16T13:40:15.822286Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "282" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff6242f2-9a2d-4a8a-93b0-5276c4b96fbc + - d14f5418-bd8f-4d15-b456-1c2fd8bca82c status: 200 OK code: 200 - duration: 144.209324ms + duration: 29.565915ms - id: 48 request: proto: HTTP/1.1 @@ -2400,8 +2398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -2409,20 +2407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1328" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,48 +2428,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d756f26d-89a2-4afb-9218-8a64e5944a16 + - 0953c0c8-e684-4bfa-8797-5dbb2ebe10ad status: 200 OK code: 200 - duration: 30.089779ms + duration: 27.246655ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 134 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","public_port":2023,"private_ip":"172.16.88.2","private_port":22,"protocol":"tcp"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/18662d30-b516-4f41-8233-44e3bf5606a8 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 290 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:15.822286Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"18662d30-b516-4f41-8233-44e3bf5606a8","private_ip":"172.16.16.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-05-16T13:40:15.822286Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' headers: Content-Length: - - "282" + - "290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79e0e8e3-5bd3-4bd6-92a6-63767a9a46a3 + - be2d1074-0083-43ec-9d80-165d9c3320fe status: 200 OK code: 200 - duration: 27.88856ms + duration: 87.106297ms - id: 50 request: proto: HTTP/1.1 @@ -2498,8 +2498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/18662d30-b516-4f41-8233-44e3bf5606a8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -2507,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 1363 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:15.822286Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"18662d30-b516-4f41-8233-44e3bf5606a8","private_ip":"172.16.16.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-05-16T13:40:15.822286Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "282" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6398d0cb-bae8-4982-86ab-4195c01cf375 + - 90ccb591-69b8-4122-83bd-0f6b0d453622 status: 200 OK code: 200 - duration: 24.786001ms + duration: 27.362792ms - id: 51 request: proto: HTTP/1.1 @@ -2547,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Acf%3A85&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 method: GET response: proto: HTTP/2.0 @@ -2556,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 290 uncompressed: false - body: '{"ips":[{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' headers: Content-Length: - - "516" + - "290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6da8310e-8476-475d-b39a-9c01fb39b463 + - 956f1b1e-a989-4102-982d-3d374761ed01 status: 200 OK code: 200 - duration: 51.620387ms + duration: 26.198956ms - id: 52 request: proto: HTTP/1.1 @@ -2596,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ccba0ea4-96c2-4361-a1e3-0008ab3c74e6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 290 uncompressed: false - body: '{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' headers: Content-Length: - - "394" + - "290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54f7f092-a787-4a41-b95b-830c4604610a + - 7f68e430-0ebf-4a61-9fef-f0e1f0c255ce status: 200 OK code: 200 - duration: 35.219167ms + duration: 26.085392ms - id: 53 request: proto: HTTP/1.1 @@ -2645,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/68cb8063-dff3-4a81-a418-d5c721c9a4fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2654,20 +2654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1063 + content_length: 531 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.494728Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","name":"My Private Network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.494728Z","id":"ac005d26-199e-48e8-b69e-4f301637fa17","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.16.0/22","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.494728Z","id":"eda23d37-cc52-4dbe-b99b-322552065db7","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:7ab::/64","updated_at":"2025-05-16T13:39:33.494728Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:47.983083Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1063" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05196673-ad04-4853-b4a9-848ab84e509c + - 0b662440-8cb9-45b6-9086-38f5959a6665 status: 200 OK code: 200 - duration: 43.691856ms + duration: 113.38127ms - id: 54 request: proto: HTTP/1.1 @@ -2694,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 method: GET response: proto: HTTP/2.0 @@ -2703,20 +2703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 1087 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:20.998953Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1328" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3c81fbf-93e7-4ab4-8ee4-2e75e881fe98 + - 125bacc5-06b2-49da-83a0-b4a9532671df status: 200 OK code: 200 - duration: 41.839725ms + duration: 37.473077ms - id: 55 request: proto: HTTP/1.1 @@ -2743,8 +2743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b method: GET response: proto: HTTP/2.0 @@ -2752,20 +2752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 401 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}' + body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' headers: Content-Length: - - "417" + - "401" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,10 +2773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05948d70-656c-45e1-94af-77f2ab212e94 + - 79667682-f242-4e30-a115-d394c75eac5c status: 200 OK code: 200 - duration: 83.069995ms + duration: 81.710198ms - id: 56 request: proto: HTTP/1.1 @@ -2792,8 +2792,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -2801,20 +2801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1328" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2822,10 +2822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cbf202a-36ff-4108-8ffa-af8996c0bc53 + - 6e348fb9-8ac0-4c81-a34a-ac0f92681d41 status: 200 OK code: 200 - duration: 28.72727ms + duration: 29.604686ms - id: 57 request: proto: HTTP/1.1 @@ -2841,8 +2841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -2850,20 +2850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 427 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:40.096572+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' headers: Content-Length: - - "2314" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2871,10 +2871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b34f9ef-3e9c-44d7-b7b1-d6fc737ef52d + - e1c7ff02-a396-441e-8fbc-3c2158019101 status: 200 OK code: 200 - duration: 202.198837ms + duration: 49.263755ms - id: 58 request: proto: HTTP/1.1 @@ -2890,8 +2890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -2899,20 +2899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1363 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","type":"not_found"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2920,10 +2920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f63ca9de-193e-4da6-b59b-871184d62145 - status: 404 Not Found - code: 404 - duration: 39.347513ms + - 02d202c8-d4f7-4bb0-9185-8a90ec2d5fee + status: 200 OK + code: 200 + duration: 27.722575ms - id: 59 request: proto: HTTP/1.1 @@ -2939,8 +2939,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=68cb8063-dff3-4a81-a418-d5c721c9a4fe&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=585fbdc8-3e5e-4ede-a164-31f71a921f88&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -2948,20 +2948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 2336 uncompressed: false - body: '{"ips":[{"address":"172.16.16.2/22","created_at":"2025-05-16T13:39:41.218651Z","id":"60897312-1119-4db1-83cc-c32469e26d7d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","mac_address":"02:00:00:10:5C:2C","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:41.732943Z","zone":null}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "516" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:16 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2969,10 +2969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88c3aeed-34b1-4c22-bdf9-b77f743bb324 + - aa37f4ba-5302-453a-959b-b1667aff89fe status: 200 OK code: 200 - duration: 94.365792ms + duration: 154.924943ms - id: 60 request: proto: HTTP/1.1 @@ -2988,8 +2988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -2997,20 +2997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:34.626502Z","id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:34.626502Z","id":"bc0b7db0-3e8a-4790-94cd-056502e9957d","product_resource_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:34.626502Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' headers: Content-Length: - - "673" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3018,10 +3018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 297846d0-adbd-40b1-97bc-ac360f85a251 - status: 200 OK - code: 200 - duration: 48.389416ms + - fc85c454-c167-433c-a5c9-b7299c10dddc + status: 404 Not Found + code: 404 + duration: 33.524409ms - id: 61 request: proto: HTTP/1.1 @@ -3037,8 +3037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=90a980aa-edeb-4450-b46d-8de066fa6ac3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=ceed7407-bdca-42ce-bfd0-0192c0b762be&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3046,20 +3046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 531 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"172.16.88.3/22","created_at":"2025-10-09T09:38:14.966645Z","id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","mac_address":"02:00:00:19:C5:6B","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:15.313004Z","zone":null}],"total_count":1}' headers: Content-Length: - - "17" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3067,10 +3067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b455e2-c649-4a02-8854-435ab959be4e + - bf9a60b8-0982-44b1-a005-9dc565938ca1 status: 200 OK code: 200 - duration: 61.444421ms + duration: 47.585967ms - id: 62 request: proto: HTTP/1.1 @@ -3086,8 +3086,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -3095,22 +3095,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 692 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3118,12 +3116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35e8c700-64eb-461a-913a-d396b8109f67 - X-Total-Count: - - "1" + - ff2d5798-8b76-43e3-b76e-ffba755fb4dd status: 200 OK code: 200 - duration: 62.813503ms + duration: 86.258628ms - id: 63 request: proto: HTTP/1.1 @@ -3139,8 +3135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=6ab7f6b5-d1e8-4a2b-9296-9869b50a5245&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/user_data method: GET response: proto: HTTP/2.0 @@ -3148,20 +3144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1032 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:7ab:b9b:c725:5351:f614/64","created_at":"2025-05-16T13:39:42.886176Z","id":"e53e91e0-915f-4459-96f9-389f6d4cad6d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"eda23d37-cc52-4dbe-b99b-322552065db7"},"tags":[],"updated_at":"2025-05-16T13:39:42.886176Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1032" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,10 +3165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d025f81-29bd-42ba-9641-49124bc91a16 + - 88cf393b-86d9-4f03-9727-1b60b2e1ccb8 status: 200 OK code: 200 - duration: 39.996051ms + duration: 104.605793ms - id: 64 request: proto: HTTP/1.1 @@ -3188,8 +3184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Acf%3A85&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics method: GET response: proto: HTTP/2.0 @@ -3197,20 +3193,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":1}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "516" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:45 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,10 +3216,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5479525-2b51-43ed-acdd-43edc1556b97 + - 3d6999c1-4ab4-4a23-9566-66f6c54ab95c + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 48.053184ms + duration: 85.995214ms - id: 65 request: proto: HTTP/1.1 @@ -3237,8 +3237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/18662d30-b516-4f41-8233-44e3bf5606a8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a70736f4-f09a-4e74-bde7-1cad3a3efe58&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3246,20 +3246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:15.822286Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"18662d30-b516-4f41-8233-44e3bf5606a8","private_ip":"172.16.16.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-05-16T13:40:15.822286Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:efa:6bc8:31:7267:a4be/64","created_at":"2025-10-09T09:38:12.974887Z","id":"2f5631eb-533e-4901-bd02-76ce36486ceb","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f"},"tags":[],"updated_at":"2025-10-09T09:38:12.974887Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":2}' headers: Content-Length: - - "282" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3267,10 +3267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fafa15b-7c53-4816-b803-23a980be56f2 + - 8cf05a97-be33-4b7f-a6ff-87d3c4aa961b status: 200 OK code: 200 - duration: 31.35013ms + duration: 105.134139ms - id: 66 request: proto: HTTP/1.1 @@ -3286,8 +3286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Acf%3A85&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3295,20 +3295,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 516 + content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.16.3/22","created_at":"2025-05-16T13:39:42.486972Z","id":"e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","mac_address":"02:00:00:12:CF:85","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ac005d26-199e-48e8-b69e-4f301637fa17"},"tags":[],"updated_at":"2025-05-16T13:39:42.486972Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' headers: Content-Length: - - "516" + - "531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3316,10 +3316,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 849b72f2-0ac8-4763-9128-df1f75652ab8 + - d1fe4718-292a-402d-9298-f9a256cf11ee status: 200 OK code: 200 - duration: 60.409619ms + duration: 96.829231ms - id: 67 request: proto: HTTP/1.1 @@ -3335,8 +3335,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/18662d30-b516-4f41-8233-44e3bf5606a8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 method: GET response: proto: HTTP/2.0 @@ -3344,20 +3344,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 282 + content_length: 290 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:15.822286Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"18662d30-b516-4f41-8233-44e3bf5606a8","private_ip":"172.16.16.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-05-16T13:40:15.822286Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' headers: Content-Length: - - "282" + - "290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3365,10 +3365,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6ecc433-322e-417a-8bb5-473ff3ef5760 + - 22e41b83-3d45-4c70-8b10-fcc57ac8029b status: 200 OK code: 200 - duration: 37.239705ms + duration: 22.627202ms - id: 68 request: proto: HTTP/1.1 @@ -3384,8 +3384,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 method: GET response: proto: HTTP/2.0 @@ -3393,20 +3393,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 417 + content_length: 290 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' headers: Content-Length: - - "417" + - "290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3414,10 +3414,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80dba531-488b-4808-8646-a9a24e894cc6 + - 7061903e-2842-477e-9698-7811181cb3a1 status: 200 OK code: 200 - duration: 61.600776ms + duration: 32.553231ms - id: 69 request: proto: HTTP/1.1 @@ -3433,8 +3433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -3442,20 +3442,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1328 + content_length: 427 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"ready","updated_at":"2025-05-16T13:39:51.829928Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' headers: Content-Length: - - "1328" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3463,10 +3463,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f44299b8-9659-4976-aae9-66c658acbefc + - a0f0b9d0-f6ca-4bff-98df-18aa336ecc95 status: 200 OK code: 200 - duration: 32.107674ms + duration: 48.671406ms - id: 70 request: proto: HTTP/1.1 @@ -3482,29 +3482,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1363 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"detaching","updated_at":"2025-05-16T13:40:18.205914Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3512,10 +3512,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a43c5d0c-341d-4aef-a9d7-6663a5d2481e + - 10190573-a46a-47db-8342-3d4ddc43f831 status: 200 OK code: 200 - duration: 66.6954ms + duration: 28.102565ms - id: 71 request: proto: HTTP/1.1 @@ -3531,8 +3531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/18662d30-b516-4f41-8233-44e3bf5606a8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 method: DELETE response: proto: HTTP/2.0 @@ -3540,20 +3540,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"pat_rule","resource_id":"18662d30-b516-4f41-8233-44e3bf5606a8","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3561,10 +3559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db5225a7-f3e1-4b72-b580-64b6c86c093f - status: 404 Not Found - code: 404 - duration: 80.406683ms + - f9b5e7a0-b0d8-40b1-9da6-ade20df23628 + status: 204 No Content + code: 204 + duration: 41.455336ms - id: 72 request: proto: HTTP/1.1 @@ -3580,29 +3578,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 431 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"detaching","updated_at":"2025-05-16T13:40:18.205914Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3610,10 +3608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bb77d4f-95aa-4786-b315-c1609dd7514a + - 6dac2611-09ba-423c-be83-cc2e29a66e7b status: 200 OK code: 200 - duration: 41.131476ms + duration: 62.442048ms - id: 73 request: proto: HTTP/1.1 @@ -3629,8 +3627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -3638,20 +3636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1332 + content_length: 1367 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.364723Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","ipam_ip_id":"60897312-1119-4db1-83cc-c32469e26d7d","mac_address":"02:00:00:10:5C:2C","masquerade_enabled":true,"private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","push_default_route":false,"status":"detaching","updated_at":"2025-05-16T13:40:18.205914Z","zone":"fr-par-1"}],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1332" + - "1367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3659,10 +3657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c16a632-e21e-4f27-98a2-eafde04cdac0 + - 6bd7848f-e5e0-4474-8507-54d4e75aedf1 status: 200 OK code: 200 - duration: 59.604665ms + duration: 31.289867ms - id: 74 request: proto: HTTP/1.1 @@ -3678,8 +3676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -3687,20 +3685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 431 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:39:40.096572+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}' headers: Content-Length: - - "2314" + - "431" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3708,10 +3706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 837ea896-b1a9-4241-892d-89a90cc20103 + - e1179e66-8d92-47d1-9d55-fb15bf5ec9c7 status: 200 OK code: 200 - duration: 135.810191ms + duration: 39.050787ms - id: 75 request: proto: HTTP/1.1 @@ -3727,8 +3725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics method: GET response: proto: HTTP/2.0 @@ -3736,20 +3734,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:34.626502Z","id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:34.626502Z","id":"bc0b7db0-3e8a-4790-94cd-056502e9957d","product_resource_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:34.626502Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "673" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:18 GMT + - Thu, 09 Oct 2025 09:38:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3757,52 +3757,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef4686ce-0983-4887-8986-426590b17842 + - 5aa61a65-3d9c-4c64-86c5-6d0fbd7fda11 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 57.084872ms + duration: 120.884163ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 475 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/action","href_result":"/servers/1076cf30-7810-48c5-a8b9-c2460ad13922","id":"935e4aa7-4c8d-45be-beec-5c16cea01f1a","progress":0,"started_at":"2025-05-16T13:40:18.995085+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/935e4aa7-4c8d-45be-beec-5c16cea01f1a + - Thu, 09 Oct 2025 09:38:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3810,10 +3808,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95649a07-dd54-49fb-b280-7e6ce0c17f85 - status: 202 Accepted - code: 202 - duration: 514.5524ms + - 3b10375f-fa1e-45c7-bea4-f40243369a15 + status: 200 OK + code: 200 + duration: 115.695667ms - id: 77 request: proto: HTTP/1.1 @@ -3829,29 +3827,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:40:18.537495+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:19 GMT + - Thu, 09 Oct 2025 09:38:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3859,10 +3855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 137ae1fa-0723-4022-b2bf-6ac73dec7cc7 - status: 200 OK - code: 200 - duration: 399.078694ms + - 921ce8c5-7969-45da-87e8-503c5867261e + status: 204 No Content + code: 204 + duration: 374.514673ms - id: 78 request: proto: HTTP/1.1 @@ -3878,8 +3874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/585fbdc8-3e5e-4ede-a164-31f71a921f88 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 method: GET response: proto: HTTP/2.0 @@ -3887,20 +3883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"585fbdc8-3e5e-4ede-a164-31f71a921f88","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","type":"not_found"}' headers: Content-Length: - - "136" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:23 GMT + - Thu, 09 Oct 2025 09:38:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3908,10 +3904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cae41ceb-6e93-4473-a3a2-b99f44166698 + - eb826084-2d42-40e3-be99-8931f1fafbb8 status: 404 Not Found code: 404 - duration: 23.726035ms + duration: 101.386294ms - id: 79 request: proto: HTTP/1.1 @@ -3927,8 +3923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -3936,20 +3932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 911 + content_length: 1878 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:51.976939Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "911" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:23 GMT + - Thu, 09 Oct 2025 09:38:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3957,193 +3953,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85ba660-e0ca-49b7-b1f0-d76d65c7b071 + - 5642e53f-9351-4f8a-8fb3-560ecb8136a4 status: 200 OK code: 200 - duration: 23.579621ms + duration: 165.864768ms - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2?delete_ip=false - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 912 - uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.387469Z","gateway_networks":[],"id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","ipv4":{"address":"51.158.106.253","created_at":"2025-05-16T13:39:34.205395Z","gateway_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","id":"ccba0ea4-96c2-4361-a1e3-0008ab3c74e6","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"253-106-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.205395Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:40:23.391618Z","version":"0.7.4","zone":"fr-par-1"}' - headers: - Content-Length: - - "912" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 16 May 2025 13:40:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 032664ce-4e86-43cb-8560-8ecf67f9a058 - status: 200 OK - code: 200 - duration: 95.440372ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f06fe71-b92b-4a93-9415-f0db49cbc2a2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"6f06fe71-b92b-4a93-9415-f0db49cbc2a2","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 16 May 2025 13:40:23 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b40f46eb-926e-4fbd-9dcd-47a2fb187f92 - status: 404 Not Found - code: 404 - duration: 25.034649ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/ccba0ea4-96c2-4361-a1e3-0008ab3c74e6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Fri, 16 May 2025 13:40:24 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c60fad1-9346-476b-90ae-b0fe55f72245 - status: 204 No Content - code: 204 - duration: 1.09073633s - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:40:18.537495+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action","href_result":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f","id":"d33c773a-0ee8-44bf-88b6-68c51bdc28c9","progress":0,"started_at":"2025-10-09T09:38:47.788611+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:24 GMT + - Thu, 09 Oct 2025 09:38:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d33c773a-0ee8-44bf-88b6-68c51bdc28c9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4151,11 +4006,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcf26ba5-e8e3-4f9e-8e74-9c7e764be99e - status: 200 OK - code: 200 - duration: 645.370073ms - - id: 84 + - 32d3b51d-52f0-479d-9829-e4c0df25a8ad + status: 202 Accepted + code: 202 + duration: 253.200366ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4170,8 +4025,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -4179,20 +4034,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 1841 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"1502","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:40:18.537495+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:47.579245+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "1841" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:30 GMT + - Thu, 09 Oct 2025 09:38:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4200,11 +4055,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc91c56f-6429-4db0-bfd5-11f48a95677b + - 17800d63-44d8-4c02-81a1-3cf6eed5945e status: 200 OK code: 200 - duration: 613.594438ms - - id: 85 + duration: 155.187964ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4219,8 +4074,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be method: GET response: proto: HTTP/2.0 @@ -4228,20 +4083,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2157 + content_length: 136 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:40:34.910503+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","type":"not_found"}' headers: Content-Length: - - "2157" + - "136" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Thu, 09 Oct 2025 09:38:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4249,11 +4104,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74da3b8d-d800-422c-93f4-05e94c95a5be - status: 200 OK - code: 200 - duration: 530.363886ms - - id: 86 + - 96bfb4e7-981b-4ebe-adcc-a8d7f8ee2022 + status: 404 Not Found + code: 404 + duration: 22.973195ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4268,8 +4123,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -4277,22 +4132,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 936 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "936" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 09:38:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4300,13 +4153,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f69ec9a-d0bc-47fe-9cf2-b29fda467638 - X-Total-Count: - - "1" + - b47e9179-17c0-48cf-a451-dd2ca7003137 status: 200 OK code: 200 - duration: 77.057336ms - - id: 87 + duration: 29.133298ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4321,29 +4172,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb?delete_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 937 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:42.075068+00:00","id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","ipam_ip_ids":["e3840783-f82e-46ac-b89a-0f5c1e3e3eb1","e53e91e0-915f-4459-96f9-389f6d4cad6d"],"mac_address":"02:00:00:12:cf:85","modification_date":"2025-05-16T13:40:14.128637+00:00","private_network_id":"68cb8063-dff3-4a81-a418-d5c721c9a4fe","server_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:51.788445Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Thu, 09 Oct 2025 09:38:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4351,58 +4202,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8b8f040-7647-4189-90b4-2e3636811e34 + - d16ac38d-938b-43d4-bf7f-4aaff98ee80a status: 200 OK code: 200 - duration: 463.070041ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 16 May 2025 13:40:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 549e94e4-0a86-4db8-bf4e-06921439dd41 - status: 204 No Content - code: 204 - duration: 264.095903ms - - id: 89 + duration: 80.130075ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4417,8 +4221,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922/private_nics/6ab7f6b5-d1e8-4a2b-9296-9869b50a5245 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb method: GET response: proto: HTTP/2.0 @@ -4426,20 +4230,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"6ab7f6b5-d1e8-4a2b-9296-9869b50a5245","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"9e50aef0-e064-4095-8123-d7201bc659bb","type":"not_found"}' headers: Content-Length: - - "148" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Thu, 09 Oct 2025 09:38:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4447,60 +4251,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00c6ce9e-e1b9-484b-af66-1fd1f51b58b8 + - 5d62fd2a-5be8-4dc4-af0e-ea40261d1abc status: 404 Not Found code: 404 - duration: 90.956746ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1699 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:34.492106+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"1076cf30-7810-48c5-a8b9-c2460ad13922","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:93","maintenances":[],"modification_date":"2025-05-16T13:40:34.910503+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1699" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 16 May 2025 13:40:37 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1da81650-d32c-4daa-b8f0-dcd53dd9270c - status: 200 OK - code: 200 - duration: 168.431689ms - - id: 91 + duration: 25.288867ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4515,8 +4270,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b method: DELETE response: proto: HTTP/2.0 @@ -4533,9 +4288,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Thu, 09 Oct 2025 09:38:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4543,11 +4298,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d2b358c-5bbf-421d-9eba-26dde6b69e58 + - a8ad1c37-ff8e-4d22-8ec3-72c835e05851 status: 204 No Content code: 204 - duration: 464.007243ms - - id: 92 + duration: 37.774713ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4562,8 +4317,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1076cf30-7810-48c5-a8b9-c2460ad13922 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f method: GET response: proto: HTTP/2.0 @@ -4573,7 +4328,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1076cf30-7810-48c5-a8b9-c2460ad13922","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","type":"not_found"}' headers: Content-Length: - "143" @@ -4582,9 +4337,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Thu, 09 Oct 2025 09:38:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4592,11 +4347,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46c9ffa6-2ebd-4a5a-b742-a6afa90ec0f2 + - 3e380fd4-44a0-4c47-a494-c8bab55c7e7f status: 404 Not Found code: 404 - duration: 117.13853ms - - id: 93 + duration: 51.575527ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4611,8 +4366,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -4622,7 +4377,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' headers: Content-Length: - "143" @@ -4631,9 +4386,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Thu, 09 Oct 2025 09:38:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4641,11 +4396,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0a6291a-bbfc-48c3-9f1d-f415cf88ed2b + - 1aa0d8b4-7ff1-4e62-aed1-5df815afc03f status: 404 Not Found code: 404 - duration: 301.4747ms - - id: 94 + duration: 28.464225ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4660,8 +4415,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: GET response: proto: HTTP/2.0 @@ -4669,20 +4424,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 485 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:34.626502Z","id":"366ef5d9-ec3b-483c-ba31-118f9eeed4b0","last_detached_at":"2025-05-16T13:40:37.575185Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:40:37.575185Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":"2025-10-09T09:38:49.934891Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:49.934891Z","zone":"fr-par-1"}' headers: Content-Length: - - "471" + - "485" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Thu, 09 Oct 2025 09:38:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4690,11 +4445,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 572751a6-4e3f-45e9-8848-dd0a61f92c78 + - 05537f9c-f1ae-459c-b09e-149c85427694 status: 200 OK code: 200 - duration: 52.540226ms - - id: 95 + duration: 92.701287ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4709,8 +4464,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/366ef5d9-ec3b-483c-ba31-118f9eeed4b0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 method: DELETE response: proto: HTTP/2.0 @@ -4727,9 +4482,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Thu, 09 Oct 2025 09:38:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4737,11 +4492,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73127222-3b2d-426a-b914-9a5750a47878 + - 206e1b0d-5d44-47d7-9ee2-104239f08837 status: 204 No Content code: 204 - duration: 110.417138ms - - id: 96 + duration: 161.389603ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4756,8 +4511,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/68cb8063-dff3-4a81-a418-d5c721c9a4fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 method: DELETE response: proto: HTTP/2.0 @@ -4774,9 +4529,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:40 GMT + - Thu, 09 Oct 2025 09:38:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4784,7 +4539,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4cdb3e7-26ae-4dc6-8731-e2f88df66d88 + - 406bcb26-08e4-4961-80d3-874bfcaaf6b5 status: 204 No Content code: 204 - duration: 1.969408669s + duration: 1.240301418s From 6a003f31d0d4836a8abdbddf1a754fbcdc212ba2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 16:13:11 +0200 Subject: [PATCH 08/12] lint --- internal/services/instance/server_test.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/services/instance/server_test.go b/internal/services/instance/server_test.go index f3c058003..71345da06 100644 --- a/internal/services/instance/server_test.go +++ b/internal/services/instance/server_test.go @@ -1522,7 +1522,7 @@ func imageIDMatchLabel(tt *acctest.TestTools, resourceWithImageID, resourceWithI if expectMatch && expectedImageID != localImageIDFromLabel.ID { return fmt.Errorf("unexpected image ID for label %q: expected %s, got %s", imageLabel, expectedImageID, localImageIDFromLabel.ID) } else if !expectMatch && expectedImageID == localImageIDFromLabel.ID { - return fmt.Errorf("images IDs match when they should not") + return errors.New("images IDs match when they should not") } return nil @@ -2188,6 +2188,7 @@ func TestAccServer_PrivateNetworkMissingPNIC(t *testing.T) { func TestAccServer_AdminPasswordEncryptionSSHKeyID(t *testing.T) { t.Skip("There is currently a bug when resetting the field, we should reinstate the test once the fix has been deployed") + tt := acctest.NewTestTools(t) defer tt.Cleanup() From 9c7eeaeb824263700eb9bf6e47fee75ebcb11939 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 16:59:52 +0200 Subject: [PATCH 09/12] vpc + vpcgw ok --- .../testdata/vpc-route-basic.cassette.yaml | 2145 +++++++++-------- ...ublic-gateway-pat-rule-basic.cassette.yaml | 1675 ++++++++----- ...ublic-gateway-pat-rule-basic.cassette.yaml | 1765 ++++++++------ 3 files changed, 3262 insertions(+), 2323 deletions(-) diff --git a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml index 44e368f72..250dfc603 100644 --- a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml @@ -25,18 +25,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:00 GMT Link: - ; rel="next",; rel="last" Server: @@ -48,50 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b498968-9699-4a09-9339-61b444a763c9 + - 9fb18bf9-61f2-43a3-9a7d-b0029f7e808f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 141.278668ms + duration: 83.028674ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 408 + content_length: 14295 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "408" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:00 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -101,28 +101,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20dcb496-3f29-43f7-93f9-ff3275775873 + - 458092bf-0f02-4233-a624-f8dec66e9d49 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 160.504263ms + duration: 48.569242ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-vpc-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -131,7 +135,7 @@ interactions: trailer: {} content_length: 408 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' + body: '{"created_at":"2025-10-15T14:57:00.960639Z","custom_routes_propagation_enabled":true,"id":"3a648981-37eb-4da0-8b17-9d66cab472db","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:57:00.960639Z"}' headers: Content-Length: - "408" @@ -140,7 +144,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -150,10 +154,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3183d06a-b4ce-44c0-8d0a-7dddca2a991c + - 769738c4-e45e-426c-95c9-26d237969ba4 status: 200 OK code: 200 - duration: 30.071733ms + duration: 153.950414ms - id: 3 request: proto: HTTP/1.1 @@ -170,7 +174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -178,20 +182,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1002 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"11b0d350-95c6-4e26-be32-4fff36610fe3","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "19730" + - "1002" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 14:57:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -201,12 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f29b23a-5f89-4593-8f5d-08fdb37d4e00 - X-Total-Count: - - "75" + - 42699171-35bb-4b44-9426-205e73ced7e9 status: 200 OK code: 200 - duration: 49.266681ms + duration: 57.930965ms - id: 4 request: proto: HTTP/1.1 @@ -223,7 +223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a648981-37eb-4da0-8b17-9d66cab472db method: GET response: proto: HTTP/2.0 @@ -231,18 +231,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1002 + content_length: 408 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"created_at":"2025-10-15T14:57:00.960639Z","custom_routes_propagation_enabled":true,"id":"3a648981-37eb-4da0-8b17-9d66cab472db","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:57:00.960639Z"}' headers: Content-Length: - - "1002" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -252,10 +252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 434f8e5c-5947-4775-bd6f-58304c69158b + - 045e3746-8d8d-4805-ab00-42d2de441e09 status: 200 OK code: 200 - duration: 51.898699ms + duration: 107.917761ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +267,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-vpn","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1079 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:01.204489Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:57:01.204489Z","id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"},{"created_at":"2025-10-15T14:57:01.204489Z","id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:136d::/64","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}],"tags":[],"updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "1079" @@ -293,7 +293,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eab52077-bb2e-468a-a929-0001806ba9f1 + - 61b22eee-80cb-4b2f-849f-af09555ea69c status: 200 OK code: 200 - duration: 530.37236ms + duration: 628.770669ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/573ebb18-dd30-48d9-81f6-fd1f6011b01a method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 1079 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:01.204489Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:57:01.204489Z","id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"},{"created_at":"2025-10-15T14:57:01.204489Z","id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:136d::/64","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}],"tags":[],"updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "1079" @@ -342,7 +342,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:54 GMT + - Wed, 15 Oct 2025 14:57:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fbca11e-2634-4ff8-b56a-2f7755bcef99 + - c54c81bc-fe60-4705-bd1c-5eba5e1ae2dc status: 200 OK code: 200 - duration: 95.206433ms + duration: 86.828588ms - id: 7 request: proto: HTTP/1.1 @@ -367,7 +367,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"11b0d350-95c6-4e26-be32-4fff36610fe3","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:01.637596+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1710" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:55 GMT + - Wed, 15 Oct 2025 14:57:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9db9df6-a5f6-4442-829a-61b3b55485f3 + - 0c2f90da-95b6-43da-a71f-a2eed9e94c26 status: 201 Created code: 201 - duration: 1.808196261s + duration: 1.316670464s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:01.637596+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1710" @@ -444,7 +444,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:56 GMT + - Wed, 15 Oct 2025 14:57:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1368cb88-96f0-4336-9c8f-943f298e70b9 + - 12e406ed-f297-4dc8-a9dc-f406fdba1a76 status: 200 OK code: 200 - duration: 228.705156ms + duration: 162.587333ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:54.757157+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:01.637596+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1710" @@ -493,7 +493,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:56 GMT + - Wed, 15 Oct 2025 14:57:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78fb0b19-2c83-4e3a-9e54-20b33d23413b + - ac3b0115-9529-4600-a34b-70a377b83003 status: 200 OK code: 200 - duration: 230.529141ms + duration: 154.825649ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:01.778673Z","id":"aa4f91f6-f776-4fc8-9061-632e14588918","product_resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:01.778673Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -542,7 +542,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:56 GMT + - Wed, 15 Oct 2025 14:57:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43d49924-5bd2-468b-803e-a0b70ce5feb2 + - f8e1c517-925a-44bd-bee9-92df24e471b4 status: 200 OK code: 200 - duration: 84.383642ms + duration: 85.167626ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action","href_result":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c","id":"877e9f3c-59fd-4165-af6a-7188a53f3cf5","progress":0,"started_at":"2025-10-09T09:03:57.127944+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/action","href_result":"/servers/11b842c0-f606-486c-b54e-c85f7f976a8a","id":"ffbf886f-2d25-4b82-8fa2-614ebb84ebd9","progress":0,"started_at":"2025-10-15T14:57:02.971849+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,9 +593,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:57 GMT + - Wed, 15 Oct 2025 14:57:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/877e9f3c-59fd-4165-af6a-7188a53f3cf5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ffbf886f-2d25-4b82-8fa2-614ebb84ebd9 Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f51e698-6c7d-405a-9dcd-a3803d1c537c + - 5deeaeb0-3430-451a-b04e-a2481b99ac8a status: 202 Accepted code: 202 - duration: 667.644577ms + duration: 263.255062ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -635,7 +635,7 @@ interactions: trailer: {} content_length: 1732 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:03:56.551253+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:02.765657+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1732" @@ -644,7 +644,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:57 GMT + - Wed, 15 Oct 2025 14:57:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 663a2dba-a307-4d40-8b7b-7399a421100d + - 925e4f6a-4d19-4dca-a214-aac8152f5fcc status: 200 OK code: 200 - duration: 277.851798ms + duration: 130.991886ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -682,18 +682,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 1868 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1866" + - "1868" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:02 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6adbde89-b05d-4f69-a2f3-a4b58587cc3d + - ab770f7f-9d0e-4997-9706-5ec819081928 status: 200 OK code: 200 - duration: 278.029335ms + duration: 137.162138ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -731,18 +731,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 1868 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1866" + - "1868" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:02 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4abfda09-cec2-4f9c-8d2a-84d9b95c5990 + - 7432632d-cdea-4670-b8b9-2b92fff123b9 status: 200 OK code: 200 - duration: 167.898828ms + duration: 127.743227ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9b072fe-b68e-4136-af1d-c387a3633a93","type":"not_found"}' headers: Content-Length: - "143" @@ -791,7 +791,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:02 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8bb5e7c-0279-4d39-bc2e-6023526e9d08 + - 6447b29c-ffcb-41e0-9821-12ca813a2e75 status: 404 Not Found code: 404 - duration: 31.544404ms + duration: 26.480189ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:01.778673Z","id":"aa4f91f6-f776-4fc8-9061-632e14588918","product_resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:01.778673Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -840,7 +840,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:03 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdf53997-64f6-4f14-a261-93d15e84f76d + - f580377f-d9ad-4fd8-9b31-775e4dffef56 status: 200 OK code: 200 - duration: 99.807476ms + duration: 92.874256ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/user_data method: GET response: proto: HTTP/2.0 @@ -889,7 +889,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:03 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5665d18-f406-4ecc-986e-f6b8d8737a32 + - c28afa0d-5608-4384-85c9-1ef614c8fa8d status: 200 OK code: 200 - duration: 101.775454ms + duration: 109.157742ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics method: GET response: proto: HTTP/2.0 @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:03 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -950,12 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3625b5-bfca-483a-99aa-4e564b3984f0 + - 0621944e-d889-4187-a939-859066fa29c8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 131.428553ms + duration: 104.363858ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -980,18 +980,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 1868 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1866" + - "1868" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:03 GMT + - Wed, 15 Oct 2025 14:57:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a308dd-e8ce-49f1-8fc6-0f0962bfaa87 + - 24b9d6e4-25d2-46c4-9b35-1d0bb7c0708f status: 200 OK code: 200 - duration: 179.885293ms + duration: 134.05733ms - id: 20 request: proto: HTTP/1.1 @@ -1016,14 +1016,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"87093c60-561c-41be-8caf-50b4ae177439"}' + body: '{"private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics method: POST response: proto: HTTP/2.0 @@ -1033,7 +1033,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1042,7 +1042,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:04 GMT + - Wed, 15 Oct 2025 14:57:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1052,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5fbf7c-3aca-430e-9dd4-4b615257ce72 + - 04d423df-26c3-4505-814e-453d33724ebe status: 201 Created code: 201 - duration: 611.863756ms + duration: 635.552258ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +1072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1091,7 +1091,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:04 GMT + - Wed, 15 Oct 2025 14:57:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4d5fced-6b34-43b2-86c7-000bad8a2dd6 + - 6c9826fe-2d21-4c75-9138-590d9ee97e83 status: 200 OK code: 200 - duration: 115.711284ms + duration: 93.321667ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1131,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,7 +1140,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:09 GMT + - Wed, 15 Oct 2025 14:57:14 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ae43303-0541-4fcb-b44f-79c08df0a858 + - a2273456-b870-47b5-b7c6-325f7c1b3ac3 status: 200 OK code: 200 - duration: 117.428736ms + duration: 86.007738ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,7 +1189,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:14 GMT + - Wed, 15 Oct 2025 14:57:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 274ed960-e6a9-4bc3-8b57-598a7f159cc9 + - 87c8f069-a1e2-4ce3-82c6-84aeab0f62aa status: 200 OK code: 200 - duration: 110.522358ms + duration: 107.317799ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,7 +1238,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:19 GMT + - Wed, 15 Oct 2025 14:57:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75f0f8d0-839f-40a9-98b4-35f64be0b384 + - aeb25c52-5bf3-493d-99a3-bd80aaf2ccb8 status: 200 OK code: 200 - duration: 105.026773ms + duration: 136.220437ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1278,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,7 +1287,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:24 GMT + - Wed, 15 Oct 2025 14:57:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcefeff7-039d-42bd-b248-f527ad9723ae + - d3916192-1f93-4cce-91b1-51981264a0f8 status: 200 OK code: 200 - duration: 101.772183ms + duration: 109.914776ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:09.133646+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,7 +1336,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:29 GMT + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30f7a31d-6117-4927-a3df-5f6dce99ffbe + - da60417f-25af-44a2-bbf7-d3e0c25f6509 status: 200 OK code: 200 - duration: 137.783404ms + duration: 113.638918ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1374,18 +1374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:03.761668+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:34 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f919533c-ef06-417f-a20c-8fe05bca571d + - af69b460-2cb4-4e7e-85c0-b0b53f398f23 status: 200 OK code: 200 - duration: 119.053842ms + duration: 111.201662ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -1425,7 +1425,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1434,7 +1434,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 276e8a73-8ebd-4916-bb86-852fe9fe220b + - 63edc334-50e5-49ff-bd4b-c5b46599c515 status: 200 OK code: 200 - duration: 124.554588ms + duration: 95.417562ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -1472,18 +1472,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2326 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1be1cc4-13e6-422b-8a46-1e9299da2960 + - 9c269cab-96e3-4152-9c26-dd4802786882 status: 200 OK code: 200 - duration: 106.147464ms + duration: 150.055593ms - id: 30 request: proto: HTTP/1.1 @@ -1513,56 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2324 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2324" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 09:04:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2358e39c-5aca-4aa3-8f63-70cee2988def - status: 200 OK - code: 200 - duration: 151.23566ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1572,7 +1523,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -1581,7 +1532,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1591,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df70077-18cb-4ab9-bc56-617e3bccb235 + - 2731315e-adca-4e2a-8bbe-04c678c5b90a status: 200 OK code: 200 - duration: 62.568882ms - - id: 32 + duration: 46.333605ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1606,7 +1557,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","destination":"10.0.0.0/24","nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2"}' + body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db","destination":"10.0.0.0/24","nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d"}' form: {} headers: Content-Type: @@ -1623,7 +1574,7 @@ interactions: trailer: {} content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-15T14:57:40.693176Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "403" @@ -1632,7 +1583,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1642,11 +1593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b02474be-90a9-4e46-9cc3-c73706474f7c + - ce59fb6d-131b-4748-868d-e9c27e4cb576 status: 200 OK code: 200 - duration: 96.263033ms - - id: 33 + duration: 98.533848ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1662,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -1672,7 +1623,7 @@ interactions: trailer: {} content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-15T14:57:40.693176Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "403" @@ -1681,7 +1632,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1691,11 +1642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6114cfcd-c67a-4f5e-98e2-2aa001829c52 + - d071218a-91d0-4ab7-a6b9-fdeadb448969 status: 200 OK code: 200 - duration: 32.777465ms - - id: 34 + duration: 99.313105ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1711,7 +1662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -1721,7 +1672,7 @@ interactions: trailer: {} content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-15T14:57:40.693176Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "403" @@ -1730,7 +1681,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1740,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3dd0aa3-2bce-4145-bb37-8b4f195a7ed0 + - ae267365-4646-4e3d-80c6-a51a70cade13 status: 200 OK code: 200 - duration: 32.684224ms - - id: 35 + duration: 95.059092ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1760,7 +1711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a648981-37eb-4da0-8b17-9d66cab472db method: GET response: proto: HTTP/2.0 @@ -1770,7 +1721,7 @@ interactions: trailer: {} content_length: 408 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' + body: '{"created_at":"2025-10-15T14:57:00.960639Z","custom_routes_propagation_enabled":true,"id":"3a648981-37eb-4da0-8b17-9d66cab472db","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:57:00.960639Z"}' headers: Content-Length: - "408" @@ -1779,7 +1730,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:40 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1789,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47e54f98-c164-40a2-9a8d-6289830f90c1 + - 38d0c9c0-2f6c-44c5-855f-22a7187870de status: 200 OK code: 200 - duration: 83.449296ms - - id: 36 + duration: 44.440717ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1809,7 +1760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/573ebb18-dd30-48d9-81f6-fd1f6011b01a method: GET response: proto: HTTP/2.0 @@ -1819,7 +1770,7 @@ interactions: trailer: {} content_length: 1079 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:01.204489Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:57:01.204489Z","id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"},{"created_at":"2025-10-15T14:57:01.204489Z","id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:136d::/64","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}],"tags":[],"updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "1079" @@ -1828,7 +1779,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1838,11 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6e066f0-4a86-4e3a-b37d-b02a4d88a141 + - 6a118feb-51e3-4051-9462-5389c2457c00 status: 200 OK code: 200 - duration: 36.85396ms - - id: 37 + duration: 28.08053ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1858,7 +1809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -1866,18 +1817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2324 + content_length: 2326 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2324" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1887,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2f7f8da-5644-4a0c-b39c-8e02fc7f7b75 + - 02b9af63-da08-4686-9a06-1f3e927527a9 status: 200 OK code: 200 - duration: 147.194491ms - - id: 38 + duration: 144.539754ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1907,7 +1858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -1917,7 +1868,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9b072fe-b68e-4136-af1d-c387a3633a93","type":"not_found"}' headers: Content-Length: - "143" @@ -1926,7 +1877,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1936,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e866c4e4-e75e-4079-93d5-6ca3ab830fe5 + - 1de93856-4d0e-498c-bc2d-5ae71a7b16ea status: 404 Not Found code: 404 - duration: 27.514018ms - - id: 39 + duration: 26.879254ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1956,7 +1907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -1966,7 +1917,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:01.778673Z","id":"aa4f91f6-f776-4fc8-9061-632e14588918","product_resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:01.778673Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -1975,7 +1926,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -1985,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1796754e-f6ec-4932-9b5b-446dfdd277b5 + - 4e9153b6-293e-44ad-9ed9-0507e1c3956e status: 200 OK code: 200 - duration: 93.429496ms - - id: 40 + duration: 86.609396ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2005,7 +1956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/user_data method: GET response: proto: HTTP/2.0 @@ -2024,7 +1975,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2034,11 +1985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76703376-e4e0-49d9-8441-13385760647a + - 8184caa2-f5ba-49a5-9ea6-effa07f8b067 status: 200 OK code: 200 - duration: 172.210246ms - - id: 41 + duration: 93.332666ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2054,7 +2005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics method: GET response: proto: HTTP/2.0 @@ -2064,7 +2015,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2073,9 +2024,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2085,13 +2036,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6384038d-f82c-4213-b33f-f3066cc3fd9a + - b90946f6-6e7c-49fe-aa2e-33bee11af9fc X-Total-Count: - "1" status: 200 OK code: 200 - duration: 125.912729ms - - id: 42 + duration: 101.488084ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2107,7 +2058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2117,7 +2068,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -2126,7 +2077,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2136,11 +2087,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0638150-8405-418a-a298-03de71685ebf + - 9f3b83ab-3b1d-4547-8658-5a86e87f80e1 status: 200 OK code: 200 - duration: 96.867056ms - - id: 43 + duration: 33.221281ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2156,7 +2107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -2166,7 +2117,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2175,7 +2126,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2185,11 +2136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d11856e-3d06-4005-8a01-42ba397ee813 + - 18cc5525-19e1-446b-a7df-650c2e6b3d89 status: 200 OK code: 200 - duration: 113.014649ms - - id: 44 + duration: 94.039427ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2205,7 +2156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -2213,18 +2164,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2324 + content_length: 2326 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2324" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2234,11 +2185,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47393931-c6ce-44b9-832e-f2bd1dad467f + - 9526bf0b-386f-48ac-893f-65eefc97b07b status: 200 OK code: 200 - duration: 181.021744ms - - id: 45 + duration: 138.291642ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2254,7 +2205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2264,7 +2215,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -2273,7 +2224,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2283,11 +2234,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93c21b2c-ec00-44ee-b66a-d94c7a414d14 + - 2b6c5cce-f515-4d1c-953b-c068887577f9 status: 200 OK code: 200 - duration: 43.341543ms - - id: 46 + duration: 43.751087ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2303,7 +2254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -2313,7 +2264,7 @@ interactions: trailer: {} content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-15T14:57:40.693176Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "403" @@ -2322,7 +2273,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:41 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2332,11 +2283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 122facd4-77cc-4f00-90f5-c8850e2a97c3 + - debddcaf-4583-4c39-9f84-ceb800477972 status: 200 OK code: 200 - duration: 25.333179ms - - id: 47 + duration: 27.341107ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2352,7 +2303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a648981-37eb-4da0-8b17-9d66cab472db method: GET response: proto: HTTP/2.0 @@ -2362,7 +2313,7 @@ interactions: trailer: {} content_length: 408 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' + body: '{"created_at":"2025-10-15T14:57:00.960639Z","custom_routes_propagation_enabled":true,"id":"3a648981-37eb-4da0-8b17-9d66cab472db","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:57:00.960639Z"}' headers: Content-Length: - "408" @@ -2371,7 +2322,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2381,11 +2332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f48292-dd67-47be-9c51-359a3b782431 + - 90c3d0c6-84a8-4332-880a-7352e488714f status: 200 OK code: 200 - duration: 23.656094ms - - id: 48 + duration: 25.073608ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2401,7 +2352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/573ebb18-dd30-48d9-81f6-fd1f6011b01a method: GET response: proto: HTTP/2.0 @@ -2411,7 +2362,7 @@ interactions: trailer: {} content_length: 1079 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:01.204489Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:57:01.204489Z","id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"},{"created_at":"2025-10-15T14:57:01.204489Z","id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:136d::/64","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}],"tags":[],"updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "1079" @@ -2420,7 +2371,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2430,11 +2381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6a19bda-d0ca-4f82-8bf0-f6781a03a62f + - d17c0ac8-858c-465b-94df-709a7b0f76cf status: 200 OK code: 200 - duration: 31.836542ms - - id: 49 + duration: 27.717361ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2450,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -2460,7 +2411,7 @@ interactions: trailer: {} content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-09T09:04:40.474373Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","region":"fr-par","tags":["tf","route"],"updated_at":"2025-10-15T14:57:40.693176Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "403" @@ -2469,7 +2420,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2479,11 +2430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf55029a-146d-4ae9-9a1b-4f0f12a9c06e + - e1c73e78-a184-4072-aaa2-30056c8c4dff status: 200 OK code: 200 - duration: 17.59342ms - - id: 50 + duration: 32.349933ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2499,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -2507,18 +2458,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2324 + content_length: 2326 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2324" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2528,11 +2479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 632f55ca-abf8-4adf-9739-665581b1fd4e + - b6d2d968-dac6-449b-9704-ec505f55900b status: 200 OK code: 200 - duration: 151.677149ms - - id: 51 + duration: 138.905622ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -2558,7 +2509,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9b072fe-b68e-4136-af1d-c387a3633a93","type":"not_found"}' headers: Content-Length: - "143" @@ -2567,7 +2518,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2577,11 +2528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81e29df4-68a7-40b2-865d-59c9f7be11d5 + - 8163e72a-5de1-4472-9deb-10ef1ae14987 status: 404 Not Found code: 404 - duration: 41.977523ms - - id: 52 + duration: 30.411758ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2597,7 +2548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -2607,7 +2558,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:01.778673Z","id":"aa4f91f6-f776-4fc8-9061-632e14588918","product_resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:01.778673Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -2616,7 +2567,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2626,11 +2577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51cf447f-784a-4c0b-b36e-9ed0daa88c9c + - 1ad781bb-75ca-4d3e-8466-e43d59f8e8ea status: 200 OK code: 200 - duration: 206.417633ms - - id: 53 + duration: 100.373602ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,7 +2597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/user_data method: GET response: proto: HTTP/2.0 @@ -2665,7 +2616,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2675,11 +2626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eca31c9a-e41d-4c56-8c72-01e03bcd54fd + - 69a04e26-5f89-470b-abc2-4eaa103dec97 status: 200 OK code: 200 - duration: 98.90237ms - - id: 54 + duration: 126.023879ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2695,7 +2646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics method: GET response: proto: HTTP/2.0 @@ -2705,7 +2656,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2714,9 +2665,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2726,13 +2677,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db6ce6d1-b093-4114-b507-73b60ba28994 + - bc99cddd-d9f7-459b-bc49-4bf474e65875 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 99.885066ms - - id: 55 + duration: 96.60205ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2748,7 +2699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2758,7 +2709,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -2767,7 +2718,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2777,11 +2728,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eafe4bda-8bae-47df-b068-94e3d1122aab + - d23cab43-bd1b-4929-9e38-186032b4b15e status: 200 OK code: 200 - duration: 39.204615ms - - id: 56 + duration: 24.100158ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2797,7 +2748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -2807,7 +2758,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2816,7 +2767,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2826,11 +2777,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76356e79-ac09-4842-8e1e-5a33afd2fc31 + - 335791ea-be3d-4595-a401-678c2f0dc3ee status: 200 OK code: 200 - duration: 97.636052ms - - id: 57 + duration: 109.083445ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2846,7 +2797,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -2854,18 +2805,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2324 + content_length: 2326 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2324" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:42 GMT + - Wed, 15 Oct 2025 14:57:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2875,11 +2826,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f42ed7eb-e7cb-4d13-b7f8-1d0c77ff6d1c + - 0d8ed8db-9cc1-4e21-b484-193b757a4f22 status: 200 OK code: 200 - duration: 154.191892ms - - id: 58 + duration: 1.575476791s + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2895,7 +2846,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2905,7 +2856,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -2914,7 +2865,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:43 GMT + - Wed, 15 Oct 2025 14:57:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -2924,11 +2875,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c81f357-4999-44f2-9a0e-ec97d56bf8c4 + - 2bbb06cb-b4be-43f3-a3de-3b844b4d24f6 status: 200 OK code: 200 - duration: 49.597729ms - - id: 59 + duration: 47.26482ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2952,18 +2903,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:43 GMT + - Wed, 15 Oct 2025 14:57:44 GMT Link: - ; rel="next",; rel="last" Server: @@ -2975,13 +2926,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b121650-4f86-4191-818e-f7d48cfaf4cf + - 82e6c417-285f-4147-b7ce-147d449cd0b8 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.818226ms - - id: 60 + duration: 47.295667ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,18 +2956,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:43 GMT + - Wed, 15 Oct 2025 14:57:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -3028,13 +2979,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba32de01-3755-411c-a886-c54bfd58f8eb + - 5c9b3398-d6c6-496d-9ae6-b63ca970b0b9 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.03977ms - - id: 61 + duration: 61.986935ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3060,7 +3011,7 @@ interactions: trailer: {} content_length: 1002 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"11b0d350-95c6-4e26-be32-4fff36610fe3","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "1002" @@ -3069,7 +3020,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:43 GMT + - Wed, 15 Oct 2025 14:57:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3079,11 +3030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a24e8d6b-c538-4ed4-833e-6ac5c1dfce4e + - e8b5fff1-2d16-4ec3-ba37-142278b7711c status: 200 OK code: 200 - duration: 62.627445ms - - id: 62 + duration: 59.21883ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3094,7 +3045,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"11b0d350-95c6-4e26-be32-4fff36610fe3","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -3111,7 +3062,7 @@ interactions: trailer: {} content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:45.278182+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1714" @@ -3120,9 +3071,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:44 GMT + - Wed, 15 Oct 2025 14:57:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3132,11 +3083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9e8adf4-ad15-40b5-86d9-1d85618a278f + - b55405fa-319c-45c5-9354-c7e2695c5e9d status: 201 Created code: 201 - duration: 1.323209726s - - id: 63 + duration: 1.299308573s + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3152,7 +3103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3162,7 +3113,7 @@ interactions: trailer: {} content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:45.278182+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1714" @@ -3171,7 +3122,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:44 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3181,11 +3132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b80bbe30-3db4-43de-a813-7e9d54a46846 + - 64c45d72-784a-4c75-8093-fcf263ec4654 status: 200 OK code: 200 - duration: 240.919497ms - - id: 64 + duration: 149.373884ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3201,7 +3152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3211,7 +3162,7 @@ interactions: trailer: {} content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:43.920170+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:45.278182+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1714" @@ -3220,7 +3171,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:45 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3230,11 +3181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8c4af47-5c5a-4293-beab-71daddad0c1f + - 77575205-c603-4a30-a44b-1535ebba6bc5 status: 200 OK code: 200 - duration: 184.576246ms - - id: 65 + duration: 127.044786ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3250,7 +3201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: GET response: proto: HTTP/2.0 @@ -3260,7 +3211,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:45.418014Z","id":"3a949809-c6a3-4873-afc7-5058069c86a4","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:45.418014Z","id":"33ea259f-a086-478d-a923-5e65a298df24","product_resource_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:45.418014Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -3269,7 +3220,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:45 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3279,11 +3230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70a1ef3d-1e9c-4ce5-857a-b1e8fc74f23d + - 1da232e0-aef9-4c0c-9c7e-ad2ecff4284d status: 200 OK code: 200 - duration: 79.640767ms - - id: 66 + duration: 93.305323ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3301,7 +3252,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/action method: POST response: proto: HTTP/2.0 @@ -3311,7 +3262,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action","href_result":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478","id":"19536505-bdb3-4476-a701-119713fa9bc9","progress":0,"started_at":"2025-10-09T09:04:45.339883+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/action","href_result":"/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c","id":"42fd8dc9-f77f-451e-a6b2-66e5b0f4c8d7","progress":0,"started_at":"2025-10-15T14:57:46.557945+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -3320,9 +3271,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:45 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/19536505-bdb3-4476-a701-119713fa9bc9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/42fd8dc9-f77f-451e-a6b2-66e5b0f4c8d7 Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3332,11 +3283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c5b9683-def1-4c0d-bb5c-80d3b8d6b029 + - 0644ea9a-bd2a-456d-9878-5a3d5dfe6564 status: 202 Accepted code: 202 - duration: 234.66234ms - - id: 67 + duration: 257.922409ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3352,7 +3303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3362,7 +3313,7 @@ interactions: trailer: {} content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:45.154303+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:46.357601+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1736" @@ -3371,7 +3322,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:45 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3381,11 +3332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b3ee334-a009-432f-88a2-0c2da8546a2d + - cfd9bf0a-270e-447f-88ae-36ac8160644b status: 200 OK code: 200 - duration: 137.922546ms - - id: 68 + duration: 141.801477ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3401,7 +3352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3411,7 +3362,7 @@ interactions: trailer: {} content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1871" @@ -3420,7 +3371,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:50 GMT + - Wed, 15 Oct 2025 14:57:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3430,11 +3381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b9ed64a-2523-430a-b598-c52a085ff594 + - f0969757-0c35-4fe0-8578-9b951cdb206b status: 200 OK code: 200 - duration: 139.134424ms - - id: 69 + duration: 148.230591ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3450,7 +3401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3460,7 +3411,7 @@ interactions: trailer: {} content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1871" @@ -3469,7 +3420,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:50 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3479,11 +3430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9a53e1-8573-4dde-911d-db782394e5a3 + - e8f407e8-fe30-4167-a9cf-8650687949bb status: 200 OK code: 200 - duration: 165.490395ms - - id: 70 + duration: 143.707655ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3499,7 +3450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: GET response: proto: HTTP/2.0 @@ -3509,7 +3460,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3a949809-c6a3-4873-afc7-5058069c86a4","type":"not_found"}' headers: Content-Length: - "143" @@ -3518,7 +3469,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:50 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3528,11 +3479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 691dfe16-638e-4bf4-b4f1-230c57b37354 + - 61e5831a-6483-421c-9c5b-0d0d6616f057 status: 404 Not Found code: 404 - duration: 29.150907ms - - id: 71 + duration: 27.894647ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3548,7 +3499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: GET response: proto: HTTP/2.0 @@ -3558,7 +3509,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:45.418014Z","id":"3a949809-c6a3-4873-afc7-5058069c86a4","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:45.418014Z","id":"33ea259f-a086-478d-a923-5e65a298df24","product_resource_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:45.418014Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -3567,7 +3518,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:50 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3577,11 +3528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 416febdb-9099-4f3a-9d21-a70cd8de0684 + - 0738f864-d864-4284-af5e-304bb82a2bd4 status: 200 OK code: 200 - duration: 111.055125ms - - id: 72 + duration: 98.958995ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3597,7 +3548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/user_data method: GET response: proto: HTTP/2.0 @@ -3616,7 +3567,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:51 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3626,11 +3577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d2cc49a-95c7-46f1-8056-7bf88d429e45 + - 38b1de27-f342-44a5-9702-e1f10c8c5c23 status: 200 OK code: 200 - duration: 90.106019ms - - id: 73 + duration: 136.621546ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3646,7 +3597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics method: GET response: proto: HTTP/2.0 @@ -3665,9 +3616,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:51 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3677,13 +3628,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc691730-6d87-4f05-a15d-dd0d94f45de6 + - ec5b384d-9238-45fb-9e74-fdef511c2536 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 160.436908ms - - id: 74 + duration: 103.797762ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3699,7 +3650,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -3709,7 +3660,7 @@ interactions: trailer: {} content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1871" @@ -3718,7 +3669,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:51 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3728,11 +3679,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c350816-d2b5-4ccf-a8f9-4104581ea9d2 + - 431df2bb-2696-4f2c-b74f-8dba376d25a9 status: 200 OK code: 200 - duration: 172.238604ms - - id: 75 + duration: 158.645427ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3743,14 +3694,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"87093c60-561c-41be-8caf-50b4ae177439"}' + body: '{"private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics method: POST response: proto: HTTP/2.0 @@ -3760,7 +3711,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3769,7 +3720,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:51 GMT + - Wed, 15 Oct 2025 14:57:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3779,11 +3730,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a74aaf8-ccb3-45f6-9e89-bc0581dbc964 + - d8aed71e-8600-4a23-ae73-cfa6832871e4 status: 201 Created code: 201 - duration: 559.971676ms - - id: 76 + duration: 574.785022ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3799,7 +3750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -3809,7 +3760,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3818,7 +3769,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:52 GMT + - Wed, 15 Oct 2025 14:57:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3828,11 +3779,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 751758d4-6105-45bb-b18b-d27824235280 + - f098d06c-5e76-4aa5-8b93-765b52d7a8a7 status: 200 OK code: 200 - duration: 118.058934ms - - id: 77 + duration: 101.349045ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3848,7 +3799,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -3858,7 +3809,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3867,7 +3818,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:04:57 GMT + - Wed, 15 Oct 2025 14:57:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3877,11 +3828,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9665668-2c6b-4700-b4bb-2f4032a174d3 + - f5aa9381-3c92-4006-a17f-bbae622245a4 status: 200 OK code: 200 - duration: 122.83392ms - - id: 78 + duration: 96.336611ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3897,7 +3848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -3907,7 +3858,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3916,7 +3867,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:02 GMT + - Wed, 15 Oct 2025 14:58:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3926,11 +3877,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac549700-5fd7-4bc2-ae6e-78be3af95104 + - c2344ba8-7177-4d2b-8e7e-57d292d48480 status: 200 OK code: 200 - duration: 91.342876ms - - id: 79 + duration: 95.922225ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3946,7 +3897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -3956,7 +3907,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3965,7 +3916,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:07 GMT + - Wed, 15 Oct 2025 14:58:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -3975,11 +3926,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feeac264-5e06-44fb-aa21-85c2a867fb49 + - 3079d93d-3155-4dfa-8fe2-9e73c599015d status: 200 OK code: 200 - duration: 97.234315ms - - id: 80 + duration: 105.437267ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3995,7 +3946,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4005,7 +3956,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4014,7 +3965,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:12 GMT + - Wed, 15 Oct 2025 14:58:13 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4024,11 +3975,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1967d6e0-592d-467a-9095-3b9867c92bb4 + - faa5dff8-6152-4afa-941f-5e12db4968ae status: 200 OK code: 200 - duration: 105.079989ms - - id: 81 + duration: 109.343231ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4044,7 +3995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4054,7 +4005,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4063,7 +4014,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:17 GMT + - Wed, 15 Oct 2025 14:58:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4073,11 +4024,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17381996-637e-4a4d-89e2-3acd6b010bf6 + - 620be165-0ead-4036-81fb-72d6b4d8f31b status: 200 OK code: 200 - duration: 109.369229ms - - id: 82 + duration: 164.664897ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4093,7 +4044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4103,7 +4054,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4112,7 +4063,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:22 GMT + - Wed, 15 Oct 2025 14:58:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4122,11 +4073,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 675aa921-709e-457a-8e18-9373ee10e4ea + - 354d5f13-cfc9-4940-ab34-9eb7cc24152e status: 200 OK code: 200 - duration: 106.771596ms - - id: 83 + duration: 95.792956ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4142,7 +4093,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4152,7 +4103,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4161,7 +4112,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:27 GMT + - Wed, 15 Oct 2025 14:58:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4171,11 +4122,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b576782d-4b4d-4647-b26b-c24983417c58 + - 28d43660-9fe2-42d0-afac-7b707f61d0da status: 200 OK code: 200 - duration: 100.77529ms - - id: 84 + duration: 112.117919ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4191,7 +4142,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4201,7 +4152,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:04:51.636710+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4210,7 +4161,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:32 GMT + - Wed, 15 Oct 2025 14:58:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4220,11 +4171,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bff6ebc-9544-48d0-adcb-73a390ace83f + - e1a59d94-e280-40da-8886-e9e7e705d3ba status: 200 OK code: 200 - duration: 101.220787ms - - id: 85 + duration: 99.533781ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4240,7 +4191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4248,18 +4199,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:39 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4269,11 +4220,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3800168b-7e5b-41d9-b22f-2d9acf7c648d + - 660ba81a-8755-43a6-9705-9b8d08a67d9c status: 200 OK code: 200 - duration: 101.025567ms - - id: 86 + duration: 108.099211ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4289,7 +4240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4297,18 +4248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4318,11 +4269,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 460ce9f2-98a5-4034-8445-8eae5f349746 + - 921d38e8-1952-44f0-b748-3e5a3d51d731 status: 200 OK code: 200 - duration: 126.718807ms - - id: 87 + duration: 103.48661ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4338,7 +4289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4346,18 +4297,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2329" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:49 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4367,11 +4318,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f124e933-5332-4c8a-af3f-0588fd53af4c + - bbb68890-acfc-4e8b-b2ca-69a6ccfe00da status: 200 OK code: 200 - duration: 142.680579ms - - id: 88 + duration: 99.371611ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4387,7 +4338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4395,18 +4346,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:57:52.809893+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1060" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4416,48 +4367,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e029da7-1893-43c6-9500-12fd503df2d2 + - 57e7c326-04e0-45b8-9aa9-74ab72c8071d status: 200 OK code: 200 - duration: 57.485848ms - - id: 89 + duration: 111.082508ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 131 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4467,11 +4416,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b563f580-6b56-4473-a28c-a755a30e0ea4 + - f8822f16-f393-4323-be5f-7dadee681249 status: 200 OK code: 200 - duration: 99.848012ms - - id: 90 + duration: 110.984854ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4487,7 +4436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -4495,18 +4444,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4516,11 +4465,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75bee964-c0a7-4925-9df1-dd1376c5830a + - 8a940582-0f34-498f-aa5a-a19d39138408 status: 200 OK code: 200 - duration: 25.010632ms - - id: 91 + duration: 101.191942ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4536,7 +4485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -4544,18 +4493,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 2329 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:38 GMT + - Wed, 15 Oct 2025 14:58:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4565,11 +4514,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99603abc-045e-4baa-bfef-f016786c07cf + - 39584c7a-9aac-4c66-b2ec-ae01e0a9f64e status: 200 OK code: 200 - duration: 27.559017ms - - id: 92 + duration: 152.168706ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,7 +4534,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4cee817-8e78-4406-9025-74a0beabfcd3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4593,18 +4542,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 408 + content_length: 1060 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.052821Z","custom_routes_propagation_enabled":true,"id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:03:54.052821Z"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:7fdd:e0bd:b1d0:402d/64","created_at":"2025-10-15T14:57:52.984003Z","id":"2e9255f8-8e37-41a2-8049-df59509ea43a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:52.984003Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-15T14:57:52.873458Z","id":"9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:52.873458Z","zone":null}],"total_count":2}' headers: Content-Length: - - "408" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4614,46 +4563,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80be2b6b-6232-415c-a279-5a5eb0df1d59 + - 601efdae-c143-4b76-81f1-f11abc6aae0c status: 200 OK code: 200 - duration: 97.506296ms - - id: 93 + duration: 52.283589ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 131 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2415 + content_length: 422 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-15T14:59:00.171584Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - - "2415" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4663,10 +4614,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ae8b483-e92f-48ed-bfde-b62c623e3c9b + - 381308ef-21ec-4d7a-9f59-c9b0050527f6 status: 200 OK code: 200 - duration: 125.481726ms + duration: 157.644963ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-15T14:59:00.171584Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 43bebf89-422a-4bd4-816f-8e45fbc34ebc + status: 200 OK + code: 200 + duration: 50.237692ms - id: 94 request: proto: HTTP/1.1 @@ -4683,7 +4683,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -4691,18 +4691,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2324 + content_length: 422 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-15T14:59:00.171584Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - - "2324" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4712,10 +4712,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a04101b-24d2-4054-bf6e-5571f8dae26a + - cd759430-7905-4b1a-8c88-3a9e40d06cb3 status: 200 OK code: 200 - duration: 149.197151ms + duration: 36.66103ms - id: 95 request: proto: HTTP/1.1 @@ -4732,7 +4732,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a648981-37eb-4da0-8b17-9d66cab472db method: GET response: proto: HTTP/2.0 @@ -4740,18 +4740,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 408 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' + body: '{"created_at":"2025-10-15T14:57:00.960639Z","custom_routes_propagation_enabled":true,"id":"3a648981-37eb-4da0-8b17-9d66cab472db","is_default":false,"name":"tf-vpc-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:57:00.960639Z"}' headers: Content-Length: - - "143" + - "408" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4761,10 +4761,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cce9859-a7bc-4f44-813f-d4f1cc04f841 - status: 404 Not Found - code: 404 - duration: 43.204377ms + - 058e4044-0911-411e-9792-b0e5432ad21b + status: 200 OK + code: 200 + duration: 26.741672ms - id: 96 request: proto: HTTP/1.1 @@ -4781,7 +4781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/573ebb18-dd30-48d9-81f6-fd1f6011b01a method: GET response: proto: HTTP/2.0 @@ -4789,18 +4789,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1079 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' + body: '{"created_at":"2025-10-15T14:57:01.204489Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:57:01.204489Z","id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"},{"created_at":"2025-10-15T14:57:01.204489Z","id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:136d::/64","updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}],"tags":[],"updated_at":"2025-10-15T14:57:01.204489Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - - "143" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4810,10 +4810,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71e77f42-fa11-482c-8b11-b6287d320e1a - status: 404 Not Found - code: 404 - duration: 29.931488ms + - a75cf372-4d5a-4572-aeb0-0730a220094e + status: 200 OK + code: 200 + duration: 26.056841ms - id: 97 request: proto: HTTP/1.1 @@ -4830,7 +4830,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -4838,18 +4838,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 2326 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.166333Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"87093c60-561c-41be-8caf-50b4ae177439","name":"tf-pn-vpn","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:03:54.166333Z","id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"},{"created_at":"2025-10-09T09:03:54.166333Z","id":"3592e1c5-0ed7-4391-9b2f-d15edf414399","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:450d::/64","updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}],"tags":[],"updated_at":"2025-10-09T09:03:54.166333Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1079" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4859,10 +4859,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa025349-b713-4176-a086-de038ccc3a17 + - b46c5410-ee88-4337-900f-01ee7f66d375 status: 200 OK code: 200 - duration: 90.16266ms + duration: 153.707196ms - id: 98 request: proto: HTTP/1.1 @@ -4879,7 +4879,154 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2329 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2329" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ccc29026-0bc1-4e82-92d7-5ddb96ea80e7 + status: 200 OK + code: 200 + duration: 157.815252ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9b072fe-b68e-4136-af1d-c387a3633a93","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe242364-7f84-4d0c-927d-ebaca1b4df2c + status: 404 Not Found + code: 404 + duration: 26.383281ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3a949809-c6a3-4873-afc7-5058069c86a4","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b47e072-1de2-4cd4-a1fb-db01a52f0e29 + status: 404 Not Found + code: 404 + duration: 34.276329ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -4889,7 +5036,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:04:44.051967Z","id":"63a8cfe5-7d7f-4310-97c4-30907f891636","product_resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:04:44.051967Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:01.778673Z","id":"aa4f91f6-f776-4fc8-9061-632e14588918","product_resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:01.778673Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -4898,7 +5045,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4908,11 +5055,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 715c6fcd-1474-4d49-872e-03c1ac97d79c + - 63707f34-7b8e-487f-9d27-bc3f0cb19191 status: 200 OK code: 200 - duration: 87.567638ms - - id: 99 + duration: 86.872202ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -4928,7 +5075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: GET response: proto: HTTP/2.0 @@ -4938,7 +5085,7 @@ interactions: trailer: {} content_length: 684 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:54.928030Z","id":"cd9056a5-7214-451e-b328-4075ec07470b","product_resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:54.928030Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:45.418014Z","id":"3a949809-c6a3-4873-afc7-5058069c86a4","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:57:45.418014Z","id":"33ea259f-a086-478d-a923-5e65a298df24","product_resource_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:45.418014Z","zone":"fr-par-1"}' headers: Content-Length: - "684" @@ -4947,7 +5094,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -4957,11 +5104,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b4e8cd1-e93e-4dc4-86a8-f32e40094f86 + - 9c1815c9-67e0-45de-b0c7-03e5338e6ba4 status: 200 OK code: 200 - duration: 81.622764ms - - id: 100 + duration: 107.098164ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4977,7 +5124,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/user_data method: GET response: proto: HTTP/2.0 @@ -4996,7 +5143,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5006,11 +5153,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf6ea14-442b-4ea6-96f4-8fde52e5f0c2 + - dc2893de-691d-43ce-8e78-fc14708eed69 status: 200 OK code: 200 - duration: 90.510738ms - - id: 101 + duration: 80.916399ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5026,7 +5173,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/user_data method: GET response: proto: HTTP/2.0 @@ -5045,7 +5192,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:00 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5055,11 +5202,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fb3940f-b1ed-44c8-9200-72e0c1f3fb1b + - 84eb7d1f-619f-4dee-a282-818b64ae81de status: 200 OK code: 200 - duration: 96.417203ms - - id: 102 + duration: 114.683415ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5075,7 +5222,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics method: GET response: proto: HTTP/2.0 @@ -5085,7 +5232,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5094,9 +5241,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5106,13 +5253,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00e744a2-6094-45a6-ada9-acce4547df0c + - a4192485-682d-48e9-90a4-7e5e8832d06e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 104.880238ms - - id: 103 + duration: 109.455204ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5128,7 +5275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics method: GET response: proto: HTTP/2.0 @@ -5138,7 +5285,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5147,9 +5294,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5159,13 +5306,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3e77f07-1068-4a7a-897e-cb8de0272edf + - ccc886d2-cfec-4817-8ba9-ce77a45d85d6 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 117.150608ms - - id: 104 + duration: 118.508624ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5181,7 +5328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5191,7 +5338,7 @@ interactions: trailer: {} content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - "1056" @@ -5200,7 +5347,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5210,11 +5357,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc34fb68-520c-4486-9e87-8716e7019fd7 + - 691d64a2-c17b-4f13-90ae-84885213a881 status: 200 OK code: 200 - duration: 27.762189ms - - id: 105 + duration: 27.824799ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5230,7 +5377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4cee817-8e78-4406-9025-74a0beabfcd3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5240,7 +5387,7 @@ interactions: trailer: {} content_length: 1060 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:7fdd:e0bd:b1d0:402d/64","created_at":"2025-10-15T14:57:52.984003Z","id":"2e9255f8-8e37-41a2-8049-df59509ea43a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:52.984003Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-15T14:57:52.873458Z","id":"9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:52.873458Z","zone":null}],"total_count":2}' headers: Content-Length: - "1060" @@ -5249,7 +5396,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5259,11 +5406,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa5e68e8-5459-4556-949e-1a3daadb1276 + - a6ede848-0b54-4369-babe-f49c7f0268e3 status: 200 OK code: 200 - duration: 28.415818ms - - id: 106 + duration: 21.559517ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5279,7 +5426,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -5289,7 +5436,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5298,7 +5445,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5308,11 +5455,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 800577ba-8dfd-4f30-b4e3-86a8b81827be + - 71c64439-4aa3-4b14-b9c0-c6d8073d0572 status: 200 OK code: 200 - duration: 96.145745ms - - id: 107 + duration: 134.894611ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5328,7 +5475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -5338,7 +5485,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5347,7 +5494,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5357,11 +5504,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07d36d0b-4a77-4e4e-b23d-201d4aae22a6 + - 3b29d77e-c914-4b06-a2ab-3a5a53513991 status: 200 OK code: 200 - duration: 102.504189ms - - id: 108 + duration: 135.142775ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5377,7 +5524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -5385,18 +5532,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2329 + content_length: 2326 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2329" + - "2326" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5406,11 +5553,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dffcb5f6-b65a-46c7-961a-a38b05e854ed + - 89215646-b196-46e2-85f3-1afe6b9d3e30 status: 200 OK code: 200 - duration: 143.326145ms - - id: 109 + duration: 132.89471ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5426,7 +5573,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -5434,18 +5581,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2410 + content_length: 2329 uncompressed: false - body: '{"server":{"admin_password_encrypted_value":null,"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2410" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5455,11 +5602,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5edcf4dd-9e05-4000-ba45-97b170dd384d + - c0c1ea48-87ba-4edc-8360-e848edd2e07f status: 200 OK code: 200 - duration: 148.13662ms - - id: 110 + duration: 143.574962ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5475,7 +5622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=034a3a77-f13a-424e-95ec-24534239bf5f&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=3bee96fb-e7dd-4631-85c0-a34b76d69e8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5483,18 +5630,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1056 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:32bd:cd0c:f164:ec9f/64","created_at":"2025-10-09T09:04:51.815540Z","id":"45644fde-430a-4181-bae2-9a803304b201","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:51.815540Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-09T09:04:51.699025Z","id":"739ea513-baa4-4cea-9dac-690b86445ad9","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"034a3a77-f13a-424e-95ec-24534239bf5f","mac_address":"02:00:00:13:37:62","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:51.699025Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:539f:a7b0:e131:a018/64","created_at":"2025-10-15T14:57:09.358192Z","id":"2c41a352-7b4a-43fe-a060-9bcaa8abd70e","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:09.358192Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-15T14:57:09.206960Z","id":"9099a410-d322-477d-b40c-fc704e0248d7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","mac_address":"02:00:00:19:07:3B","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:09.206960Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1060" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5504,11 +5651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c4e6ea3-499e-45c1-b49a-3afb7351c3cf + - f1807f75-b2be-48d7-b888-6479b35113ac status: 200 OK code: 200 - duration: 47.16425ms - - id: 111 + duration: 38.973939ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5524,7 +5671,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=87093c60-561c-41be-8caf-50b4ae177439&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=004a8f7e-ef69-47ba-a4d4-e1fd69322bd2&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=573ebb18-dd30-48d9-81f6-fd1f6011b01a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4cee817-8e78-4406-9025-74a0beabfcd3&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5532,18 +5679,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 1060 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:450d:ebeb:d74d:5063:1e72/64","created_at":"2025-10-09T09:04:03.960810Z","id":"8cbafcda-c41f-4250-92b7-f947222d9540","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"3592e1c5-0ed7-4391-9b2f-d15edf414399"},"tags":[],"updated_at":"2025-10-09T09:04:03.960810Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-10-09T09:04:03.832713Z","id":"11662a9e-78ee-448a-9705-eb650cec7fa6","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","mac_address":"02:00:00:1B:8D:49","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"dac79523-6c0e-465e-b7a9-2a0ac09a91ab"},"tags":[],"updated_at":"2025-10-09T09:04:03.832713Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:136d:7fdd:e0bd:b1d0:402d/64","created_at":"2025-10-15T14:57:52.984003Z","id":"2e9255f8-8e37-41a2-8049-df59509ea43a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b01ede4f-0e8a-4859-ae2c-f06bcebf1cbc"},"tags":[],"updated_at":"2025-10-15T14:57:52.984003Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-10-15T14:57:52.873458Z","id":"9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4cee817-8e78-4406-9025-74a0beabfcd3","mac_address":"02:00:00:10:89:3C","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5f1e4e5f-1f24-4d94-9f78-eea268c6bf78"},"tags":[],"updated_at":"2025-10-15T14:57:52.873458Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1056" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5553,11 +5700,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3f0610f-35f7-4ce1-a4c3-6ff7f0fa57f6 + - a12f12e2-6648-4fe2-9354-ea4ae19ad341 status: 200 OK code: 200 - duration: 55.295668ms - - id: 112 + duration: 40.980863ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5573,7 +5720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -5583,7 +5730,7 @@ interactions: trailer: {} content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:40.474373Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"3f3a92cf-f813-40f3-9683-45cde759af29","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-09T09:05:38.478953Z","vpc_id":"2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d"}' + body: '{"created_at":"2025-10-15T14:57:40.693176Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7158bd91-e219-4ad7-8605-5b91e0ab44b8","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-10-15T14:59:00.171584Z","vpc_id":"3a648981-37eb-4da0-8b17-9d66cab472db"}' headers: Content-Length: - "422" @@ -5592,7 +5739,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:39 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5602,11 +5749,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef9f6107-903c-46ad-93bb-f9ead02cc047 + - 558557b9-bfac-46ad-a4ea-4b7a3ca688da status: 200 OK code: 200 - duration: 29.9814ms - - id: 113 + duration: 24.102966ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5622,7 +5769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: DELETE response: proto: HTTP/2.0 @@ -5639,7 +5786,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5649,11 +5796,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d3cc5e3-3a0d-4abb-89db-bf9938a2703c + - 2c95dbb8-244c-4c1d-9290-379c981e2120 status: 204 No Content code: 204 - duration: 54.619163ms - - id: 114 + duration: 51.556259ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5669,7 +5816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -5679,7 +5826,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:03.515277+00:00","id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","ipam_ip_ids":["11662a9e-78ee-448a-9705-eb650cec7fa6","8cbafcda-c41f-4250-92b7-f947222d9540"],"mac_address":"02:00:00:1b:8d:49","modification_date":"2025-10-09T09:04:38.445018+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:08.910363+00:00","id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","ipam_ip_ids":["9099a410-d322-477d-b40c-fc704e0248d7","2c41a352-7b4a-43fe-a060-9bcaa8abd70e"],"mac_address":"02:00:00:19:07:3b","modification_date":"2025-10-15T14:57:37.285481+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5688,7 +5835,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5698,11 +5845,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ff5840-722c-43be-9d31-381ac38fe74c + - e308e062-a67b-4b36-a2f4-46fde9038f9b status: 200 OK code: 200 - duration: 95.903916ms - - id: 115 + duration: 93.643903ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5718,7 +5865,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 method: GET response: proto: HTTP/2.0 @@ -5728,7 +5875,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:04:51.427538+00:00","id":"034a3a77-f13a-424e-95ec-24534239bf5f","ipam_ip_ids":["739ea513-baa4-4cea-9dac-690b86445ad9","45644fde-430a-4181-bae2-9a803304b201"],"mac_address":"02:00:00:13:37:62","modification_date":"2025-10-09T09:05:35.331677+00:00","private_network_id":"87093c60-561c-41be-8caf-50b4ae177439","server_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:57:52.598533+00:00","id":"c4cee817-8e78-4406-9025-74a0beabfcd3","ipam_ip_ids":["9b72b8ff-d7ad-46aa-8d4b-caaa590a8407","2e9255f8-8e37-41a2-8049-df59509ea43a"],"mac_address":"02:00:00:10:89:3c","modification_date":"2025-10-15T14:58:56.547822+00:00","private_network_id":"573ebb18-dd30-48d9-81f6-fd1f6011b01a","server_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5737,7 +5884,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5747,11 +5894,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 572f6636-07c7-49a0-87ee-6c1f3b3bf991 + - 67d0643b-d3bb-4693-a864-7583c31ee879 status: 200 OK code: 200 - duration: 105.98067ms - - id: 116 + duration: 130.770485ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5767,7 +5914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: DELETE response: proto: HTTP/2.0 @@ -5784,7 +5931,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5794,11 +5941,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30b7e4e2-db66-44c4-8db4-7190d01940b2 + - 17ce735d-638d-4b62-8ec2-ed7969aa16fa status: 204 No Content code: 204 - duration: 378.697381ms - - id: 117 + duration: 458.564665ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -5814,7 +5961,54 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/private_nics/004a8f7e-ef69-47ba-a4d4-e1fd69322bd2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec0b4301-ecb5-461c-9ccf-750ad549ac05 + status: 204 No Content + code: 204 + duration: 472.850796ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/private_nics/3bee96fb-e7dd-4631-85c0-a34b76d69e8d method: GET response: proto: HTTP/2.0 @@ -5824,7 +6018,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"004a8f7e-ef69-47ba-a4d4-e1fd69322bd2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"3bee96fb-e7dd-4631-85c0-a34b76d69e8d","type":"not_found"}' headers: Content-Length: - "148" @@ -5833,7 +6027,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5843,11 +6037,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4f3af2-0eda-4bff-b6ac-76c62e92f4c2 + - ce2c7970-0fc9-492b-a548-e62bf0e399fd status: 404 Not Found code: 404 - duration: 101.743828ms - - id: 118 + duration: 114.851574ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -5863,24 +6057,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/private_nics/c4cee817-8e78-4406-9025-74a0beabfcd3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 148 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c4cee817-8e78-4406-9025-74a0beabfcd3","type":"not_found"}' headers: + Content-Length: + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5890,11 +6086,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56aae9d4-94bd-4a32-8bb7-5f6dc6689f39 - status: 204 No Content - code: 204 - duration: 405.799957ms - - id: 119 + - b1eb022e-9f9a-4c29-a583-9d749a16ddc7 + status: 404 Not Found + code: 404 + duration: 122.807479ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -5910,7 +6106,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/private_nics/034a3a77-f13a-424e-95ec-24534239bf5f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -5918,18 +6114,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 1868 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"034a3a77-f13a-424e-95ec-24534239bf5f","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "1868" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5939,11 +6135,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2864b923-a757-4dd6-83a2-46d87a01f9c1 - status: 404 Not Found - code: 404 - duration: 107.111525ms - - id: 120 + - b734747c-1ea6-42ae-8b18-9a296a860ad3 + status: 200 OK + code: 200 + duration: 143.149698ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -5959,7 +6155,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -5967,18 +6163,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1866 + content_length: 1868 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:04:00.746203+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:57:05.710673+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1866" + - "1868" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -5988,11 +6184,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 681de0ed-12ed-40e7-9bd5-45ca9747ed24 + - fd107ddc-894b-4790-bede-de9bd1556761 status: 200 OK code: 200 - duration: 132.362585ms - - id: 121 + duration: 139.533001ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6008,7 +6204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -6018,7 +6214,7 @@ interactions: trailer: {} content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:04:48.739122+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1871" @@ -6027,7 +6223,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:40 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6037,50 +6233,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c58dd70-dcd2-42df-a897-d77fd1c38884 + - 6b63946a-e9d0-495d-858c-1f0a1e3fe7b0 status: 200 OK code: 200 - duration: 141.672353ms - - id: 122 + duration: 162.665141ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1871 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478/action","href_result":"/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478","id":"6f1e976a-bb39-4c30-9d86-07eee2222173","progress":0,"started_at":"2025-10-09T09:05:41.166343+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:57:49.282242+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:41 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6f1e976a-bb39-4c30-9d86-07eee2222173 + - Wed, 15 Oct 2025 14:59:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6090,11 +6282,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c759c806-0006-44b1-8ceb-c7ae150e18b5 - status: 202 Accepted - code: 202 - duration: 314.099612ms - - id: 123 + - 9ba9b66c-1a89-4515-8a86-5be903934a5e + status: 200 OK + code: 200 + duration: 161.279178ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6112,7 +6304,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/action method: POST response: proto: HTTP/2.0 @@ -6122,7 +6314,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c/action","href_result":"/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c","id":"8672955b-1f4c-485b-8bc8-8ff258e1c676","progress":0,"started_at":"2025-10-09T09:05:41.321422+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/11b842c0-f606-486c-b54e-c85f7f976a8a/action","href_result":"/servers/11b842c0-f606-486c-b54e-c85f7f976a8a","id":"1acf949b-d39e-48d1-87a8-ac8a9fdf3cbe","progress":0,"started_at":"2025-10-15T14:59:02.844569+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -6131,9 +6323,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:41 GMT + - Wed, 15 Oct 2025 14:59:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8672955b-1f4c-485b-8bc8-8ff258e1c676 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1acf949b-d39e-48d1-87a8-ac8a9fdf3cbe Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6143,11 +6335,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 398d9a89-b3c0-4d7e-80c4-36c2ad44298c + - 5d9e5690-2654-4616-96ef-3509978a4bd2 status: 202 Accepted code: 202 - duration: 566.530031ms - - id: 124 + duration: 275.757433ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6163,7 +6355,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -6171,18 +6363,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1834 + content_length: 1831 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:04:43.920170+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"104","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:d3","maintenances":[],"modification_date":"2025-10-09T09:05:40.928055+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"377b1464-78e4-4050-99a2-05beab6a9398","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:01.637596+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11b842c0-f606-486c-b54e-c85f7f976a8a","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"1001","node_id":"131","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:67","maintenances":[],"modification_date":"2025-10-15T14:59:02.628206+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c9b072fe-b68e-4136-af1d-c387a3633a93","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1834" + - "1831" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:41 GMT + - Wed, 15 Oct 2025 14:59:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6192,11 +6384,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a935c442-ddf4-4aa5-b7f2-2bef69ca32a4 + - 69e93963-04b7-402c-9c8c-7000a7ebccf0 status: 200 OK code: 200 - duration: 141.422566ms - - id: 125 + duration: 134.124433ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c/action","href_result":"/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c","id":"408867d4-d592-4c11-af6c-8bb7760a34f1","progress":0,"started_at":"2025-10-15T14:59:03.051401+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/408867d4-d592-4c11-af6c-8bb7760a34f1 + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c27c238-a9d0-4168-ab09-9e983e285146 + status: 202 Accepted + code: 202 + duration: 326.342799ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6212,7 +6457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -6220,18 +6465,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1829 + content_length: 1834 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:03:54.757157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","image":{"arch":"x86_64","creation_date":"2025-07-02T08:19:29.294704+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"d1cd3c67-5c33-4e38-8232-2bfe4e53f41a","modification_date":"2025-07-02T08:19:29.294704+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"101","node_id":"71","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c9","maintenances":[],"modification_date":"2025-10-09T09:05:40.815612+00:00","name":"tf-server-vpn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:57:45.278182+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","image":{"arch":"x86_64","creation_date":"2025-10-14T13:16:48.266462+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"11b0d350-95c6-4e26-be32-4fff36610fe3","modification_date":"2025-10-14T13:16:48.266462+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"9126c5f9-0884-4557-af39-30c3261525cc","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"172","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:79","maintenances":[],"modification_date":"2025-10-15T14:59:02.786310+00:00","name":"tf-server-vpn-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"3a949809-c6a3-4873-afc7-5058069c86a4","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1829" + - "1834" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:41 GMT + - Wed, 15 Oct 2025 14:59:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6241,11 +6486,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef0b6fab-15bd-4089-8190-0743ce18d00a + - 59cb19ea-78b8-4a33-864b-187042a82da5 status: 200 OK code: 200 - duration: 167.171639ms - - id: 126 + duration: 154.200356ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6261,7 +6506,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/87093c60-561c-41be-8caf-50b4ae177439 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/573ebb18-dd30-48d9-81f6-fd1f6011b01a method: DELETE response: proto: HTTP/2.0 @@ -6278,7 +6523,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:42 GMT + - Wed, 15 Oct 2025 14:59:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6288,11 +6533,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4a4eb9e-9687-45a4-b65f-99893f705340 + - e950edab-1658-460f-9ab1-e8df0e7174ec status: 204 No Content code: 204 - duration: 1.382021392s - - id: 127 + duration: 1.204584148s + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6308,7 +6553,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2cb7d380-5d16-4c6e-aa99-1fbd62a3c91d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a648981-37eb-4da0-8b17-9d66cab472db method: DELETE response: proto: HTTP/2.0 @@ -6325,7 +6570,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:42 GMT + - Wed, 15 Oct 2025 14:59:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6335,11 +6580,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bced817e-5812-448d-bc76-dc5f4b31bec3 + - 21751359-c6ac-4ed8-ae59-6054f1ce1a26 status: 204 No Content code: 204 - duration: 193.123332ms - - id: 128 + duration: 172.936972ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6355,7 +6600,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/edf2b24d-346d-493f-b039-6fc9b3ad3478 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11b842c0-f606-486c-b54e-c85f7f976a8a method: GET response: proto: HTTP/2.0 @@ -6365,7 +6610,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"edf2b24d-346d-493f-b039-6fc9b3ad3478","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"11b842c0-f606-486c-b54e-c85f7f976a8a","type":"not_found"}' headers: Content-Length: - "143" @@ -6374,7 +6619,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6384,11 +6629,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 982e8fcb-0cc3-4f04-9888-c26f174f4a4f + - 84d7a29b-7af0-426f-8ad8-e0b2b7aeee72 status: 404 Not Found code: 404 - duration: 55.72399ms - - id: 129 + duration: 46.773717ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6404,7 +6649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -6414,7 +6659,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"377b1464-78e4-4050-99a2-05beab6a9398","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9b072fe-b68e-4136-af1d-c387a3633a93","type":"not_found"}' headers: Content-Length: - "143" @@ -6423,7 +6668,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6433,11 +6678,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf5e6427-bcce-4d37-b520-9cef146dbe55 + - 6595ce84-17f9-419b-88b0-6010971a0493 status: 404 Not Found code: 404 - duration: 29.512197ms - - id: 130 + duration: 24.366421ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6453,7 +6698,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 method: GET response: proto: HTTP/2.0 @@ -6463,7 +6708,7 @@ interactions: trailer: {} content_length: 477 uncompressed: false - body: '{"created_at":"2025-10-09T09:04:44.051967Z","id":"377b1464-78e4-4050-99a2-05beab6a9398","last_detached_at":"2025-10-09T09:05:43.162587Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:05:43.162587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:01.778673Z","id":"c9b072fe-b68e-4136-af1d-c387a3633a93","last_detached_at":"2025-10-15T14:59:04.973359Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:04.973359Z","zone":"fr-par-1"}' headers: Content-Length: - "477" @@ -6472,7 +6717,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6482,11 +6727,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62ecd50d-3cf3-4e06-80d2-0178e0cdff29 + - 6e5c342b-0a69-4428-9da7-9468fa6fc045 status: 200 OK code: 200 - duration: 93.68379ms - - id: 131 + duration: 82.260695ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6502,7 +6747,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9610f6d0-8b03-4e80-a176-9f7612f9908c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8ed81672-ecd1-4585-ae18-ff9d0bf9062c method: GET response: proto: HTTP/2.0 @@ -6512,7 +6757,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9610f6d0-8b03-4e80-a176-9f7612f9908c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8ed81672-ecd1-4585-ae18-ff9d0bf9062c","type":"not_found"}' headers: Content-Length: - "143" @@ -6521,7 +6766,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6531,11 +6776,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcb9cd21-601d-474f-ac2d-07578e873a8a + - 416d7460-bcf3-46a4-af79-f0e5adc92eae status: 404 Not Found code: 404 - duration: 54.375057ms - - id: 132 + duration: 53.433388ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6551,7 +6796,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: GET response: proto: HTTP/2.0 @@ -6561,7 +6806,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3a949809-c6a3-4873-afc7-5058069c86a4","type":"not_found"}' headers: Content-Length: - "143" @@ -6570,7 +6815,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6580,11 +6825,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4eae7b4-6b42-4228-be87-95e35fe81581 + - ca19c411-52aa-4946-bd52-918da2589604 status: 404 Not Found code: 404 - duration: 30.477767ms - - id: 133 + duration: 31.305274ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6600,26 +6845,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9b072fe-b68e-4136-af1d-c387a3633a93 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:54.928030Z","id":"9b8cee05-5f33-4fcc-8455-ad22aa056e5e","last_detached_at":"2025-10-09T09:05:43.548377Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"bbd3ec0d-c682-4b1d-89ce-2cbb45339114","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:05:43.548377Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6629,11 +6872,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c863d6-8b37-4e22-bdc0-42bcc1b5fc95 - status: 200 OK - code: 200 - duration: 87.10784ms - - id: 134 + - c566bfb3-163b-48de-a7a4-b09b760b2cb6 + status: 204 No Content + code: 204 + duration: 172.017916ms + - id: 139 request: proto: HTTP/1.1 proto_major: 1 @@ -6649,24 +6892,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/377b1464-78e4-4050-99a2-05beab6a9398 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 477 uncompressed: false - body: "" + body: '{"created_at":"2025-10-15T14:57:45.418014Z","id":"3a949809-c6a3-4873-afc7-5058069c86a4","last_detached_at":"2025-10-15T14:59:05.087673Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"9126c5f9-0884-4557-af39-30c3261525cc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:05.087673Z","zone":"fr-par-1"}' headers: + Content-Length: + - "477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6676,11 +6921,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04b86b99-fa66-44ed-b954-fb7711ea38f2 - status: 204 No Content - code: 204 - duration: 159.105428ms - - id: 135 + - db58f582-ef77-45a2-8c43-3e94ca71e5b9 + status: 200 OK + code: 200 + duration: 86.156905ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6696,7 +6941,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9b8cee05-5f33-4fcc-8455-ad22aa056e5e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3a949809-c6a3-4873-afc7-5058069c86a4 method: DELETE response: proto: HTTP/2.0 @@ -6713,7 +6958,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6723,11 +6968,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7d53c9f-4f99-4cfb-a011-51d2970fa8f3 + - c8fa4204-fb84-4679-ae99-c4ac61cf1e44 status: 204 No Content code: 204 - duration: 158.685106ms - - id: 136 + duration: 200.149792ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -6743,7 +6988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/3f3a92cf-f813-40f3-9683-45cde759af29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7158bd91-e219-4ad7-8605-5b91e0ab44b8 method: GET response: proto: HTTP/2.0 @@ -6762,7 +7007,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:05:46 GMT + - Wed, 15 Oct 2025 14:59:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: @@ -6772,7 +7017,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9eb3f53-c0db-4d32-b8fb-963d6d77c61f + - c8ccfdbc-cb59-450f-8315-43fc935b2309 status: 404 Not Found code: 404 - duration: 26.174395ms + duration: 23.304595ms diff --git a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml index 69ac46c5c..57111e792 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' + body: '{"created_at":"2025-10-15T14:55:22.298043Z","custom_routes_propagation_enabled":true,"id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:55:22.298043Z"}' headers: Content-Length: - "444" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:14 GMT + - Wed, 15 Oct 2025 14:55:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a32fbc-4bf8-429f-8217-f0f227918cde + - da3d7354-5616-440e-83ad-a30c3fc59d19 status: 200 OK code: 200 - duration: 168.44596ms + duration: 174.19841ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9ffda9aa-ebee-4883-90fb-7d6866ffe920 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' + body: '{"created_at":"2025-10-15T14:55:22.298043Z","custom_routes_propagation_enabled":true,"id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:55:22.298043Z"}' headers: Content-Length: - "444" @@ -87,7 +87,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:14 GMT + - Wed, 15 Oct 2025 14:55:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -97,29 +97,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bb0458c-d6ff-4b5a-a6b5-c671086fe193 + - 1fe6763f-686f-4e9b-ac99-c23d31f99e81 status: 200 OK code: 200 - duration: 106.699034ms + duration: 94.03414ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 156 + content_length: 207 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-goofy-kowalevski","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' + body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -127,18 +127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 924 + content_length: 1085 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.055723Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - - "924" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:55:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d26797a9-1339-400d-bfcd-5772cea0a8bf + - f9079d0e-b255-4df6-b74d-7c6f0facffdf status: 200 OK code: 200 - duration: 804.25921ms + duration: 617.96379ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: GET response: proto: HTTP/2.0 @@ -176,18 +176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 924 + content_length: 1085 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.055723Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - - "924" + - "1085" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:55:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -197,29 +197,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cceba13-8c0b-4153-ace1-b706a53bcd3c + - 6aeae937-b2b7-441c-aedc-a168bec7943a status: 200 OK code: 200 - duration: 25.030655ms + duration: 99.187219ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 207 + content_length: 153 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101","default_route_propagation_enabled":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-pn-nifty-hermann","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: proto: HTTP/2.0 @@ -227,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 921 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:23.146513Z","zone":"fr-par-1"}' headers: Content-Length: - - "1085" + - "921" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:55:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d74fef43-9050-4aef-9fdd-96fdd365c6b2 + - 5d000b92-1d57-49f6-98e6-88533cff0ca3 status: 200 OK code: 200 - duration: 620.081708ms + duration: 1.019726313s - id: 5 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -276,18 +276,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1085 + content_length: 940 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:23.186876Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1085" + - "940" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:55:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e91b5559-4122-4db5-9efa-0099592a3432 + - 273fe277-2fd0-400f-9f3d-4da7298f84bf status: 200 OK code: 200 - duration: 20.47117ms + duration: 118.026462ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -325,18 +325,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 944 + content_length: 941 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.262234Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:23.388824Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "944" + - "941" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:20 GMT + - Wed, 15 Oct 2025 14:55:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66f59227-5cd0-4007-9a9a-09e12220143a + - 6f0acb24-a896-46f1-8c93-ffc336ff1102 status: 200 OK code: 200 - duration: 31.884418ms + duration: 36.58004ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -374,18 +374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 937 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:32.602999Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34801939-2f2b-4ae8-99f8-66c0d64acb42 + - 4c0a5585-cfd2-4509-a906-b3d35e053589 status: 200 OK code: 200 - duration: 31.037799ms + duration: 33.209863ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -423,18 +423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 937 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:32.602999Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e8f3bd2-da4b-4496-b1be-62372b1ea8d0 + - 249169c2-9b57-462e-b045-956e7201732e status: 200 OK code: 200 - duration: 25.019846ms + duration: 99.48066ms - id: 9 request: proto: HTTP/1.1 @@ -464,7 +464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9ffda9aa-ebee-4883-90fb-7d6866ffe920 method: GET response: proto: HTTP/2.0 @@ -472,18 +472,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 444 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:22.298043Z","custom_routes_propagation_enabled":true,"id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:55:22.298043Z"}' headers: Content-Length: - - "940" + - "444" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc9657df-dcdb-4ad6-9ec7-e521a5476830 + - 396a6a8b-344c-4afc-890f-9f8a76e7d271 status: 200 OK code: 200 - duration: 33.127601ms + duration: 22.534531ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -521,18 +521,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 937 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:32.602999Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "444" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bfa02ea-56fe-4965-9a6c-819b9020cc6d + - b2636051-37e0-4acb-9fa7-fd6ee90e9fb1 status: 200 OK code: 200 - duration: 90.929168ms + duration: 26.757992ms - id: 11 request: proto: HTTP/1.1 @@ -562,7 +562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: GET response: proto: HTTP/2.0 @@ -572,7 +572,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - "1085" @@ -581,7 +581,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6db2c8a-6543-4c47-b357-73ae621eff07 + - fe8ac9f8-6a48-4f9d-834c-ddef0bb9e322 status: 200 OK code: 200 - duration: 248.792858ms + duration: 34.623662ms - id: 12 request: proto: HTTP/1.1 @@ -611,7 +611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -619,18 +619,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 937 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:32.602999Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "444" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3649dfed-f1d6-4e4f-ae01-a3ade7a0755f + - 91acde8f-03d5-4f4a-8994-76fdeb89198f status: 200 OK code: 200 - duration: 22.616076ms + duration: 83.503779ms - id: 13 request: proto: HTTP/1.1 @@ -660,7 +660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9ffda9aa-ebee-4883-90fb-7d6866ffe920 method: GET response: proto: HTTP/2.0 @@ -668,18 +668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 444 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:22.298043Z","custom_routes_propagation_enabled":true,"id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:55:22.298043Z"}' headers: Content-Length: - - "940" + - "444" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:55:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09ee2d2c-9793-4532-94c7-4362112bdf39 + - 44016407-f03d-4847-a162-3199ccc6b228 status: 200 OK code: 200 - duration: 27.265578ms + duration: 113.18102ms - id: 14 request: proto: HTTP/1.1 @@ -709,7 +709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: GET response: proto: HTTP/2.0 @@ -719,7 +719,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - "1085" @@ -728,7 +728,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c2553f8-2d60-4246-92f3-1b7d3079d827 + - 5e54b5bc-b5bf-4405-b460-99c063a28999 status: 200 OK code: 200 - duration: 94.133262ms + duration: 126.138925ms - id: 15 request: proto: HTTP/1.1 @@ -758,7 +758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -766,18 +766,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 937 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:21.809342Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:32.602999Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -787,10 +787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85570b91-0150-4dcd-bf68-8cc16ec93b58 + - cb53e998-da26-4fbb-8e88-ad630e00920f status: 200 OK code: 200 - duration: 28.715121ms + duration: 28.525275ms - id: 16 request: proto: HTTP/1.1 @@ -815,18 +815,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Link: - ; rel="next",; rel="last" Server: @@ -838,12 +838,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d38a164-7c6a-49a2-ac47-aa8ba58b375d + - 2a431a6c-1f4a-473f-8ee4-7f00bd1c8b6a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.716564ms + duration: 55.559086ms - id: 17 request: proto: HTTP/1.1 @@ -868,18 +868,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -891,12 +891,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8621126d-3ced-41e8-960a-7462e8af23bc + - c3509505-b851-4ca4-948e-97e2dba0985c X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 61.635551ms + duration: 56.191695ms - id: 18 request: proto: HTTP/1.1 @@ -932,7 +932,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -942,10 +942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07422e30-4af3-49c0-aaa1-c25b42589777 + - 97a9b3e1-5be4-4e6c-8232-bb4764b57785 status: 200 OK code: 200 - duration: 44.775217ms + duration: 122.505703ms - id: 19 request: proto: HTTP/1.1 @@ -957,7 +957,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","enable_masquerade":true,"push_default_route":true}' + body: '{"gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","enable_masquerade":true,"push_default_route":true}' form: {} headers: Content-Type: @@ -974,7 +974,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"created","updated_at":"2025-10-15T14:55:34.689009Z","zone":"fr-par-1"}' headers: Content-Length: - "393" @@ -983,7 +983,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -993,10 +993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb6e3f18-543b-40b1-8a6f-477b00eeefc3 + - ca9e6a79-5a02-4d24-a596-86c0006220a9 status: 200 OK code: 200 - duration: 337.515855ms + duration: 509.234106ms - id: 20 request: proto: HTTP/1.1 @@ -1013,7 +1013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -1021,18 +1021,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1337 + content_length: 1334 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:26.615313Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"created","updated_at":"2025-10-15T14:55:34.689009Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:34.789222Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1337" + - "1334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:26 GMT + - Wed, 15 Oct 2025 14:55:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1042,10 +1042,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c101d15e-91ef-4da3-a56d-2b22da27fdbe + - 310c25f0-2240-4c61-ab0b-1b55089ffe33 status: 200 OK code: 200 - duration: 30.379796ms + duration: 28.673734ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: trailer: {} content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:35.161656+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1721" @@ -1083,9 +1083,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:27 GMT + - Wed, 15 Oct 2025 14:55:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0929724-cb74-4f4a-a980-d7b685825562 + - 43fba9e4-0d6e-4b45-bb1a-2d3bfa32549b status: 201 Created code: 201 - duration: 1.180285086s + duration: 1.684737727s - id: 22 request: proto: HTTP/1.1 @@ -1115,7 +1115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -1125,7 +1125,7 @@ interactions: trailer: {} content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:35.161656+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1721" @@ -1134,7 +1134,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:27 GMT + - Wed, 15 Oct 2025 14:55:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1144,10 +1144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6afb51cd-a324-46e7-b5bd-7f45104090a4 + - 2cf3e367-7edc-4755-bf97-0cbbcd3df8f4 status: 200 OK code: 200 - duration: 140.622702ms + duration: 173.417281ms - id: 23 request: proto: HTTP/1.1 @@ -1164,7 +1164,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -1174,7 +1174,7 @@ interactions: trailer: {} content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:27.021243+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:35.161656+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1721" @@ -1183,7 +1183,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:27 GMT + - Wed, 15 Oct 2025 14:55:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1193,10 +1193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2681b89e-48be-4f88-8f38-c1b095884c30 + - 96fadc0b-8f80-447c-ab21-cb1873b6c39e status: 200 OK code: 200 - duration: 166.835178ms + duration: 164.448837ms - id: 24 request: proto: HTTP/1.1 @@ -1213,7 +1213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -1223,7 +1223,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:35.298578Z","id":"7179daf4-7269-4c40-839f-cb6934f2c10c","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:55:35.298578Z","id":"8cdaf112-0192-47bf-a907-51f812bf5317","product_resource_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:55:35.298578Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -1232,7 +1232,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:27 GMT + - Wed, 15 Oct 2025 14:55:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1242,10 +1242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18cc962b-c948-4f49-a87a-d65137c0d2c8 + - 684fb362-74c5-442c-a272-7b8ce6c7c8c5 status: 200 OK code: 200 - duration: 77.796464ms + duration: 81.090882ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1264,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/action method: POST response: proto: HTTP/2.0 @@ -1274,7 +1274,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action","href_result":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556","id":"4974e000-6f4a-4bff-9b62-5230d50b4401","progress":0,"started_at":"2025-10-09T09:38:28.212792+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/action","href_result":"/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea","id":"229fee63-3c43-4dd1-9818-44270c84701d","progress":0,"started_at":"2025-10-15T14:55:36.865282+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1283,9 +1283,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:28 GMT + - Wed, 15 Oct 2025 14:55:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4974e000-6f4a-4bff-9b62-5230d50b4401 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/229fee63-3c43-4dd1-9818-44270c84701d Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86f80321-f2e2-4034-a827-22eb6d4de756 + - f2cea0c7-8e2a-4a1f-812e-6af09e5f2feb status: 202 Accepted code: 202 - duration: 238.16914ms + duration: 308.540669ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -1325,7 +1325,7 @@ interactions: trailer: {} content_length: 1743 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:28.019483+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:36.620787+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1743" @@ -1334,7 +1334,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:28 GMT + - Wed, 15 Oct 2025 14:55:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d1504f-882e-4b53-97ee-cd5ae373d6ad + - a1476bee-fc94-4a55-a87b-33bffb2246ac status: 200 OK code: 200 - duration: 135.577686ms + duration: 153.840932ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -1372,18 +1372,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1337 + content_length: 1334 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"created","updated_at":"2025-10-09T09:38:26.494470Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:26.615313Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"created","updated_at":"2025-10-15T14:55:34.689009Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:34.789222Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1337" + - "1334" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:31 GMT + - Wed, 15 Oct 2025 14:55:39 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09c9d903-8cb3-447c-9fc6-f51f279bb698 + - 9b9aff38-19e5-4352-b8cd-5f1eaa39a9ee status: 200 OK code: 200 - duration: 33.6976ms + duration: 33.023834ms - id: 28 request: proto: HTTP/1.1 @@ -1413,7 +1413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -1421,18 +1421,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1923 + content_length: 1877 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1923" + - "1877" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:33 GMT + - Wed, 15 Oct 2025 14:55:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eacc6cb0-335d-4280-abf2-7fb96f4c7d5b + - c82df7b0-754b-479f-a5f5-e338a1697f7c status: 200 OK code: 200 - duration: 135.503114ms + duration: 147.920069ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: GET response: proto: HTTP/2.0 @@ -1472,7 +1472,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:40.914230Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - "1085" @@ -1481,7 +1481,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:33 GMT + - Wed, 15 Oct 2025 14:55:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e6183bd-74f1-447f-a187-7d919f0e1525 + - 6e755dc0-0880-4040-b743-632ab10b8122 status: 200 OK code: 200 - duration: 100.401378ms + duration: 24.297055ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -1521,7 +1521,7 @@ interactions: trailer: {} content_length: 1877 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1877" @@ -1530,7 +1530,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:33 GMT + - Wed, 15 Oct 2025 14:55:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64ad4af6-5e1b-43f8-93bb-22014aab7f1e + - d0722083-dc7c-4537-9137-ef4e8a4c0104 status: 200 OK code: 200 - duration: 145.353315ms + duration: 158.955258ms - id: 31 request: proto: HTTP/1.1 @@ -1555,14 +1555,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341"}' + body: '{"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics method: POST response: proto: HTTP/2.0 @@ -1572,7 +1572,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1581,7 +1581,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:34 GMT + - Wed, 15 Oct 2025 14:55:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f00bc7-bd24-4460-b38d-27a970612d02 + - 2ca408de-b286-4594-be72-456e80eab82d status: 201 Created code: 201 - duration: 649.408163ms + duration: 880.17941ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -1621,7 +1621,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1630,7 +1630,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:34 GMT + - Wed, 15 Oct 2025 14:55:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37e4fa7d-c906-412d-83c0-ef75fcd064f3 + - b3b87d56-d05c-488a-bc74-cd1bb42dad52 status: 200 OK code: 200 - duration: 89.825845ms + duration: 95.451965ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -1668,18 +1668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1373 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"configuring","updated_at":"2025-10-15T14:55:40.330967Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:34.789222Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1373" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:36 GMT + - Wed, 15 Oct 2025 14:55:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287e5133-4f9e-4b87-88eb-d826024be40c + - 01847297-70d4-4086-8575-5e5e4bb72b20 status: 200 OK code: 200 - duration: 27.582051ms + duration: 27.061062ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -1717,18 +1717,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "426" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:36 GMT + - Wed, 15 Oct 2025 14:55:48 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f315db-724b-46bb-b96a-5a5669f2775f + - b27db861-ba1f-458b-a5ec-f41caf15cf23 status: 200 OK code: 200 - duration: 102.386952ms + duration: 97.843301ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -1766,18 +1766,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1363 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:36 GMT + - Wed, 15 Oct 2025 14:55:49 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f70c8f3-4104-4edb-8f71-07fe2be6cd13 + - 1c20b9b0-26cc-4062-b07b-3a04746fedee status: 200 OK code: 200 - duration: 40.000378ms + duration: 25.110354ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b method: GET response: proto: HTTP/2.0 @@ -1815,18 +1815,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 426 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:36 GMT + - Wed, 15 Oct 2025 14:55:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cce8a0c2-a8f7-4001-b68a-cc78455173ab + - 611bb21c-dfc2-4a4f-a9fc-035ca9d650da status: 200 OK code: 200 - duration: 36.796783ms + duration: 119.704034ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=dca404c5-2a25-4bb9-a605-6bfc61b56341&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5142f9e4-5aec-4fa3-a25d-e71be977b21f&resource_type=vpc_gateway_network + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b method: GET response: proto: HTTP/2.0 @@ -1864,18 +1864,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 426 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-09T09:38:26.460879Z","id":"39ccdf29-6182-4229-bddf-df4fc90f1475","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","mac_address":"02:00:00:1F:08:70","name":"tf-pn-goofy-kowalevski","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:26.871168Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}' headers: Content-Length: - - "535" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:36 GMT + - Wed, 15 Oct 2025 14:55:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13d291a8-8ec3-4a7f-903b-927a2ec8b83b + - eee5cb10-c99e-4a63-91b1-86addfb9bc2a status: 200 OK code: 200 - duration: 52.934519ms + duration: 108.850468ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -1913,18 +1913,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1363 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:39 GMT + - Wed, 15 Oct 2025 14:55:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f65d1d1-491b-4f4d-90ee-5a382c898f97 + - f778593b-1910-4302-8b4a-6bb0e873ee04 status: 200 OK code: 200 - duration: 101.602444ms + duration: 27.844485ms - id: 39 request: proto: HTTP/1.1 @@ -1954,7 +1954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=a50ac492-c1c4-4a42-9344-fe4e5029de15&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=854cacb8-3e7a-4da9-8eac-a4eef7dbef8b&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1962,18 +1962,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 532 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-15T14:55:34.660422Z","id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","mac_address":"02:00:00:1E:FF:34","name":"tf-pn-nifty-hermann","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:35.080815Z","zone":null}],"total_count":1}' headers: Content-Length: - - "473" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:55:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1983,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71d630e1-07c2-4a37-87a3-01b9fbad35bf + - cc513bb3-d512-4e22-922a-6beb8c1e366a status: 200 OK code: 200 - duration: 102.251091ms + duration: 121.780299ms - id: 40 request: proto: HTTP/1.1 @@ -2003,7 +2003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2013,7 +2013,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2022,7 +2022,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:49 GMT + - Wed, 15 Oct 2025 14:55:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2032,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca1f1d31-8bba-4082-b1fa-e99ae73b407d + - 58d89c70-b84d-4bc6-94aa-79eadd747732 status: 200 OK code: 200 - duration: 105.743567ms + duration: 129.730547ms - id: 41 request: proto: HTTP/1.1 @@ -2052,7 +2052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2062,7 +2062,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2071,7 +2071,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:54 GMT + - Wed, 15 Oct 2025 14:55:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2081,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d939d0ad-4f09-43bd-a499-6043e554767b + - 3395927e-2169-4b36-a044-9b5948930bc3 status: 200 OK code: 200 - duration: 109.723804ms + duration: 114.775167ms - id: 42 request: proto: HTTP/1.1 @@ -2101,7 +2101,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2111,7 +2111,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2120,7 +2120,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:00 GMT + - Wed, 15 Oct 2025 14:56:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2130,10 +2130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0e3b7b0-febb-47e7-8211-62f822d5f40f + - 5c562f45-c97b-4007-9fca-9f36c79c5b35 status: 200 OK code: 200 - duration: 102.853285ms + duration: 96.764633ms - id: 43 request: proto: HTTP/1.1 @@ -2150,7 +2150,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2160,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:38:34.006774+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2169,7 +2169,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:05 GMT + - Wed, 15 Oct 2025 14:56:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2179,10 +2179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1136d9c5-0da3-4763-952a-9699f797c635 + - 03a5096b-dc9b-4e8c-827f-459d9976bc96 status: 200 OK code: 200 - duration: 100.368809ms + duration: 92.853127ms - id: 44 request: proto: HTTP/1.1 @@ -2199,7 +2199,203 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d0dc69d-ef8a-447e-adfe-e7c6704333ea + status: 200 OK + code: 200 + duration: 126.695019ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - beb81f65-0f0a-4081-bda5-2fdb7d3d7421 + status: 200 OK + code: 200 + duration: 85.928538ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8babfaa4-469a-477b-a616-6865c88021a7 + status: 200 OK + code: 200 + duration: 143.769984ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:55:42.680998+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 072b2b27-41f4-4c24-89fa-5a27e93ba675 + status: 200 OK + code: 200 + duration: 115.751362ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2209,7 +2405,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2218,7 +2414,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2228,11 +2424,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8d7fd85-4f74-4de4-b568-b7f07a19e0fc + - 96438ee9-ab6a-4546-ab4e-963fe7cf17ce status: 200 OK code: 200 - duration: 94.697648ms - - id: 45 + duration: 120.853415ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2248,7 +2444,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -2258,7 +2454,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2267,7 +2463,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2277,11 +2473,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9f18b9b-7111-4f66-b357-9d2cf8f27384 + - 74d60b00-6735-49a7-a79b-1eebf2b2e1c4 status: 200 OK code: 200 - duration: 98.118164ms - - id: 46 + duration: 120.438014ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2297,7 +2493,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -2307,7 +2503,7 @@ interactions: trailer: {} content_length: 2335 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2335" @@ -2316,7 +2512,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2326,11 +2522,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d9faa19-ebfb-4596-b122-83233bf0855b + - e5de1664-7b54-4fcf-b458-725b1f2a63e1 status: 200 OK code: 200 - duration: 159.019532ms - - id: 47 + duration: 156.532379ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2346,7 +2542,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -2356,7 +2552,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7179daf4-7269-4c40-839f-cb6934f2c10c","type":"not_found"}' headers: Content-Length: - "143" @@ -2365,7 +2561,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2375,11 +2571,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb98a0ab-420e-4f7e-8a2b-120de976d3d0 + - 2ca22995-fded-4abb-86e3-ccbfb98045dc status: 404 Not Found code: 404 - duration: 29.88203ms - - id: 48 + duration: 32.358071ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2395,7 +2591,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -2405,7 +2601,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:35.298578Z","id":"7179daf4-7269-4c40-839f-cb6934f2c10c","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:55:35.298578Z","id":"8cdaf112-0192-47bf-a907-51f812bf5317","product_resource_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:55:35.298578Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -2414,7 +2610,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2424,11 +2620,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de503339-20f9-44fc-a43b-26ba56e174f6 + - 58718fcd-d01e-450f-b1cb-d652232e3255 status: 200 OK code: 200 - duration: 97.584286ms - - id: 49 + duration: 84.471938ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2444,7 +2640,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/user_data method: GET response: proto: HTTP/2.0 @@ -2463,7 +2659,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2473,11 +2669,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b08d2828-4bb7-410f-9ba0-c166e6f63c10 + - 2ef350d0-3216-472f-ad3f-5d48cc821532 status: 200 OK code: 200 - duration: 126.268326ms - - id: 50 + duration: 100.011636ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2493,7 +2689,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics method: GET response: proto: HTTP/2.0 @@ -2503,7 +2699,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2512,9 +2708,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2524,13 +2720,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15328e97-6df7-4ac8-bfd9-a07b5c994e72 + - 0c5970c6-348f-4bc6-8ad2-acbddfb4bea2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 91.595828ms - - id: 51 + duration: 86.905273ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2546,7 +2742,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=978dd5ff-83a6-4398-98fc-29266e967470&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b653d6a9-93ab-49aa-aafc-957f14d025a8&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2554,18 +2750,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1063 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5eac:b62a:6c0f:6a84:d4cd/64","created_at":"2025-10-09T09:38:34.265666Z","id":"fabe9cff-e6a5-4f50-8eee-af834cd66bf0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fca3782d-72d8-4a57-8793-517b5ce8af07"},"tags":[],"updated_at":"2025-10-09T09:38:34.265666Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:9f0e:e958:750:ed2a:f300/64","created_at":"2025-10-15T14:55:42.931398Z","id":"a3d2b530-67de-4742-9249-ccef2e5cf4a0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a"},"tags":[],"updated_at":"2025-10-15T14:55:42.931398Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-15T14:55:42.817992Z","id":"39d5fb80-6a7a-4e00-8704-57ebe0f0a119","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:42.817992Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1064" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2575,11 +2771,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c94400b7-1766-492b-924b-9d1bc8e76d0a + - 7481e91f-3a90-46be-ac89-d656db9fb6ff status: 200 OK code: 200 - duration: 26.134573ms - - id: 52 + duration: 23.479497ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2595,7 +2791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A13%3A3f%3Af6&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2605,7 +2801,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-15T14:55:42.817992Z","id":"39d5fb80-6a7a-4e00-8704-57ebe0f0a119","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:42.817992Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -2614,7 +2810,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:10 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2624,11 +2820,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b4e017-7393-4c44-a283-c431689fe2f4 + - 4b9130fd-621e-41ef-a7d6-523f8b634bc9 status: 200 OK code: 200 - duration: 85.762128ms - - id: 53 + duration: 85.019618ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2644,7 +2840,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -2652,18 +2848,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2673,11 +2869,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7191d1e-86c4-44f3-90bf-03639c48dc3d + - 6149b5c2-d7c1-43aa-9a28-5977b2e68d16 status: 200 OK code: 200 - duration: 27.031089ms - - id: 54 + duration: 28.568636ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2693,7 +2889,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -2701,18 +2897,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2722,11 +2918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6aeacd61-4fd5-419f-8ad4-3e26f416fd29 + - e5ca2aa9-c032-4ccc-9b90-42fab0e7ea4b status: 200 OK code: 200 - duration: 26.605673ms - - id: 55 + duration: 25.220391ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2737,7 +2933,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' + body: '{"gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' form: {} headers: Content-Type: @@ -2754,7 +2950,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2763,7 +2959,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2773,11 +2969,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bbd9e42-ad16-4e2d-bf0e-5f0f54afe2b3 + - 0c392495-192d-4c74-8668-ea4bf6b52d29 status: 200 OK code: 200 - duration: 82.135734ms - - id: 56 + duration: 94.178819ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2793,7 +2989,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -2801,18 +2997,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2822,11 +3018,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cefe79fb-d017-49dc-b8a4-dc76544a6629 + - f0965f50-d930-44e9-a723-24192fe7a16a status: 200 OK code: 200 - duration: 33.627585ms - - id: 57 + duration: 24.540963ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2842,7 +3038,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -2852,7 +3048,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2861,7 +3057,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2871,11 +3067,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c09f86c8-b47c-4e1b-a58d-d6b0257130d1 + - ca92b0fd-b3ef-4cf3-beee-8960b57dfefe status: 200 OK code: 200 - duration: 28.583921ms - - id: 58 + duration: 22.512389ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2891,7 +3087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -2901,7 +3097,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2910,7 +3106,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2920,11 +3116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e328a301-49a5-443f-906f-b51d7ab7a9f9 + - 7ff6ba8a-3973-4447-b462-11edbe537fae status: 200 OK code: 200 - duration: 23.417651ms - - id: 59 + duration: 19.486339ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2940,7 +3136,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -2950,7 +3146,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -2959,7 +3155,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2969,11 +3165,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88790dc1-701d-408a-9165-4700962c0275 + - 549f8753-993c-4759-a2fc-5c1612942ee1 status: 200 OK code: 200 - duration: 22.922977ms - - id: 60 + duration: 23.487602ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2989,7 +3185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -2999,7 +3195,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3008,7 +3204,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3018,11 +3214,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec83d7ce-a3a4-43ca-9e34-2271c9758649 + - f5f2dc5d-2069-4e94-bf94-12f8dc2fb95b status: 200 OK code: 200 - duration: 32.291486ms - - id: 61 + duration: 21.134298ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3038,7 +3234,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A13%3A3f%3Af6&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3048,7 +3244,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-15T14:55:42.817992Z","id":"39d5fb80-6a7a-4e00-8704-57ebe0f0a119","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:42.817992Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -3057,7 +3253,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3067,11 +3263,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8882002c-60fc-479a-8595-5af4ba622a60 + - 09efed3e-37c4-49f4-9312-b322590be35c status: 200 OK code: 200 - duration: 87.659974ms - - id: 62 + duration: 97.307582ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3087,7 +3283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3097,7 +3293,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3106,7 +3302,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3116,11 +3312,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7915e22-fbe8-4b54-91bf-dcca8576192b + - 4952b408-78bc-425e-924e-48a9ff5bbcad status: 200 OK code: 200 - duration: 25.019146ms - - id: 63 + duration: 20.857538ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3136,7 +3332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3146,7 +3342,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3155,7 +3351,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3165,11 +3361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e042fef0-ab37-47b2-8480-a9623bda32f6 + - 363bd1c9-896d-4e0e-880d-84d8f651583c status: 200 OK code: 200 - duration: 19.519021ms - - id: 64 + duration: 21.408423ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3185,7 +3381,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -3193,18 +3389,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3214,11 +3410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd377e3d-4b48-48de-9bb5-b5bd1d67d2ce + - e9cc26c0-5fe8-43fc-a6d8-ddec20cc4da4 status: 200 OK code: 200 - duration: 26.612686ms - - id: 65 + duration: 26.106096ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3234,7 +3430,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9ffda9aa-ebee-4883-90fb-7d6866ffe920 method: GET response: proto: HTTP/2.0 @@ -3244,7 +3440,7 @@ interactions: trailer: {} content_length: 444 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.416584Z","custom_routes_propagation_enabled":true,"id":"df2a2f3f-9519-46da-90fb-56203972f101","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:38:14.416584Z"}' + body: '{"created_at":"2025-10-15T14:55:22.298043Z","custom_routes_propagation_enabled":true,"id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920","is_default":false,"name":"TestAccDataSourceVPCPublicGatewayPATRule_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:55:22.298043Z"}' headers: Content-Length: - "444" @@ -3253,7 +3449,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3263,11 +3459,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3febe2cf-f395-446b-a186-b93a6d6c86b1 + - 6182dec6-78fc-4a75-a8c9-c5d86c7e9b33 status: 200 OK code: 200 - duration: 102.285074ms - - id: 66 + duration: 26.65054ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3283,7 +3479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: GET response: proto: HTTP/2.0 @@ -3293,7 +3489,7 @@ interactions: trailer: {} content_length: 1085 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.686835Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:14.686835Z","id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"},{"created_at":"2025-10-09T09:38:14.686835Z","id":"fca3782d-72d8-4a57-8793-517b5ce8af07","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5eac::/64","updated_at":"2025-10-09T09:38:14.686835Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}],"tags":[],"updated_at":"2025-10-09T09:38:33.628467Z","vpc_id":"df2a2f3f-9519-46da-90fb-56203972f101"}' + body: '{"created_at":"2025-10-15T14:55:22.538544Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","name":"pn_test_network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:55:22.538544Z","id":"e935bd83-ddad-467e-a7bb-aafb19eceab8","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"},{"created_at":"2025-10-15T14:55:22.538544Z","id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9f0e::/64","updated_at":"2025-10-15T14:55:22.538544Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}],"tags":[],"updated_at":"2025-10-15T14:55:40.914230Z","vpc_id":"9ffda9aa-ebee-4883-90fb-7d6866ffe920"}' headers: Content-Length: - "1085" @@ -3302,7 +3498,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:11 GMT + - Wed, 15 Oct 2025 14:56:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3312,11 +3508,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8816b904-b6d9-4805-83df-c59bf79d0bac + - da65bb87-8fcb-40d3-8f73-bb5cedc18383 status: 200 OK code: 200 - duration: 27.456324ms - - id: 67 + duration: 27.948971ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3332,7 +3528,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b method: GET response: proto: HTTP/2.0 @@ -3342,7 +3538,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -3351,7 +3547,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3361,11 +3557,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f8cc1f9-5947-4601-8815-a97d2a36df98 + - 0efd3e4c-1bc6-4260-bf97-08c159e0c7a8 status: 200 OK code: 200 - duration: 43.539478ms - - id: 68 + duration: 50.887952ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3381,7 +3577,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -3389,18 +3585,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3410,11 +3606,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c33f71c-bcdc-4ac1-b79e-db750381595b + - ab563421-5168-4e7a-8714-aaea6647dbde status: 200 OK code: 200 - duration: 26.926602ms - - id: 69 + duration: 26.077362ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3430,7 +3626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=dca404c5-2a25-4bb9-a605-6bfc61b56341&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5142f9e4-5aec-4fa3-a25d-e71be977b21f&resource_type=vpc_gateway_network + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=a50ac492-c1c4-4a42-9344-fe4e5029de15&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=854cacb8-3e7a-4da9-8eac-a4eef7dbef8b&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3438,18 +3634,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 535 + content_length: 532 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-09T09:38:26.460879Z","id":"39ccdf29-6182-4229-bddf-df4fc90f1475","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","mac_address":"02:00:00:1F:08:70","name":"tf-pn-goofy-kowalevski","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:26.871168Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-10-15T14:55:34.660422Z","id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","mac_address":"02:00:00:1E:FF:34","name":"tf-pn-nifty-hermann","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:35.080815Z","zone":null}],"total_count":1}' headers: Content-Length: - - "535" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3459,11 +3655,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec70ba82-2f6c-4743-9ab9-48e20aeb9765 + - 2240e015-ecdc-4a1f-b1ad-8b6717a9d99d status: 200 OK code: 200 - duration: 55.489394ms - - id: 70 + duration: 56.005174ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3479,7 +3675,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -3489,7 +3685,7 @@ interactions: trailer: {} content_length: 2335 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2335" @@ -3498,7 +3694,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3508,11 +3704,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76a2decb-b952-4aad-9058-840c1ae33ce1 + - 29093ee8-e0ca-4c79-8899-fe25751d6457 status: 200 OK code: 200 - duration: 166.558992ms - - id: 71 + duration: 158.408768ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3528,7 +3724,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -3538,7 +3734,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7179daf4-7269-4c40-839f-cb6934f2c10c","type":"not_found"}' headers: Content-Length: - "143" @@ -3547,7 +3743,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3557,11 +3753,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b6be45a-19c1-4ed1-8e2e-e9fce28a9198 + - db9384f9-c253-429f-ace5-532c93a6dcbc status: 404 Not Found code: 404 - duration: 34.246921ms - - id: 72 + duration: 30.645481ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3577,7 +3773,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -3587,7 +3783,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:27.164353Z","id":"b1154292-d553-4aa5-837a-343e6be2e7fd","product_resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:27.164353Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:35.298578Z","id":"7179daf4-7269-4c40-839f-cb6934f2c10c","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:55:35.298578Z","id":"8cdaf112-0192-47bf-a907-51f812bf5317","product_resource_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:55:35.298578Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -3596,7 +3792,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3606,11 +3802,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89b8281c-24cf-4c91-9225-f5cf7a9eb6cb + - 1edfbaf9-ac1c-482a-af3f-986b776b7a19 status: 200 OK code: 200 - duration: 110.92627ms - - id: 73 + duration: 81.211578ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3626,7 +3822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/user_data method: GET response: proto: HTTP/2.0 @@ -3645,7 +3841,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3655,11 +3851,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c34d3b7-d3ce-4fa0-892d-b016d165a282 + - bd1c18c1-51f9-4ad5-ba95-b8c8ae9ce00d status: 200 OK code: 200 - duration: 122.447744ms - - id: 74 + duration: 99.336808ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3675,7 +3871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics method: GET response: proto: HTTP/2.0 @@ -3685,7 +3881,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3694,9 +3890,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3706,13 +3902,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aedbb1c-24a8-402f-b2c8-20a67a5bb54b + - 3254432b-6996-46a9-a01a-d7f241ea3f13 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 114.159045ms - - id: 75 + duration: 86.618795ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3728,7 +3924,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=978dd5ff-83a6-4398-98fc-29266e967470&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b653d6a9-93ab-49aa-aafc-957f14d025a8&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3736,18 +3932,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1063 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5eac:b62a:6c0f:6a84:d4cd/64","created_at":"2025-10-09T09:38:34.265666Z","id":"fabe9cff-e6a5-4f50-8eee-af834cd66bf0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fca3782d-72d8-4a57-8793-517b5ce8af07"},"tags":[],"updated_at":"2025-10-09T09:38:34.265666Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:9f0e:e958:750:ed2a:f300/64","created_at":"2025-10-15T14:55:42.931398Z","id":"a3d2b530-67de-4742-9249-ccef2e5cf4a0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"512183ea-2e24-4188-9c71-d6cd08ce0b6a"},"tags":[],"updated_at":"2025-10-15T14:55:42.931398Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-10-15T14:55:42.817992Z","id":"39d5fb80-6a7a-4e00-8704-57ebe0f0a119","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:42.817992Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1064" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3757,11 +3953,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36426b17-5ee1-432a-8917-635e9b3ad1f9 + - 7fdb239f-a14d-423a-b2c2-2ea935c38183 status: 200 OK code: 200 - duration: 94.313654ms - - id: 76 + duration: 87.949897ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3777,7 +3973,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A33%3A1c&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A13%3A3f%3Af6&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3787,7 +3983,7 @@ interactions: trailer: {} content_length: 531 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-09T09:38:34.102393Z","id":"5d6879eb-4a1a-4026-9339-8c24a204fb3e","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"978dd5ff-83a6-4398-98fc-29266e967470","mac_address":"02:00:00:15:33:1C","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2252a3b1-43c7-4422-91b1-f1dc59bb5092"},"tags":[],"updated_at":"2025-10-09T09:38:34.102393Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-10-15T14:55:42.817992Z","id":"39d5fb80-6a7a-4e00-8704-57ebe0f0a119","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","mac_address":"02:00:00:13:3F:F6","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e935bd83-ddad-467e-a7bb-aafb19eceab8"},"tags":[],"updated_at":"2025-10-15T14:55:42.817992Z","zone":null}],"total_count":1}' headers: Content-Length: - "531" @@ -3796,7 +3992,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3806,11 +4002,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c9779fe-617a-4e81-b3cf-4f6c98252e6f + - e1a9d1ac-3f7f-45a1-8ed6-79ca6d0285d5 status: 200 OK code: 200 - duration: 95.32757ms - - id: 77 + duration: 79.11206ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3826,7 +4022,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3836,7 +4032,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3845,7 +4041,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3855,11 +4051,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4be1084b-9385-4a24-b0b2-e93e959a8bff + - e159c47c-e11f-469a-92f6-3d81d883e088 status: 200 OK code: 200 - duration: 25.892298ms - - id: 78 + duration: 24.386523ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3875,7 +4071,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3885,7 +4081,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3894,7 +4090,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3904,11 +4100,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdfed457-6eb7-4e2a-a5f5-64cc9cf30c0b + - 926675bd-6bb7-467d-91fe-5a977f0449fd status: 200 OK code: 200 - duration: 23.887429ms - - id: 79 + duration: 39.029876ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -3924,7 +4120,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3934,7 +4130,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3943,7 +4139,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:12 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3953,11 +4149,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d41201-9cbd-41d3-be67-14c9d04e9d42 + - 5b812e41-1bd0-4162-b82f-c6029eae4ca2 status: 200 OK code: 200 - duration: 25.30501ms - - id: 80 + duration: 23.099403ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -3973,7 +4169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: GET response: proto: HTTP/2.0 @@ -3983,7 +4179,7 @@ interactions: trailer: {} content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:39:11.091670Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"27543689-5769-48bc-9fc9-cee11e2f39cc","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-09T09:39:11.091670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:35.361335Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"0b30ef06-e5d7-4ffc-a28a-46216fdfe848","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-10-15T14:56:35.361335Z","zone":"fr-par-1"}' headers: Content-Length: - "289" @@ -3992,7 +4188,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4002,11 +4198,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 504b1ac3-480d-4d53-867f-f1fe8f84d0ab + - e5ae2686-7caf-44d1-ad0d-2ab885853f30 status: 200 OK code: 200 - duration: 22.739812ms - - id: 81 + duration: 27.173372ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4022,7 +4218,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -4030,18 +4226,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4051,11 +4247,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc61d264-5046-4cbd-8e7d-f8202472fab8 + - cfb3043b-0b8d-43aa-9557-f188bcb685f7 status: 200 OK code: 200 - duration: 33.340405ms - - id: 82 + duration: 27.824016ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4071,7 +4267,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/27543689-5769-48bc-9fc9-cee11e2f39cc + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/0b30ef06-e5d7-4ffc-a28a-46216fdfe848 method: DELETE response: proto: HTTP/2.0 @@ -4088,7 +4284,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4098,11 +4294,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b3fd6e4-ad60-4b0c-9034-4e5cdedf8316 + - df5ffa6c-8517-435d-a46a-3b6d80cc4a21 status: 204 No Content code: 204 - duration: 49.137875ms - - id: 83 + duration: 39.953342ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4118,7 +4314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -4126,18 +4322,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1363 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1366" + - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4147,11 +4343,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65167c32-6218-43ee-bfca-b2ce71d4b87a + - 3a7b6895-9935-4a0c-a5d6-5a8e7b022722 status: 200 OK code: 200 - duration: 24.340185ms - - id: 84 + duration: 30.37907ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4167,7 +4363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b method: GET response: proto: HTTP/2.0 @@ -4177,7 +4373,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"ready","updated_at":"2025-10-09T09:38:36.141555Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"ready","updated_at":"2025-10-15T14:55:45.205297Z","zone":"fr-par-1"}' headers: Content-Length: - "426" @@ -4186,7 +4382,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4196,11 +4392,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cf6a7be-d3ed-45d8-ba4e-2c7ca7ae10d5 + - b66ae9c8-cdd4-40d6-a88f-2d04f47df444 status: 200 OK code: 200 - duration: 43.914618ms - - id: 85 + duration: 43.981526ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4216,28 +4412,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics - method: GET + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 430 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"detaching","updated_at":"2025-10-15T14:56:37.191829Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "430" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4247,13 +4441,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00041ba8-bf8f-468b-b4b7-f19c70c96788 - X-Total-Count: - - "1" + - dca5d263-083b-43ab-b0c1-ebd2879eca7f status: 200 OK code: 200 - duration: 96.509838ms - - id: 86 + duration: 72.827884ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4269,8 +4461,8 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f - method: DELETE + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -4279,7 +4471,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"detaching","updated_at":"2025-10-09T09:39:13.354155Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:34.689009Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","ipam_ip_id":"461ffc6d-8cb0-4eed-b8f3-1f4c1c27ca06","mac_address":"02:00:00:1E:FF:34","masquerade_enabled":true,"private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","push_default_route":true,"status":"detaching","updated_at":"2025-10-15T14:56:37.191829Z","zone":"fr-par-1"}' headers: Content-Length: - "430" @@ -4288,7 +4480,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4298,11 +4490,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fd37b76-120c-4866-8aaa-9f2c74b3ecc5 + - 8742d5cb-fdf1-4256-a78a-d86b7f252868 status: 200 OK code: 200 - duration: 62.053245ms - - id: 87 + duration: 40.378322ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4318,7 +4510,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics method: GET response: proto: HTTP/2.0 @@ -4326,18 +4518,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:26.494470Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","ipam_ip_id":"39ccdf29-6182-4229-bddf-df4fc90f1475","mac_address":"02:00:00:1F:08:70","masquerade_enabled":true,"private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","push_default_route":true,"status":"detaching","updated_at":"2025-10-09T09:39:13.354155Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "430" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4347,11 +4541,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 990af112-6900-49e1-988c-a0c94a51df3e + - 0b857e91-eba7-4992-97c1-12319702f2c7 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 43.30063ms - - id: 88 + duration: 266.091487ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4367,7 +4563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -4377,7 +4573,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:33.778946+00:00","id":"978dd5ff-83a6-4398-98fc-29266e967470","ipam_ip_ids":["5d6879eb-4a1a-4026-9339-8c24a204fb3e","fabe9cff-e6a5-4f50-8eee-af834cd66bf0"],"mac_address":"02:00:00:15:33:1c","modification_date":"2025-10-09T09:39:08.520846+00:00","private_network_id":"dca404c5-2a25-4bb9-a605-6bfc61b56341","server_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:55:42.422236+00:00","id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","ipam_ip_ids":["39d5fb80-6a7a-4e00-8704-57ebe0f0a119","a3d2b530-67de-4742-9249-ccef2e5cf4a0"],"mac_address":"02:00:00:13:3f:f6","modification_date":"2025-10-15T14:56:33.728437+00:00","private_network_id":"a50ac492-c1c4-4a42-9344-fe4e5029de15","server_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4386,7 +4582,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:13 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4396,11 +4592,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 902908c4-80fd-4670-93aa-e77948d8e26d + - 9328300c-428d-4a04-a371-70cae3fcffea status: 200 OK code: 200 - duration: 128.476133ms - - id: 89 + duration: 141.250856ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4416,7 +4612,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: DELETE response: proto: HTTP/2.0 @@ -4433,7 +4629,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:14 GMT + - Wed, 15 Oct 2025 14:56:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4443,11 +4639,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a44bdd61-a8bb-4db5-9575-7d49bf4fcd92 + - a8d34617-fdd3-4c3a-a8f4-320095bcc369 status: 204 No Content code: 204 - duration: 586.931365ms - - id: 90 + duration: 456.510081ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4463,7 +4659,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/private_nics/978dd5ff-83a6-4398-98fc-29266e967470 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics/b653d6a9-93ab-49aa-aafc-957f14d025a8 method: GET response: proto: HTTP/2.0 @@ -4473,7 +4669,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"978dd5ff-83a6-4398-98fc-29266e967470","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b653d6a9-93ab-49aa-aafc-957f14d025a8","type":"not_found"}' headers: Content-Length: - "148" @@ -4482,7 +4678,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:14 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4492,11 +4688,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54daf1bf-b2d7-45c0-ad7f-47f15cd37967 + - 12a85313-ea27-42d3-8928-313b96de27cb status: 404 Not Found code: 404 - duration: 95.979022ms - - id: 91 + duration: 112.50121ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:38 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8cd3fcc-03d9-48c9-8087-d3b5b0d87fae + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.831805ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4512,7 +4761,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -4522,7 +4771,7 @@ interactions: trailer: {} content_length: 1877 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:38:30.558170+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1877" @@ -4531,7 +4780,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:14 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4541,11 +4790,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 662d6acf-cda2-4fe2-96eb-610dd791d7c9 + - 35168b25-134b-47d0-a663-15d9312ca9f5 status: 200 OK code: 200 - duration: 142.273979ms - - id: 92 + duration: 161.134051ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1877 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:55:39.858765+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1877" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5ce7b0f9-016f-4810-92fd-8c5df601808b + status: 200 OK + code: 200 + duration: 156.476534ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4563,7 +4861,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/action method: POST response: proto: HTTP/2.0 @@ -4573,7 +4871,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556/action","href_result":"/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556","id":"7c2413c5-7c81-4ce9-8397-4456494f62c5","progress":0,"started_at":"2025-10-09T09:39:14.560094+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea/action","href_result":"/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea","id":"785b297d-875e-493f-9c4b-fa6f76bc524a","progress":0,"started_at":"2025-10-15T14:56:38.970848+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4582,9 +4880,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:14 GMT + - Wed, 15 Oct 2025 14:56:39 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7c2413c5-7c81-4ce9-8397-4456494f62c5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/785b297d-875e-493f-9c4b-fa6f76bc524a Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4594,11 +4892,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90233cba-f4c3-4ba1-a38b-d538ffefb24d + - 9ab00db9-d0ca-4963-be16-67721def9f11 status: 202 Accepted code: 202 - duration: 267.519748ms - - id: 93 + duration: 529.312898ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4614,7 +4912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -4624,7 +4922,7 @@ interactions: trailer: {} content_length: 1840 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:27.021243+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"103","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:19","maintenances":[],"modification_date":"2025-10-09T09:39:14.338245+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6d51e5a1-7653-404e-9f43-575a94429496","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:55:35.161656+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"902","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:4d","maintenances":[],"modification_date":"2025-10-15T14:56:38.502973+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"7179daf4-7269-4c40-839f-cb6934f2c10c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1840" @@ -4633,7 +4931,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:14 GMT + - Wed, 15 Oct 2025 14:56:39 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4643,11 +4941,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 916555d8-3c0d-4f3e-a55c-5efacde3fa4b + - 488a5818-e22a-4d30-a1b1-f3dc3ae9a0b0 status: 200 OK code: 200 - duration: 170.363344ms - - id: 94 + duration: 147.604252ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4663,7 +4961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/5142f9e4-5aec-4fa3-a25d-e71be977b21f + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/854cacb8-3e7a-4da9-8eac-a4eef7dbef8b method: GET response: proto: HTTP/2.0 @@ -4673,7 +4971,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"5142f9e4-5aec-4fa3-a25d-e71be977b21f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"854cacb8-3e7a-4da9-8eac-a4eef7dbef8b","type":"not_found"}' headers: Content-Length: - "136" @@ -4682,7 +4980,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:18 GMT + - Wed, 15 Oct 2025 14:56:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4692,11 +4990,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3473a14e-4ac7-4d72-ab0a-e4cf6781ff20 + - 34256902-f493-4229-813b-f1d9b6e08602 status: 404 Not Found code: 404 - duration: 26.131761ms - - id: 95 + duration: 24.774953ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4712,7 +5010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -4720,18 +5018,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 937 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:36.285688Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:55:45.450301Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:18 GMT + - Wed, 15 Oct 2025 14:56:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4741,11 +5039,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10cb229b-b0f0-42c1-b8f6-a538dbf1123c + - 5bcac504-ba3c-4022-990b-25af65105711 status: 200 OK code: 200 - duration: 27.811371ms - - id: 96 + duration: 25.827071ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -4761,7 +5059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8?delete_ip=false + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -4769,18 +5067,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 941 + content_length: 938 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:15.055723Z","gateway_networks":[],"id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","ipv4":{"address":"51.15.134.203","created_at":"2025-10-09T09:38:15.031966Z","gateway_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","id":"7b983085-1612-4076-9a85-ed168cfa71e8","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"203-134-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:15.031966Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-goofy-kowalevski","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:39:18.509554Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:42.345267Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "941" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:18 GMT + - Wed, 15 Oct 2025 14:56:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4790,11 +5088,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e98ce2a-00e8-4391-83ac-36a8903ff16c + - 97dacfe1-a9a1-4c28-bd69-82d0e620fa35 status: 200 OK code: 200 - duration: 52.368157ms - - id: 97 + duration: 56.873537ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4810,7 +5108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/6f8be6e7-f199-45ce-8e67-505eb16d30f8 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 method: GET response: proto: HTTP/2.0 @@ -4818,18 +5116,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 938 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"6f8be6e7-f199-45ce-8e67-505eb16d30f8","type":"not_found"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:55:23.146513Z","gateway_networks":[],"id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","ipv4":{"address":"51.158.126.67","created_at":"2025-10-15T14:55:23.111575Z","gateway_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","id":"89bf7732-17ad-4293-bd0b-173b6d6f9abc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"67-126-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:55:23.111575Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-nifty-hermann","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:42.345267Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "128" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:18 GMT + - Wed, 15 Oct 2025 14:56:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4839,11 +5137,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ec9ee8f-8ace-4fa5-b9ee-1337cd575144 - status: 404 Not Found - code: 404 - duration: 24.131941ms - - id: 98 + - 0e6b5db7-ce4b-44c9-8238-f48ac9d442f3 + status: 200 OK + code: 200 + duration: 27.354513ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -4859,7 +5157,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0400d0d1-9f66-4c4a-bf64-ddf6e9331556 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2f644a3f-33d8-414a-8335-6dbfab3fbbea method: GET response: proto: HTTP/2.0 @@ -4869,7 +5167,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0400d0d1-9f66-4c4a-bf64-ddf6e9331556","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2f644a3f-33d8-414a-8335-6dbfab3fbbea","type":"not_found"}' headers: Content-Length: - "143" @@ -4878,7 +5176,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:19 GMT + - Wed, 15 Oct 2025 14:56:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4888,11 +5186,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cabf631-ccb2-4e01-85e6-2ba0c3862c95 + - a616918d-b6d8-4ad9-bfe7-356e453dee3b status: 404 Not Found code: 404 - duration: 48.431145ms - - id: 99 + duration: 49.204426ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -4908,7 +5206,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -4918,7 +5216,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d51e5a1-7653-404e-9f43-575a94429496","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7179daf4-7269-4c40-839f-cb6934f2c10c","type":"not_found"}' headers: Content-Length: - "143" @@ -4927,7 +5225,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:19 GMT + - Wed, 15 Oct 2025 14:56:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4937,11 +5235,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9124c84d-5fbb-4637-a4ec-d4720b192692 + - 56a07464-3fae-4de6-af2a-5df595333dd0 status: 404 Not Found code: 404 - duration: 31.119325ms - - id: 100 + duration: 33.171781ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -4957,7 +5255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: GET response: proto: HTTP/2.0 @@ -4967,7 +5265,7 @@ interactions: trailer: {} content_length: 485 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:27.164353Z","id":"6d51e5a1-7653-404e-9f43-575a94429496","last_detached_at":"2025-10-09T09:39:16.703890Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:39:16.703890Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:55:35.298578Z","id":"7179daf4-7269-4c40-839f-cb6934f2c10c","last_detached_at":"2025-10-15T14:56:40.480178Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:56:40.480178Z","zone":"fr-par-1"}' headers: Content-Length: - "485" @@ -4976,7 +5274,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:19 GMT + - Wed, 15 Oct 2025 14:56:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4986,11 +5284,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fb560eb-f0df-4d02-8da0-8c38839aeddc + - 4a0f7d57-4d2e-48f3-ace6-3713a3ecb308 status: 200 OK code: 200 - duration: 77.155782ms - - id: 101 + duration: 72.082903ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5006,7 +5304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d51e5a1-7653-404e-9f43-575a94429496 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7179daf4-7269-4c40-839f-cb6934f2c10c method: DELETE response: proto: HTTP/2.0 @@ -5023,7 +5321,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:20 GMT + - Wed, 15 Oct 2025 14:56:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -5033,11 +5331,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9450438-0168-40ac-a548-530ee1b44155 + - 955df834-cf47-4a7f-9225-0b8843367643 status: 204 No Content code: 204 - duration: 185.14397ms - - id: 102 + duration: 171.799114ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5053,7 +5351,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dca404c5-2a25-4bb9-a605-6bfc61b56341 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a50ac492-c1c4-4a42-9344-fe4e5029de15 method: DELETE response: proto: HTTP/2.0 @@ -5070,7 +5368,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:21 GMT + - Wed, 15 Oct 2025 14:56:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -5080,11 +5378,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d99bebff-8f14-4add-91e8-59896dd663ea + - 54015f58-6ead-4769-b670-e824eebce27c status: 204 No Content code: 204 - duration: 1.266278312s - - id: 103 + duration: 1.077513007s + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5100,7 +5398,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/df2a2f3f-9519-46da-90fb-56203972f101 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9ffda9aa-ebee-4883-90fb-7d6866ffe920 method: DELETE response: proto: HTTP/2.0 @@ -5117,7 +5415,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:39:21 GMT + - Wed, 15 Oct 2025 14:56:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -5127,7 +5425,56 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47ae365a-3e8f-45d1-bdeb-0fc362afe3ca + - e090a276-e7f8-4575-9d87-10d6672646b9 status: 204 No Content code: 204 - duration: 211.85901ms + duration: 161.700957ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/af898b09-24e4-478d-b8a9-e8ecc42e0883 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 128 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway","resource_id":"af898b09-24e4-478d-b8a9-e8ecc42e0883","type":"not_found"}' + headers: + Content-Length: + - "128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:56:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8beda8bb-4729-4637-b260-78e67b62b8a3 + status: 404 Not Found + code: 404 + duration: 36.693542ms diff --git a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml index 9e8e74716..3a204625d 100644 --- a/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 1087 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-10-15T14:56:20.804310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0f37e499-9db4-460f-9896-c0bdb770306c","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:56:20.804310Z","id":"1f975890-783d-4e34-8c0c-2903ff588c9b","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T14:56:20.804310Z","id":"b982adda-d3bb-4a79-b562-93796b6106f0","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7458::/64","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - "1087" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -48,48 +48,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c1614d-71c4-490e-a0e3-332166c66cbc + - 38a24a76-231a-4971-a233-37b34fed2703 status: 200 OK code: 200 - duration: 837.322073ms + duration: 904.37907ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f37e499-9db4-460f-9896-c0bdb770306c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 348 + content_length: 1087 uncompressed: false - body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:20.804310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0f37e499-9db4-460f-9896-c0bdb770306c","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:56:20.804310Z","id":"1f975890-783d-4e34-8c0c-2903ff588c9b","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T14:56:20.804310Z","id":"b982adda-d3bb-4a79-b562-93796b6106f0","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7458::/64","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "348" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6141328-436c-47da-8dca-dd784d5c8098 + - 1813cc07-5f1f-4a95-a394-59daa82ab11a status: 200 OK code: 200 - duration: 889.962911ms + duration: 90.896688ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -127,18 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 348 + content_length: 39263 uncompressed: false - body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "348" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:21 GMT + Link: + - ; rel="next",; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -148,10 +148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 649417fa-176c-4f0c-899c-14bcd23aaf54 + - 5e5f63aa-1537-4cfc-9033-9865ef12204d + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 33.275882ms + duration: 172.384697ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -176,18 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1087 + content_length: 14295 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1087" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:21 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -197,29 +201,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c89a3b49-6be1-42a2-8502-4505e78f56c2 + - 19c04de1-82da-40a0-9924-c65a004deb13 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 215.060106ms + duration: 41.638481ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 199 + content_length: 63 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","ip_id":"cf61f321-4670-4762-bd95-6e422e558f9b","enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -227,18 +233,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 920 + content_length: 350 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.407818Z","zone":"fr-par-1"}' + body: '{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"}' headers: Content-Length: - - "920" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -248,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 646a0f97-61c0-4f30-98db-357d5c8297dc + - 2244d8c8-3b15-408c-abae-ee56cea1db49 status: 200 OK code: 200 - duration: 159.180493ms + duration: 1.277168788s - id: 5 request: proto: HTTP/1.1 @@ -268,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/907c2bb1-a3fe-4a43-8496-670ad2f0b33d method: GET response: proto: HTTP/2.0 @@ -276,20 +282,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 350 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"}' headers: Content-Length: - - "39208" + - "350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 14:56:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -299,12 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92807808-5156-418d-9f06-1f256763027b - X-Total-Count: - - "75" + - 108c818e-ce04-4ac1-91cd-7c292d664f04 status: 200 OK code: 200 - duration: 55.959383ms + duration: 168.041831ms - id: 6 request: proto: HTTP/1.1 @@ -321,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -329,20 +331,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1266 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"8effba5f-dade-4804-8ddd-da973cb2cac2","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"942c58b9-89fb-48cc-be8b-126c9187794d","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "19730" + - "1266" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 14:56:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -352,48 +352,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f00f32d-f827-405e-aa6f-841f885c47a7 - X-Total-Count: - - "75" + - 0621143f-899a-43c0-9596-e723dc2a5053 status: 200 OK code: 200 - duration: 59.452833ms + duration: 218.715039ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 199 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"The Public Gateway","tags":[],"type":"VPC-GW-S","ip_id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","enable_smtp":false,"enable_bastion":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb - method: GET + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 920 + content_length: 922 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.407818Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:22.101885Z","zone":"fr-par-1"}' headers: Content-Length: - - "920" + - "922" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d30e0eba-9f68-4e60-8b73-2b3eb6a3c853 + - cf648615-2901-4eb6-8af4-917b87f82455 status: 200 OK code: 200 - duration: 108.141193ms + duration: 65.93803ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -431,18 +431,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1266 + content_length: 941 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"8effba5f-dade-4804-8ddd-da973cb2cac2","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"942c58b9-89fb-48cc-be8b-126c9187794d","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:22.128859Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1266" + - "941" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:04 GMT + - Wed, 15 Oct 2025 14:56:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44928dfc-b8cf-4533-8422-3a7898a27127 + - 7e94a24d-ca66-4988-a3b3-91b5401327a6 status: 200 OK code: 200 - duration: 63.325404ms + duration: 191.48006ms - id: 9 request: proto: HTTP/1.1 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:22.825939+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1721" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:06 GMT + - Wed, 15 Oct 2025 14:56:23 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c022f7c-53d9-442a-b1ad-8d5dbb3d6f0f + - 2e51100a-00ea-4dce-8346-1b5a6062d2c6 status: 201 Created code: 201 - duration: 1.562194538s + duration: 1.840482458s - id: 10 request: proto: HTTP/1.1 @@ -525,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -535,7 +535,7 @@ interactions: trailer: {} content_length: 1721 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:22.825939+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1721" @@ -544,7 +544,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:06 GMT + - Wed, 15 Oct 2025 14:56:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41b3d672-f9e0-4b1c-92d4-5753e98854b8 + - bc1fea2e-54eb-4ae3-8eb6-55816ec7c808 status: 200 OK code: 200 - duration: 146.527894ms + duration: 201.135305ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -582,18 +582,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1767 + content_length: 1721 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:05.324576+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:22.825939+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1767" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:06 GMT + - Wed, 15 Oct 2025 14:56:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d4626b3-c1f9-41de-980a-f8528c255b09 + - d9a8c83a-5fb3-4f25-b8d3-1cda0a1c1514 status: 200 OK code: 200 - duration: 170.694658ms + duration: 205.632551ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -633,7 +633,7 @@ interactions: trailer: {} content_length: 692 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:22.964973Z","id":"75e8d2bb-948a-42b8-a14c-c78a540601af","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:56:22.964973Z","id":"c05d13ab-4274-4b0b-a9f8-0deb27ede30c","product_resource_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:56:22.964973Z","zone":"fr-par-1"}' headers: Content-Length: - "692" @@ -642,7 +642,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:06 GMT + - Wed, 15 Oct 2025 14:56:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f95fb3fd-0efb-413f-b2aa-37e172d9576c + - 0d381951-f2d0-4acb-894d-e24fd7431d15 status: 200 OK code: 200 - duration: 101.187736ms + duration: 190.179455ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/action method: POST response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action","href_result":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f","id":"008f9d2d-8f53-4d91-922b-3aa148beaaaf","progress":0,"started_at":"2025-10-09T09:38:06.824707+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/action","href_result":"/servers/cd023223-6dda-4bc3-b553-9b16c19361b4","id":"ed02ef93-6d98-4565-a24d-01e197a5eeaa","progress":0,"started_at":"2025-10-15T14:56:24.722072+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:06 GMT + - Wed, 15 Oct 2025 14:56:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/008f9d2d-8f53-4d91-922b-3aa148beaaaf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed02ef93-6d98-4565-a24d-01e197a5eeaa Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -705,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8ee6cab-88b1-4667-9956-254a17c26413 + - 3fe7ccb7-0f3c-4cf3-b3b8-303557b49cc0 status: 202 Accepted code: 202 - duration: 269.670404ms + duration: 306.068555ms - id: 14 request: proto: HTTP/1.1 @@ -725,7 +725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -735,7 +735,7 @@ interactions: trailer: {} content_length: 1743 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:06.607401+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:24.512259+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1743" @@ -744,7 +744,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:07 GMT + - Wed, 15 Oct 2025 14:56:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -754,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8dc55b4b-f9c8-4663-99fa-91f36403ffb2 + - 60729b08-db65-4f9f-958d-677084bdb3df status: 200 OK code: 200 - duration: 170.805396ms + duration: 152.10721ms - id: 15 request: proto: HTTP/1.1 @@ -774,7 +774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -782,18 +782,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 940 + content_length: 938 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:04.624056Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:26.801096Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "940" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:09 GMT + - Wed, 15 Oct 2025 14:56:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06d4df80-aeeb-4d96-a534-8c375ad96423 + - e4aa6eb0-64d6-4aef-a88e-245e5e97df80 status: 200 OK code: 200 - duration: 34.508124ms + duration: 34.231474ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -831,18 +831,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 938 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:26.801096Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1878" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:12 GMT + - Wed, 15 Oct 2025 14:56:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af787ff1-8778-4990-91c9-e1d440c581b1 + - eaec9cbd-5a71-49b7-9d8f-45b4bf274bfb status: 200 OK code: 200 - duration: 161.507524ms + duration: 102.672189ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -880,18 +880,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1087 + content_length: 938 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:26.801096Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1087" + - "938" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:12 GMT + - Wed, 15 Oct 2025 14:56:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -901,46 +901,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52be185f-097c-49a2-a22b-52678c3e4739 + - 124fccb9-0df0-46ca-a068-70c0326f9aed status: 200 OK code: 200 - duration: 94.998428ms + duration: 113.758755ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 165 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","enable_masquerade":true,"push_default_route":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f - method: GET + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 394 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"created","updated_at":"2025-10-15T14:56:27.890598Z","zone":"fr-par-1"}' headers: Content-Length: - - "1878" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:12 GMT + - Wed, 15 Oct 2025 14:56:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -950,48 +952,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c1d5fb-9eaa-4be3-ae38-a9b9b11ac777 + - 1db8c3bd-b150-4291-a203-da5131d58429 status: 200 OK code: 200 - duration: 139.613006ms + duration: 490.739373ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics - method: POST + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1336 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"created","updated_at":"2025-10-15T14:56:27.890598Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:28.010195Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:13 GMT + - Wed, 15 Oct 2025 14:56:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20c69c43-9933-42bb-9c83-5fa40a628f20 - status: 201 Created - code: 201 - duration: 749.386893ms + - 49c9a7e8-85e6-444d-817e-bbfd38ac1110 + status: 200 OK + code: 200 + duration: 27.4221ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -1029,18 +1029,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1878 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:13 GMT + - Wed, 15 Oct 2025 14:56:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38af07b9-842f-4ca8-8aeb-b9db27701b4a + - a94dad87-2dcd-48cd-9e90-ca14ece663e2 status: 200 OK code: 200 - duration: 117.21336ms + duration: 404.118743ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f37e499-9db4-460f-9896-c0bdb770306c method: GET response: proto: HTTP/2.0 @@ -1078,18 +1078,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 936 + content_length: 1087 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:20.804310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0f37e499-9db4-460f-9896-c0bdb770306c","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:56:20.804310Z","id":"1f975890-783d-4e34-8c0c-2903ff588c9b","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T14:56:20.804310Z","id":"b982adda-d3bb-4a79-b562-93796b6106f0","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7458::/64","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "936" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:14 GMT + - Wed, 15 Oct 2025 14:56:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 693216cd-6b47-452d-add5-293e49787bca + - e7f81e2c-6555-4b30-8e70-7c9fc915d11e status: 200 OK code: 200 - duration: 27.906088ms + duration: 24.925916ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -1127,18 +1127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 936 + content_length: 1878 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "936" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:14 GMT + - Wed, 15 Oct 2025 14:56:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1148,46 +1148,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c8f589d-77c0-4f70-869e-68de315c97a0 + - 8752104e-10cf-4fbe-9cff-d65cf433917c status: 200 OK code: 200 - duration: 125.858659ms + duration: 149.380332ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 936 + content_length: 473 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:13.900188Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "936" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:14 GMT + - Wed, 15 Oct 2025 14:56:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1197,48 +1199,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d586b67-96ee-4ddf-82fb-b64de9164542 - status: 200 OK - code: 200 - duration: 23.522362ms + - f8f723f0-2877-4471-874d-c69c7407c462 + status: 201 Created + code: 201 + duration: 634.965182ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 165 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","enable_masquerade":true,"push_default_route":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "394" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:56:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ac295b6-ddad-4a43-abea-d813e7047f20 + - f60d4582-90df-40e7-aec0-b5c770d88630 status: 200 OK code: 200 - duration: 304.704415ms + duration: 95.706192ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -1276,18 +1276,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1334 + content_length: 1336 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"created","updated_at":"2025-10-15T14:56:27.890598Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:28.010195Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1334" + - "1336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:15 GMT + - Wed, 15 Oct 2025 14:56:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41a7bd4c-f0bc-4365-ae8b-8a3609c5c22f + - f7dc85e7-fc20-42d2-9630-114fc4a21860 status: 200 OK code: 200 - duration: 34.280971ms + duration: 39.266381ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,7 +1336,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:18 GMT + - Wed, 15 Oct 2025 14:56:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8316c8fb-7a64-48da-82ed-407007d9711f + - 6314d0e4-3e88-4313-b9e4-e8cb9b93292d status: 200 OK code: 200 - duration: 98.822355ms + duration: 103.859341ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -1374,18 +1374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1334 + content_length: 1365 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"created","updated_at":"2025-10-09T09:38:14.993087Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1334" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:20 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21715389-3160-41f7-be3d-a32ce6375555 + - 2901e316-80ac-4c54-9e17-bc563a49ac22 status: 200 OK code: 200 - duration: 31.251795ms + duration: 34.985341ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 method: GET response: proto: HTTP/2.0 @@ -1423,18 +1423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 427 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:23 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518cb8d8-83b6-4403-b733-772a51cf81cc + - 7a73c03c-160e-44fe-9004-0c1bb173c91d status: 200 OK code: 200 - duration: 90.872759ms + duration: 46.194196ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 method: GET response: proto: HTTP/2.0 @@ -1472,18 +1472,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1373 + content_length: 427 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"configuring","updated_at":"2025-10-09T09:38:20.534116Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:15.087466Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}' headers: Content-Length: - - "1373" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:25 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 553ae8bd-7267-49c7-b214-b5ef980752f7 + - 86f12267-afee-4fcd-8be0-c274d45e6eef status: 200 OK code: 200 - duration: 21.924253ms + duration: 42.007825ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -1521,18 +1521,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1365 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:28 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f407397a-0261-4b43-9e54-9ca49b3c3762 + - 27e7127a-46d7-4c4d-94a9-7cb35b37d23a status: 200 OK code: 200 - duration: 125.421139ms + duration: 27.003924ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0f37e499-9db4-460f-9896-c0bdb770306c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=cb79efe6-753e-4ea4-828f-01aff33aa467&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1570,18 +1570,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 530 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-15T14:56:27.856691Z","id":"aece9f75-15d1-46f0-9351-40760826f444","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cb79efe6-753e-4ea4-828f-01aff33aa467","mac_address":"02:00:00:14:18:19","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:28.275612Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1363" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:30 GMT + - Wed, 15 Oct 2025 14:56:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c27e4983-5dd5-44a5-be49-dfc359222567 + - 293a8119-2327-42b7-8848-e52a8a921048 status: 200 OK code: 200 - duration: 26.278617ms + duration: 43.805836ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1619,18 +1619,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "427" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:30 GMT + - Wed, 15 Oct 2025 14:56:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d08c7bbf-c6d4-492f-aafd-d187e1b6e2a9 + - 426a172c-daf7-431c-9f45-8b20fdb9ab45 status: 200 OK code: 200 - duration: 88.360205ms + duration: 104.193401ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1668,18 +1668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "427" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:30 GMT + - Wed, 15 Oct 2025 14:56:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c70725d-203d-4375-859e-f029b67c9c8d + - e0f31ee2-0e23-453e-8bd4-e5e8bccaa427 status: 200 OK code: 200 - duration: 41.369307ms + duration: 113.276587ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1717,18 +1717,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 473 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1363" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:30 GMT + - Wed, 15 Oct 2025 14:56:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 856710d2-97d3-4c49-afcc-8eb1198c1ee0 + - 38bebe0f-56a7-463b-99c7-c82e64c2af61 status: 200 OK code: 200 - duration: 38.084741ms + duration: 119.205806ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=90a980aa-edeb-4450-b46d-8de066fa6ac3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=ceed7407-bdca-42ce-bfd0-0192c0b762be&resource_type=vpc_gateway_network + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1766,18 +1766,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"172.16.88.3/22","created_at":"2025-10-09T09:38:14.966645Z","id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","mac_address":"02:00:00:19:C5:6B","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:15.313004Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "531" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:30 GMT + - Wed, 15 Oct 2025 14:56:56 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e82fef3f-157e-4b79-88a8-cba7ebc480e5 + - ac92e428-0cea-4f87-ad9c-b789efddc54a status: 200 OK code: 200 - duration: 106.460407ms + duration: 150.382766ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1817,7 +1817,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1826,7 +1826,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:33 GMT + - Wed, 15 Oct 2025 14:57:01 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04ad78f9-6b53-4618-be44-8d3944d9e06e + - d4880510-b6b8-44f0-9da9-c002763eb5f5 status: 200 OK code: 200 - duration: 97.776677ms + duration: 95.608517ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1866,7 +1866,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:12.636535+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1875,7 +1875,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:38 GMT + - Wed, 15 Oct 2025 14:57:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ee87c0-636b-4971-9cd7-a09b3399b8a4 + - 8e987e4f-cdea-4519-918c-3b70fe8f7246 status: 200 OK code: 200 - duration: 107.662166ms + duration: 105.930715ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1913,18 +1913,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:43 GMT + - Wed, 15 Oct 2025 14:57:12 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb54e3c8-c84b-44cf-8ef3-70ac2d4c6879 + - 1d9c6653-1877-4e13-89cf-7fda2f94ba27 status: 200 OK code: 200 - duration: 101.41532ms + duration: 93.064204ms - id: 39 request: proto: HTTP/1.1 @@ -1954,7 +1954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -1962,18 +1962,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1983,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0142351-d796-4360-b205-87930e38b94e + - 449a1339-8124-4f1a-bc21-7221a2665f2e status: 200 OK code: 200 - duration: 116.470186ms + duration: 90.389243ms - id: 40 request: proto: HTTP/1.1 @@ -2003,7 +2003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -2011,18 +2011,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:56:30.803939+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2032,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9441ce0-8e69-4b6a-b9dd-fd63a0dea3dd + - 398af6a2-ccf7-49d6-a848-90d4dd9e73f1 status: 200 OK code: 200 - duration: 156.832457ms + duration: 104.879317ms - id: 41 request: proto: HTTP/1.1 @@ -2052,7 +2052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -2060,18 +2060,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2081,10 +2081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f08fce12-7413-48fb-9ed5-77859e87dcd3 - status: 404 Not Found - code: 404 - duration: 33.487902ms + - 1bb62757-37d0-49c4-8a55-00cfc4f71aff + status: 200 OK + code: 200 + duration: 95.640046ms - id: 42 request: proto: HTTP/1.1 @@ -2101,7 +2101,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -2109,18 +2109,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2130,10 +2130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67371868-4bc0-41d9-a1ab-74425f55f61c + - 18694b79-1a42-4f4c-ba8b-779b8358587f status: 200 OK code: 200 - duration: 74.744579ms + duration: 100.858681ms - id: 43 request: proto: HTTP/1.1 @@ -2150,7 +2150,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -2158,18 +2158,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2336 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2179,10 +2179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502fc5f1-e94e-4b2b-8f31-874d7eec239f + - 84359ce0-ae1e-4f75-8cf4-287a07bde5df status: 200 OK code: 200 - duration: 96.26414ms + duration: 134.214165ms - id: 44 request: proto: HTTP/1.1 @@ -2199,7 +2199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -2207,20 +2207,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75e8d2bb-948a-42b8-a14c-c78a540601af","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2230,12 +2228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9ca1c22-fd93-4a81-a705-4655c4ea5e4d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 86.919326ms + - aa19ee49-17d3-46e5-9382-3a37d43cd6a8 + status: 404 Not Found + code: 404 + duration: 22.001178ms - id: 45 request: proto: HTTP/1.1 @@ -2252,7 +2248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a70736f4-f09a-4e74-bde7-1cad3a3efe58&resource_type=instance_private_nic + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -2260,18 +2256,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 692 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:efa:6bc8:31:7267:a4be/64","created_at":"2025-10-09T09:38:12.974887Z","id":"2f5631eb-533e-4901-bd02-76ce36486ceb","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f"},"tags":[],"updated_at":"2025-10-09T09:38:12.974887Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-15T14:56:22.964973Z","id":"75e8d2bb-948a-42b8-a14c-c78a540601af","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:56:22.964973Z","id":"c05d13ab-4274-4b0b-a9f8-0deb27ede30c","product_resource_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:56:22.964973Z","zone":"fr-par-1"}' headers: Content-Length: - - "1061" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2281,10 +2277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc42186-445d-43b5-8bf6-d1590bd7db3a + - ff68ab11-2806-4fcd-aaa2-3c183dee43d5 status: 200 OK code: 200 - duration: 121.184643ms + duration: 83.315085ms - id: 46 request: proto: HTTP/1.1 @@ -2301,7 +2297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/user_data method: GET response: proto: HTTP/2.0 @@ -2309,18 +2305,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "531" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2330,10 +2326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 745c2d9b-6196-4cb6-99c6-491529d4f1d6 + - 74871278-5b48-4073-8086-711ff2dbe6f8 status: 200 OK code: 200 - duration: 88.857462ms + duration: 101.210128ms - id: 47 request: proto: HTTP/1.1 @@ -2350,7 +2346,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics method: GET response: proto: HTTP/2.0 @@ -2358,18 +2354,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 478 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1363" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:28 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2379,10 +2377,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d14f5418-bd8f-4d15-b456-1c2fd8bca82c + - 0c8a1bcb-5dae-4d75-be50-5d2b5013203a + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 29.565915ms + duration: 98.216562ms - id: 48 request: proto: HTTP/1.1 @@ -2399,7 +2399,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=cbae3b55-df96-4316-b0fc-f0e07333b7ed&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2407,18 +2407,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1063 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:7458:b94e:1d2c:dda4:b52f/64","created_at":"2025-10-15T14:56:31.016524Z","id":"141f38dd-394b-4a18-95a0-277357f103c0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b982adda-d3bb-4a79-b562-93796b6106f0"},"tags":[],"updated_at":"2025-10-15T14:56:31.016524Z","zone":null},{"address":"172.16.4.3/22","created_at":"2025-10-15T14:56:30.871845Z","id":"372e02b5-2c9e-401c-9e78-f0b7fd8889d2","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:30.871845Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1363" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2428,48 +2428,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0953c0c8-e684-4bfa-8797-5dbb2ebe10ad + - f0f2e793-a7d0-4042-a972-a245f574bc3c status: 200 OK code: 200 - duration: 27.246655ms + duration: 87.1359ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 134 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","public_port":2023,"private_ip":"172.16.88.2","private_port":22,"protocol":"tcp"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules - method: POST + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Ab3%3Aa2&order_by=created_at_desc&page=1&resource_type=unknown_type + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 530 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.4.3/22","created_at":"2025-10-15T14:56:30.871845Z","id":"372e02b5-2c9e-401c-9e78-f0b7fd8889d2","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:30.871845Z","zone":null}],"total_count":1}' headers: Content-Length: - - "290" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2479,10 +2477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be2d1074-0083-43ec-9d80-165d9c3320fe + - e700c647-1503-4e78-83db-27cd2d60c006 status: 200 OK code: 200 - duration: 87.106297ms + duration: 97.733761ms - id: 50 request: proto: HTTP/1.1 @@ -2499,7 +2497,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -2507,18 +2505,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1365 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1363" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2528,10 +2526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90ccb591-69b8-4122-83bd-0f6b0d453622 + - 9bacf698-4dab-4fb4-851f-e276e1223748 status: 200 OK code: 200 - duration: 27.362792ms + duration: 20.83597ms - id: 51 request: proto: HTTP/1.1 @@ -2548,7 +2546,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -2556,18 +2554,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 1365 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:44 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2577,46 +2575,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 956f1b1e-a989-4102-982d-3d374761ed01 + - 0198a17d-00de-46d3-a209-964783d75cd3 status: 200 OK code: 200 - duration: 26.198956ms + duration: 21.178471ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 133 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","public_port":2023,"private_ip":"172.16.4.3","private_port":22,"protocol":"tcp"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 - method: GET + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:28.315360Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"c53819c8-495c-4c9d-bfb9-fa9ddf235f0e","private_ip":"172.16.4.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-15T14:57:28.315360Z","zone":"fr-par-1"}' headers: Content-Length: - - "290" + - "289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2626,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f68e430-0ebf-4a61-9fef-f0e1f0c255ce + - e3592c19-6688-444c-a056-df66f486486e status: 200 OK code: 200 - duration: 26.085392ms + duration: 86.722937ms - id: 53 request: proto: HTTP/1.1 @@ -2646,7 +2646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -2654,18 +2654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 1365 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "531" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2675,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b662440-8cb9-45b6-9086-38f5959a6665 + - aafb97c4-52ef-45ff-b9ec-28ca67799146 status: 200 OK code: 200 - duration: 113.38127ms + duration: 25.507544ms - id: 54 request: proto: HTTP/1.1 @@ -2695,7 +2695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c53819c8-495c-4c9d-bfb9-fa9ddf235f0e method: GET response: proto: HTTP/2.0 @@ -2703,18 +2703,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1087 + content_length: 289 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:03.509939Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:38:03.509939Z","id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-09T09:38:03.509939Z","id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efa::/64","updated_at":"2025-10-09T09:38:03.509939Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-09T09:38:20.998953Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-10-15T14:57:28.315360Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"c53819c8-495c-4c9d-bfb9-fa9ddf235f0e","private_ip":"172.16.4.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-15T14:57:28.315360Z","zone":"fr-par-1"}' headers: Content-Length: - - "1087" + - "289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2724,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 125bacc5-06b2-49da-83a0-b4a9532671df + - 9bfa1a1e-3089-4eb4-8ce7-ebb0dd582e9c status: 200 OK code: 200 - duration: 37.473077ms + duration: 24.187666ms - id: 55 request: proto: HTTP/1.1 @@ -2744,7 +2744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c53819c8-495c-4c9d-bfb9-fa9ddf235f0e method: GET response: proto: HTTP/2.0 @@ -2752,18 +2752,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 401 + content_length: 289 uncompressed: false - body: '{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:28.315360Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"c53819c8-495c-4c9d-bfb9-fa9ddf235f0e","private_ip":"172.16.4.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-15T14:57:28.315360Z","zone":"fr-par-1"}' headers: Content-Length: - - "401" + - "289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2773,10 +2773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79667682-f242-4e30-a115-d394c75eac5c + - 65b0f765-5ad6-49ae-9df9-c504337af341 status: 200 OK code: 200 - duration: 81.710198ms + duration: 22.148223ms - id: 56 request: proto: HTTP/1.1 @@ -2793,7 +2793,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Ab3%3Aa2&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2801,18 +2801,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 530 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.4.3/22","created_at":"2025-10-15T14:56:30.871845Z","id":"372e02b5-2c9e-401c-9e78-f0b7fd8889d2","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:30.871845Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1363" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2822,10 +2822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e348fb9-8ac0-4c81-a34a-ac0f92681d41 + - 41c65ec8-c61d-48e2-8b7e-41717fec98f2 status: 200 OK code: 200 - duration: 29.604686ms + duration: 117.230839ms - id: 57 request: proto: HTTP/1.1 @@ -2842,7 +2842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/907c2bb1-a3fe-4a43-8496-670ad2f0b33d method: GET response: proto: HTTP/2.0 @@ -2850,18 +2850,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' + body: '{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"}' headers: Content-Length: - - "427" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2871,10 +2871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c7ff02-a396-441e-8fbc-3c2158019101 + - 8392db48-a334-40b4-bb5e-c678d3fb3d38 status: 200 OK code: 200 - duration: 49.263755ms + duration: 22.647417ms - id: 58 request: proto: HTTP/1.1 @@ -2891,7 +2891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -2899,18 +2899,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1365 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1363" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2920,10 +2920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02d202c8-d4f7-4bb0-9185-8a90ec2d5fee + - 7245fbab-7cc5-43c3-b3ee-3f742c9c7f97 status: 200 OK code: 200 - duration: 27.722575ms + duration: 29.958103ms - id: 59 request: proto: HTTP/1.1 @@ -2940,7 +2940,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f37e499-9db4-460f-9896-c0bdb770306c method: GET response: proto: HTTP/2.0 @@ -2948,18 +2948,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 1087 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:56:20.804310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0f37e499-9db4-460f-9896-c0bdb770306c","name":"My Private Network","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:56:20.804310Z","id":"1f975890-783d-4e34-8c0c-2903ff588c9b","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T14:56:20.804310Z","id":"b982adda-d3bb-4a79-b562-93796b6106f0","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7458::/64","updated_at":"2025-10-15T14:56:20.804310Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T14:56:33.880244Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "2336" + - "1087" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2969,10 +2969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa37f4ba-5302-453a-959b-b1667aff89fe + - ee78d382-6d56-4b4b-9534-c2a2c634f056 status: 200 OK code: 200 - duration: 154.924943ms + duration: 101.96491ms - id: 60 request: proto: HTTP/1.1 @@ -2989,7 +2989,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 method: GET response: proto: HTTP/2.0 @@ -2997,18 +2997,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 427 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3018,10 +3018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc85c454-c167-433c-a5c9-b7299c10dddc - status: 404 Not Found - code: 404 - duration: 33.524409ms + - 27f94687-d66c-43bc-80c5-185efac192aa + status: 200 OK + code: 200 + duration: 43.150895ms - id: 61 request: proto: HTTP/1.1 @@ -3038,7 +3038,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=90a980aa-edeb-4450-b46d-8de066fa6ac3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=ceed7407-bdca-42ce-bfd0-0192c0b762be&resource_type=vpc_gateway_network + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -3046,18 +3046,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 1365 uncompressed: false - body: '{"ips":[{"address":"172.16.88.3/22","created_at":"2025-10-09T09:38:14.966645Z","id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","mac_address":"02:00:00:19:C5:6B","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:15.313004Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "531" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:28 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3067,10 +3067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf9a60b8-0982-44b1-a005-9dc565938ca1 + - f6509383-82fe-4929-8700-08c71f2f09db status: 200 OK code: 200 - duration: 47.585967ms + duration: 27.810389ms - id: 62 request: proto: HTTP/1.1 @@ -3087,7 +3087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -3095,18 +3095,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 692 + content_length: 2336 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:38:05.501795Z","id":"97a1200a-2f0b-4220-828a-d4a244e62b64","product_resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:05.501795Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "692" + - "2336" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3116,10 +3116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff2d5798-8b76-43e3-b76e-ffba755fb4dd + - d4f847bb-a38f-4f0e-8eed-bfc98515e2e5 status: 200 OK code: 200 - duration: 86.258628ms + duration: 140.799088ms - id: 63 request: proto: HTTP/1.1 @@ -3136,7 +3136,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -3144,18 +3144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75e8d2bb-948a-42b8-a14c-c78a540601af","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3165,10 +3165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88cf393b-86d9-4f03-9727-1b60b2e1ccb8 - status: 200 OK - code: 200 - duration: 104.605793ms + - 60661d02-ed42-456f-91c8-fbae26a26f93 + status: 404 Not Found + code: 404 + duration: 31.18108ms - id: 64 request: proto: HTTP/1.1 @@ -3185,7 +3185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0f37e499-9db4-460f-9896-c0bdb770306c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=cb79efe6-753e-4ea4-828f-01aff33aa467&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3193,20 +3193,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 530 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-15T14:56:27.856691Z","id":"aece9f75-15d1-46f0-9351-40760826f444","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cb79efe6-753e-4ea4-828f-01aff33aa467","mac_address":"02:00:00:14:18:19","name":"The Public Gateway","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:28.275612Z","zone":null}],"total_count":1}' headers: Content-Length: - - "478" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:45 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3216,12 +3214,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6999c1-4ab4-4a23-9566-66f6c54ab95c - X-Total-Count: - - "1" + - ac26da76-a3d8-4033-aad8-566771e78c4e status: 200 OK code: 200 - duration: 85.995214ms + duration: 110.623359ms - id: 65 request: proto: HTTP/1.1 @@ -3238,7 +3234,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=a70736f4-f09a-4e74-bde7-1cad3a3efe58&resource_type=instance_private_nic + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -3246,18 +3242,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 692 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:efa:6bc8:31:7267:a4be/64","created_at":"2025-10-09T09:38:12.974887Z","id":"2f5631eb-533e-4901-bd02-76ce36486ceb","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"445ac353-b4d8-4e0d-bd46-ce1cc1a9b09f"},"tags":[],"updated_at":"2025-10-09T09:38:12.974887Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-10-15T14:56:22.964973Z","id":"75e8d2bb-948a-42b8-a14c-c78a540601af","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:56:22.964973Z","id":"c05d13ab-4274-4b0b-a9f8-0deb27ede30c","product_resource_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:56:22.964973Z","zone":"fr-par-1"}' headers: Content-Length: - - "1061" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3267,10 +3263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cf05a97-be33-4b7f-a6ff-87d3c4aa961b + - e933e862-37e0-4d40-a68e-a5e333d1c289 status: 200 OK code: 200 - duration: 105.134139ms + duration: 120.091168ms - id: 66 request: proto: HTTP/1.1 @@ -3287,7 +3283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A0f%3Ab3&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/user_data method: GET response: proto: HTTP/2.0 @@ -3295,18 +3291,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 531 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:38:12.777044Z","id":"fa84ca5d-f822-4841-8475-303a9b9b75da","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","mac_address":"02:00:00:1B:0F:B3","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"2f955a75-d7e7-4b00-b34f-5aafb14d1b31"},"tags":[],"updated_at":"2025-10-09T09:38:12.777044Z","zone":null}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "531" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3316,10 +3312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1fe4718-292a-402d-9298-f9a256cf11ee + - 7378344b-6842-481d-beb5-ac9b9ea5c3b0 status: 200 OK code: 200 - duration: 96.829231ms + duration: 88.872679ms - id: 67 request: proto: HTTP/1.1 @@ -3336,7 +3332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3344,18 +3340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "290" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3365,10 +3363,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e41b83-3d45-4c70-8b10-fcc57ac8029b + - 6e816f54-079a-46b4-b59c-c1ba0f2b45fc + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 22.627202ms + duration: 221.417467ms - id: 68 request: proto: HTTP/1.1 @@ -3385,7 +3385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=cbae3b55-df96-4316-b0fc-f0e07333b7ed&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3393,18 +3393,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 1063 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:44.855147Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"3ae518f8-d563-48f5-8e80-f56c1d4460e6","private_ip":"172.16.88.2","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-09T09:38:44.855147Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:7458:b94e:1d2c:dda4:b52f/64","created_at":"2025-10-15T14:56:31.016524Z","id":"141f38dd-394b-4a18-95a0-277357f103c0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b982adda-d3bb-4a79-b562-93796b6106f0"},"tags":[],"updated_at":"2025-10-15T14:56:31.016524Z","zone":null},{"address":"172.16.4.3/22","created_at":"2025-10-15T14:56:30.871845Z","id":"372e02b5-2c9e-401c-9e78-f0b7fd8889d2","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:30.871845Z","zone":null}],"total_count":2}' headers: Content-Length: - - "290" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3414,10 +3414,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7061903e-2842-477e-9698-7811181cb3a1 + - 7f0dac0a-3ff0-4e07-b990-0ddc6e654bf0 status: 200 OK code: 200 - duration: 32.553231ms + duration: 25.468671ms - id: 69 request: proto: HTTP/1.1 @@ -3434,7 +3434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Ab3%3Aa2&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3442,18 +3442,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 530 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.4.3/22","created_at":"2025-10-15T14:56:30.871845Z","id":"372e02b5-2c9e-401c-9e78-f0b7fd8889d2","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","mac_address":"02:00:00:18:B3:A2","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1f975890-783d-4e34-8c0c-2903ff588c9b"},"tags":[],"updated_at":"2025-10-15T14:56:30.871845Z","zone":null}],"total_count":1}' headers: Content-Length: - - "427" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3463,10 +3463,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0f0b9d0-f6ca-4bff-98df-18aa336ecc95 + - 247e9316-177b-483f-b497-79f494ce83b0 status: 200 OK code: 200 - duration: 48.671406ms + duration: 83.25153ms - id: 70 request: proto: HTTP/1.1 @@ -3483,7 +3483,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c53819c8-495c-4c9d-bfb9-fa9ddf235f0e method: GET response: proto: HTTP/2.0 @@ -3491,18 +3491,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 289 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"ready","updated_at":"2025-10-09T09:38:25.240992Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:57:28.315360Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"c53819c8-495c-4c9d-bfb9-fa9ddf235f0e","private_ip":"172.16.4.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-15T14:57:28.315360Z","zone":"fr-par-1"}' headers: Content-Length: - - "1363" + - "289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3512,10 +3512,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10190573-a46a-47db-8342-3d4ddc43f831 + - 1b2f9d4d-f6c3-4a2c-bf12-0de319a19b75 status: 200 OK code: 200 - duration: 28.102565ms + duration: 22.843473ms - id: 71 request: proto: HTTP/1.1 @@ -3532,24 +3532,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/3ae518f8-d563-48f5-8e80-f56c1d4460e6 - method: DELETE + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c53819c8-495c-4c9d-bfb9-fa9ddf235f0e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 289 uncompressed: false - body: "" + body: '{"created_at":"2025-10-15T14:57:28.315360Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"c53819c8-495c-4c9d-bfb9-fa9ddf235f0e","private_ip":"172.16.4.3","private_port":22,"protocol":"tcp","public_port":2023,"updated_at":"2025-10-15T14:57:28.315360Z","zone":"fr-par-1"}' headers: + Content-Length: + - "289" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3559,10 +3561,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9b5e7a0-b0d8-40b1-9da6-ade20df23628 - status: 204 No Content - code: 204 - duration: 41.455336ms + - a08c4548-bf28-45e9-81ec-aaa9c697e21e + status: 200 OK + code: 200 + duration: 21.072923ms - id: 72 request: proto: HTTP/1.1 @@ -3579,26 +3581,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be - method: DELETE + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 431 + content_length: 1365 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "431" + - "1365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3608,10 +3610,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dac2611-09ba-423c-be83-cc2e29a66e7b + - 19efa86c-0e93-4a17-9e88-e97e0b82c05a status: 200 OK code: 200 - duration: 62.442048ms + duration: 27.793026ms - id: 73 request: proto: HTTP/1.1 @@ -3628,7 +3630,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 method: GET response: proto: HTTP/2.0 @@ -3636,18 +3638,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1367 + content_length: 427 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"ready","updated_at":"2025-10-15T14:56:37.592580Z","zone":"fr-par-1"}' headers: Content-Length: - - "1367" + - "427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3657,10 +3659,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bd7848f-e5e0-4474-8507-54d4e75aedf1 + - f87f42c4-2f92-44ef-9f21-fb0f0af4a7ff status: 200 OK code: 200 - duration: 31.289867ms + duration: 53.382233ms - id: 74 request: proto: HTTP/1.1 @@ -3677,8 +3679,104 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/c53819c8-495c-4c9d-bfb9-fa9ddf235f0e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5cef230a-bdab-484a-81ee-bbf732f598b8 + status: 204 No Content + code: 204 + duration: 37.86757ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1369 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"detaching","updated_at":"2025-10-15T14:57:29.961510Z","zone":"fr-par-1"}],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' + headers: + Content-Length: + - "1369" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0becc0c4-272a-4306-8db6-0ec9c0726d42 + status: 200 OK + code: 200 + duration: 24.921669ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 @@ -3687,7 +3785,7 @@ interactions: trailer: {} content_length: 431 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:14.993087Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","ipam_ip_id":"6634d544-8e14-4a5d-9c0f-d0a41a680dbb","mac_address":"02:00:00:19:C5:6B","masquerade_enabled":true,"private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","push_default_route":false,"status":"detaching","updated_at":"2025-10-09T09:38:46.610719Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"detaching","updated_at":"2025-10-15T14:57:29.961510Z","zone":"fr-par-1"}' headers: Content-Length: - "431" @@ -3696,7 +3794,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:29 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3706,11 +3804,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1179e66-8d92-47d1-9d55-fb15bf5ec9c7 + - 12812c11-97d4-469d-9255-4db743f53ae2 status: 200 OK code: 200 - duration: 39.050787ms - - id: 75 + duration: 71.45616ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3726,7 +3824,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 431 + uncompressed: false + body: '{"created_at":"2025-10-15T14:56:27.890598Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"cb79efe6-753e-4ea4-828f-01aff33aa467","ipam_ip_id":"aece9f75-15d1-46f0-9351-40760826f444","mac_address":"02:00:00:14:18:19","masquerade_enabled":true,"private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","push_default_route":false,"status":"detaching","updated_at":"2025-10-15T14:57:29.961510Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "431" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f20d332b-c05c-4587-9be6-eed63cb4c8c6 + status: 200 OK + code: 200 + duration: 42.790413ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics method: GET response: proto: HTTP/2.0 @@ -3736,7 +3883,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3745,9 +3892,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:30 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3757,13 +3904,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aa61a65-3d9c-4c64-86c5-6d0fbd7fda11 + - 9bf31df6-c6a4-49d9-89e8-d758a31f5a61 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 120.884163ms - - id: 76 + duration: 107.633421ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3779,7 +3926,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed method: GET response: proto: HTTP/2.0 @@ -3789,7 +3936,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:38:12.447255+00:00","id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","ipam_ip_ids":["fa84ca5d-f822-4841-8475-303a9b9b75da","2f5631eb-533e-4901-bd02-76ce36486ceb"],"mac_address":"02:00:00:1b:0f:b3","modification_date":"2025-10-09T09:38:39.691024+00:00","private_network_id":"90a980aa-edeb-4450-b46d-8de066fa6ac3","server_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:56:30.552311+00:00","id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","ipam_ip_ids":["372e02b5-2c9e-401c-9e78-f0b7fd8889d2","141f38dd-394b-4a18-95a0-277357f103c0"],"mac_address":"02:00:00:18:b3:a2","modification_date":"2025-10-15T14:57:26.509896+00:00","private_network_id":"0f37e499-9db4-460f-9896-c0bdb770306c","server_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3798,7 +3945,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:46 GMT + - Wed, 15 Oct 2025 14:57:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3808,11 +3955,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b10375f-fa1e-45c7-bea4-f40243369a15 + - cca59d8c-a425-4a34-a825-21aa4abd91bd status: 200 OK code: 200 - duration: 115.695667ms - - id: 77 + duration: 122.556949ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3828,24 +3975,124 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 - method: DELETE + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/cb79efe6-753e-4ea4-828f-01aff33aa467 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 136 + uncompressed: false + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"cb79efe6-753e-4ea4-828f-01aff33aa467","type":"not_found"}' + headers: + Content-Length: + - "136" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ce908ca-c576-4b36-83c9-d4abd402c3d2 + status: 404 Not Found + code: 404 + duration: 21.906905ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:56:37.714128Z","version":"0.7.4","zone":"fr-par-1"}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b79c89ce-dd37-483e-9743-2965fb5f3c3b + status: 200 OK + code: 200 + duration: 26.759076ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f?delete_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 939 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-15T14:56:22.101885Z","gateway_networks":[],"id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","ipv4":{"address":"51.158.127.215","created_at":"2025-10-15T14:56:21.842013Z","gateway_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","id":"907c2bb1-a3fe-4a43-8496-670ad2f0b33d","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"215-127-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-15T14:56:21.842013Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-15T14:57:35.119260Z","version":"0.7.4","zone":"fr-par-1"}' headers: + Content-Length: + - "939" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:47 GMT + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3855,11 +4102,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 921ce8c5-7969-45da-87e8-503c5867261e - status: 204 No Content - code: 204 - duration: 374.514673ms - - id: 78 + - b6be9fdc-2513-4f7b-8ab4-2c04d698af98 + status: 200 OK + code: 200 + duration: 39.750504ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -3875,7 +4122,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/private_nics/a70736f4-f09a-4e74-bde7-1cad3a3efe58 + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/c1296ed0-7536-4b5d-9845-3c085ee2502f method: GET response: proto: HTTP/2.0 @@ -3883,18 +4130,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"a70736f4-f09a-4e74-bde7-1cad3a3efe58","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"c1296ed0-7536-4b5d-9845-3c085ee2502f","type":"not_found"}' headers: Content-Length: - - "148" + - "128" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:47 GMT + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3904,11 +4151,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb826084-2d42-40e3-be99-8931f1fafbb8 + - f8bbf49f-ce99-4261-a0c7-dcc4bcb072eb status: 404 Not Found code: 404 - duration: 101.386294ms - - id: 79 + duration: 20.008766ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -3924,26 +4171,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f - method: GET + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/907c2bb1-a3fe-4a43-8496-670ad2f0b33d + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1878 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:09.621449+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:47 GMT + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3953,50 +4198,93 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5642e53f-9351-4f8a-8fb3-560ecb8136a4 - status: 200 OK - code: 200 - duration: 165.864768ms - - id: 80 + - f7feb196-9a3b-4556-b97a-aed114895ead + status: 204 No Content + code: 204 + duration: 49.761439ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 15 Oct 2025 14:57:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9117e2ee-7c98-441c-9a11-8ad02dfa2b5c + status: 204 No Content + code: 204 + duration: 5.397922115s + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics/cbae3b55-df96-4316-b0fc-f0e07333b7ed + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 148 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f/action","href_result":"/servers/0897b29c-3422-4396-b45a-a6d244a19c0f","id":"d33c773a-0ee8-44bf-88b6-68c51bdc28c9","progress":0,"started_at":"2025-10-09T09:38:47.788611+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"cbae3b55-df96-4316-b0fc-f0e07333b7ed","type":"not_found"}' headers: Content-Length: - - "353" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d33c773a-0ee8-44bf-88b6-68c51bdc28c9 + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4006,11 +4294,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32d3b51d-52f0-479d-9829-e4c0df25a8ad - status: 202 Accepted - code: 202 - duration: 253.200366ms - - id: 81 + - dd3fb975-d746-4b91-b2ed-ae80be36dd57 + status: 404 Not Found + code: 404 + duration: 97.673762ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4026,7 +4314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/private_nics method: GET response: proto: HTTP/2.0 @@ -4034,18 +4322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1841 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-09T09:38:05.324576+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"0897b29c-3422-4396-b45a-a6d244a19c0f","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1702","node_id":"47","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8d:03","maintenances":[],"modification_date":"2025-10-09T09:38:47.579245+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1841" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:47 GMT + - Wed, 15 Oct 2025 14:57:35 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4055,11 +4345,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17800d63-44d8-4c02-81a1-3cf6eed5945e + - 7566416f-d652-411a-b05e-105c4f408e4e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 155.187964ms - - id: 82 + duration: 101.731107ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4075,7 +4367,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/ceed7407-bdca-42ce-bfd0-0192c0b762be + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -4083,18 +4375,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 136 + content_length: 1878 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"ceed7407-bdca-42ce-bfd0-0192c0b762be","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "136" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:51 GMT + - Wed, 15 Oct 2025 14:57:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4104,11 +4396,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96bfb4e7-981b-4ebe-adcc-a8d7f8ee2022 - status: 404 Not Found - code: 404 - duration: 22.973195ms - - id: 83 + - b6c089fd-03b3-4ccd-8164-dbe9dd4edc85 + status: 200 OK + code: 200 + duration: 166.813709ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4124,7 +4416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -4132,18 +4424,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 936 + content_length: 1878 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:25.492533Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:56:27.167312+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "936" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:51 GMT + - Wed, 15 Oct 2025 14:57:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4153,11 +4445,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b47e9179-17c0-48cf-a451-dd2ca7003137 + - b11684a3-7427-43ce-99fd-bb7625cfea8e status: 200 OK code: 200 - duration: 29.133298ms - - id: 84 + duration: 149.038752ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/cd023223-6dda-4bc3-b553-9b16c19361b4/action","href_result":"/servers/cd023223-6dda-4bc3-b553-9b16c19361b4","id":"edac61d9-92f2-442b-9285-604392dd10b9","progress":0,"started_at":"2025-10-15T14:57:36.381627+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:57:36 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/edac61d9-92f2-442b-9285-604392dd10b9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 89219545-e81c-455c-a5a3-6d1e77e8d7e5 + status: 202 Accepted + code: 202 + duration: 292.341399ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4173,26 +4518,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb?delete_ip=false - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 1841 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-10-09T09:38:04.407818Z","gateway_networks":[],"id":"9e50aef0-e064-4095-8123-d7201bc659bb","ipv4":{"address":"51.15.133.243","created_at":"2025-10-09T09:38:04.197333Z","gateway_id":"9e50aef0-e064-4095-8123-d7201bc659bb","id":"cf61f321-4670-4762-bd95-6e422e558f9b","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"243-133-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-10-09T09:38:04.197333Z","zone":"fr-par-1"},"is_legacy":false,"name":"The Public Gateway","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-10-09T09:38:51.788445Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:57:36.145386+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "937" + - "1841" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:51 GMT + - Wed, 15 Oct 2025 14:57:36 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4202,11 +4547,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d16ac38d-938b-43d4-bf7f-4aaff98ee80a + - 33a326ee-bd8f-4e2c-9734-0e5e938496ae status: 200 OK code: 200 - duration: 80.130075ms - - id: 85 + duration: 131.323001ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4222,7 +4567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/9e50aef0-e064-4095-8123-d7201bc659bb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -4230,18 +4575,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 128 + content_length: 1841 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"9e50aef0-e064-4095-8123-d7201bc659bb","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:57:36.145386+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "128" + - "1841" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:51 GMT + - Wed, 15 Oct 2025 14:57:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4251,11 +4596,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d62fd2a-5be8-4dc4-af0e-ea40261d1abc - status: 404 Not Found - code: 404 - duration: 25.288867ms - - id: 86 + - 5e2dbdb0-e7be-4905-8e84-9b25f8add069 + status: 200 OK + code: 200 + duration: 161.099183ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4271,24 +4616,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/ips/cf61f321-4670-4762-bd95-6e422e558f9b - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1841 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T14:56:22.825939+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"cd023223-6dda-4bc3-b553-9b16c19361b4","image":{"arch":"x86_64","creation_date":"2025-09-12T11:24:50.001905+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"942c58b9-89fb-48cc-be8b-126c9187794d","modification_date":"2025-09-12T11:24:50.001905+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1101","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:51","maintenances":[],"modification_date":"2025-10-15T14:57:36.145386+00:00","name":"Scaleway Instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"75e8d2bb-948a-42b8-a14c-c78a540601af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1841" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:51 GMT + - Wed, 15 Oct 2025 14:57:46 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4298,11 +4645,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8ad1c37-ff8e-4d22-8ec3-72c835e05851 - status: 204 No Content - code: 204 - duration: 37.774713ms - - id: 87 + - f756b70c-f708-4d88-88ea-a548f0103e00 + status: 200 OK + code: 200 + duration: 140.625128ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4318,7 +4665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0897b29c-3422-4396-b45a-a6d244a19c0f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/cd023223-6dda-4bc3-b553-9b16c19361b4 method: GET response: proto: HTTP/2.0 @@ -4328,7 +4675,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0897b29c-3422-4396-b45a-a6d244a19c0f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"cd023223-6dda-4bc3-b553-9b16c19361b4","type":"not_found"}' headers: Content-Length: - "143" @@ -4337,7 +4684,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:53 GMT + - Wed, 15 Oct 2025 14:57:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4347,11 +4694,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e380fd4-44a0-4c47-a494-c8bab55c7e7f + - 33b95b59-ff65-4351-b080-7dc3be63729b status: 404 Not Found code: 404 - duration: 51.575527ms - - id: 88 + duration: 48.494595ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4367,7 +4714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -4377,7 +4724,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75e8d2bb-948a-42b8-a14c-c78a540601af","type":"not_found"}' headers: Content-Length: - "143" @@ -4386,7 +4733,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:53 GMT + - Wed, 15 Oct 2025 14:57:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4396,11 +4743,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa0d8b4-7ff1-4e62-aed1-5df815afc03f + - 1a9ba024-c6e1-431b-9e06-d1d43b10caeb status: 404 Not Found code: 404 - duration: 28.464225ms - - id: 89 + duration: 30.416863ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4416,7 +4763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: GET response: proto: HTTP/2.0 @@ -4426,7 +4773,7 @@ interactions: trailer: {} content_length: 485 uncompressed: false - body: '{"created_at":"2025-10-09T09:38:05.501795Z","id":"b47ca660-49f8-4c1f-ab62-e53ca1c29807","last_detached_at":"2025-10-09T09:38:49.934891Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:38:49.934891Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:56:22.964973Z","id":"75e8d2bb-948a-42b8-a14c-c78a540601af","last_detached_at":"2025-10-15T14:57:47.906807Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"8bb9a008-9121-4150-84a3-1e64c459d3f4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:57:47.906807Z","zone":"fr-par-1"}' headers: Content-Length: - "485" @@ -4435,7 +4782,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:53 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4445,11 +4792,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05537f9c-f1ae-459c-b09e-149c85427694 + - af680a68-d7e4-4c7f-b6de-b78d1bda8f69 status: 200 OK code: 200 - duration: 92.701287ms - - id: 90 + duration: 86.999942ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4465,7 +4812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b47ca660-49f8-4c1f-ab62-e53ca1c29807 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75e8d2bb-948a-42b8-a14c-c78a540601af method: DELETE response: proto: HTTP/2.0 @@ -4482,7 +4829,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:53 GMT + - Wed, 15 Oct 2025 14:57:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4492,11 +4839,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 206e1b0d-5d44-47d7-9ee2-104239f08837 + - 2a346682-3d74-4f99-bf30-178a70af8e6c status: 204 No Content code: 204 - duration: 161.389603ms - - id: 91 + duration: 168.789905ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4512,7 +4859,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/90a980aa-edeb-4450-b46d-8de066fa6ac3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0f37e499-9db4-460f-9896-c0bdb770306c method: DELETE response: proto: HTTP/2.0 @@ -4529,7 +4876,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:38:54 GMT + - Wed, 15 Oct 2025 14:57:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -4539,7 +4886,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 406bcb26-08e4-4961-80d3-874bfcaaf6b5 + - 81e9c262-e056-4ce4-a5d3-a25e419bb32e status: 204 No Content code: 204 - duration: 1.240301418s + duration: 1.308035538s From f9ab290691fffe24d0939a1f7245fd3e9824c168 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 17:01:39 +0200 Subject: [PATCH 10/12] ipam ok --- ...ta-source-ipamip-instance-lb.cassette.yaml | 1515 ++++++++++------- .../data-source-ipamip-instance.cassette.yaml | 1047 ++++++------ .../ipamip-reverse-dns-basic.cassette.yaml | 719 ++++---- 3 files changed, 1812 insertions(+), 1469 deletions(-) diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml index dd8444913..115cc19e7 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,31 +48,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80d89f65-144f-43b4-b06e-a79ebf331119 + - b0443df3-061f-49b7-8f57-12d6613db44f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 138.037319ms + duration: 62.516433ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 434 uncompressed: false - body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.027841Z","custom_routes_propagation_enabled":true,"id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:20.027841Z"}' headers: Content-Length: - - "298" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,29 +101,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e42ea36a-fa8b-45eb-87a8-8a95e554794a + - f3e5b82e-c35b-47e8-9be3-1122cc0c872a status: 200 OK code: 200 - duration: 165.565284ms + duration: 114.955318ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 79 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 434 + content_length: 296 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' + body: '{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "434" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 056764be-4168-4e9d-9c91-4ad98a53ca6a + - f49ec633-d0fd-46b4-9107-3458176d9d7f status: 200 OK code: 200 - duration: 198.691219ms + duration: 120.212025ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e02a0b7b-a3d4-4149-8891-c2fd3736c4c7 + - 1d146781-7821-434f-82a0-1e59d290188f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.732257ms + duration: 48.516205ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bd085f6b-9656-48a2-8af1-a669ec56f9ec method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 434 uncompressed: false - body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.027841Z","custom_routes_propagation_enabled":true,"id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:20.027841Z"}' headers: Content-Length: - - "298" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2673d075-ae02-469d-b864-ff26f6ab687d + - e0a4c367-1856-4fc7-8d8d-8a3ffb4e841b status: 200 OK code: 200 - duration: 107.402043ms + duration: 30.392973ms - id: 5 request: proto: HTTP/1.1 @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e91ae69-d005-4d0f-93c6-4273f057a946 + - 4e607cac-ce7c-4201-950e-91bb039f961b status: 200 OK code: 200 - duration: 111.262423ms + duration: 50.15923ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/1fdfa8cd-e228-4d25-9976-16bdb3f6c827 method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 434 + content_length: 296 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' + body: '{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "434" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,22 +352,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10ef11cc-3f67-417b-a2db-61647799c062 + - 8e9242b6-ad26-467a-b86e-e710e8aafaba status: 200 OK code: 200 - duration: 119.230889ms + duration: 102.436242ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 251 + content_length: 249 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-lb-pedantic-dhawan","description":"","ip_id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"tf-lb-angry-vaughan","description":"","ip_id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' form: {} headers: Content-Type: @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 911 + content_length: 907 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743047Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:32.202743047Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120064Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_create","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:20.351120064Z","zone":"fr-par-1"}' headers: Content-Length: - - "911" + - "907" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14cb07cc-c0f3-4feb-b6f8-cd90fd23c40b + - 59a03a51-fe3b-415d-aae0-9cbc48102abe status: 200 OK code: 200 - duration: 322.413175ms + duration: 318.882727ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1112 + content_length: 1108 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-10-09T09:02:32.378510Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:32.388156Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-10-15T14:59:20.505730Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:20.511254Z","zone":"fr-par-1"}' headers: Content-Length: - - "1112" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e4dc3c2-8c8c-47c8-902e-63d45ed4e56b + - a9789bea-8187-4712-9ce7-597407175c5d status: 200 OK code: 200 - duration: 123.383865ms + duration: 104.452757ms - id: 9 request: proto: HTTP/1.1 @@ -467,7 +467,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3","default_route_propagation_enabled":false}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 1106 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' + body: '{"created_at":"2025-10-15T14:59:20.156156Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:20.156156Z","id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"},{"created_at":"2025-10-15T14:59:20.156156Z","id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:82e6::/64","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}],"tags":[],"updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}' headers: Content-Length: - - "1105" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63e5d642-9fa0-428d-97cc-782ea608664c + - 85a8bf12-167d-4873-95a8-54b7d32fa611 status: 200 OK code: 200 - duration: 704.314305ms + duration: 632.536918ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94b020d8-2b97-4cdf-8097-0bedc242a29b method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 1106 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' + body: '{"created_at":"2025-10-15T14:59:20.156156Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:20.156156Z","id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"},{"created_at":"2025-10-15T14:59:20.156156Z","id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:82e6::/64","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}],"tags":[],"updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}' headers: Content-Length: - - "1105" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21fd72b-9b1f-4af2-93cf-81eea000173d + - 35179624-fc7f-4d8c-be51-6b59e41c3a4a status: 200 OK code: 200 - duration: 97.596726ms + duration: 20.350211ms - id: 11 request: proto: HTTP/1.1 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:20.799332+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:33 GMT + - Wed, 15 Oct 2025 14:59:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c6dde2-120d-4358-83f0-8123368f6913 + - b9dc5386-7fc0-45b2-b2c6-8e4739dd08e7 status: 201 Created code: 201 - duration: 1.740698563s + duration: 1.499210953s - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -635,7 +635,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:20.799332+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -644,9 +644,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:33 GMT + - Wed, 15 Oct 2025 14:59:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59d8d65b-d62b-499b-9731-dfe4a9ea3e62 + - fe40854c-0498-42f7-86b2-3c2f565ecdb0 status: 200 OK code: 200 - duration: 152.855495ms + duration: 177.457458ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:32.868192+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:20.799332+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:34 GMT + - Wed, 15 Oct 2025 14:59:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deefb2f0-478d-4713-a214-3fc3fe82c41e + - 4d059dd0-262c-4bf8-9171-dbc7f053ee96 status: 200 OK code: 200 - duration: 164.331117ms + duration: 141.309596ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.942282Z","id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:20.942282Z","id":"ec9ed5ff-ffc4-40d2-b165-30c26dc706a2","product_resource_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:20.942282Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:34 GMT + - Wed, 15 Oct 2025 14:59:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c803f7e-3112-442a-8254-67aad6c782f0 + - fc6bcebd-3792-4207-88d4-8db9a308412b status: 200 OK code: 200 - duration: 114.223608ms + duration: 97.987811ms - id: 15 request: proto: HTTP/1.1 @@ -774,7 +774,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/action method: POST response: proto: HTTP/2.0 @@ -784,7 +784,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action","href_result":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13","id":"6bfce3ea-557e-464d-8007-194ffb62830d","progress":0,"started_at":"2025-10-09T09:02:34.497791+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/action","href_result":"/servers/8166dd25-970c-4b54-ba24-d1428c4f1704","id":"9e2da672-4d4f-492c-984d-162713e864df","progress":0,"started_at":"2025-10-15T14:59:22.268490+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -793,11 +793,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:34 GMT + - Wed, 15 Oct 2025 14:59:22 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6bfce3ea-557e-464d-8007-194ffb62830d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e2da672-4d4f-492c-984d-162713e864df Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65c0b7ab-7de2-4425-8809-dfca57360122 + - 7a922859-cdd9-4cf4-8dcb-de4da1e3b230 status: 202 Accepted code: 202 - duration: 273.58444ms + duration: 258.595212ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 1858 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:34.271096+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:22.067048+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1858" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:34 GMT + - Wed, 15 Oct 2025 14:59:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f9c022a-ae63-45d0-b488-9378a10ab437 + - bc91157d-2afb-45d4-890e-6583ee38f267 status: 200 OK code: 200 - duration: 153.242823ms + duration: 140.511054ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1992" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:39 GMT + - Wed, 15 Oct 2025 14:59:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c638c8b-e3c1-419c-a75a-8a2148653ed2 + - 995752ab-c84c-41d6-8e92-33371e840966 status: 200 OK code: 200 - duration: 149.151925ms + duration: 141.950077ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1992" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:39 GMT + - Wed, 15 Oct 2025 14:59:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd17b7c6-23ef-43c4-ae23-e55326bd0498 + - 34049a57-eb9f-4f60-b082-0a992b28ad66 status: 200 OK code: 200 - duration: 130.97872ms + duration: 135.97719ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: GET response: proto: HTTP/2.0 @@ -982,7 +982,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","type":"not_found"}' headers: Content-Length: - "143" @@ -991,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:39 GMT + - Wed, 15 Oct 2025 14:59:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 550738ac-6a7f-4f7e-9e08-514734e95d7d + - 745f044e-89be-4f8e-af46-e2f314c9e734 status: 404 Not Found code: 404 - duration: 29.484076ms + duration: 27.956346ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.942282Z","id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:20.942282Z","id":"ec9ed5ff-ffc4-40d2-b165-30c26dc706a2","product_resource_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:20.942282Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:40 GMT + - Wed, 15 Oct 2025 14:59:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bcb6565-b8a5-4ecd-8742-1e442190bff2 + - 25828c65-d154-4640-9a43-3c8b6b9bb9e8 status: 200 OK code: 200 - duration: 85.189388ms + duration: 99.143091ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/user_data method: GET response: proto: HTTP/2.0 @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:40 GMT + - Wed, 15 Oct 2025 14:59:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e90d7c8-d087-4348-bac4-a7dfb14a6a78 + - 264ab82a-199d-48de-83c5-22be4b2c3901 status: 200 OK code: 200 - duration: 107.033577ms + duration: 103.030605ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics method: GET response: proto: HTTP/2.0 @@ -1138,11 +1138,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:40 GMT + - Wed, 15 Oct 2025 14:59:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,12 +1150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 936b07d2-7b34-4fc3-8e53-ec58dbe8405f + - e44bc298-6743-424a-acf9-68e195e56e4a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 101.315931ms + duration: 91.039858ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1992" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:40 GMT + - Wed, 15 Oct 2025 14:59:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71048171-0d9c-4357-9e87-9c9b80faf5aa + - 5f0313d4-8455-40d4-9ff5-fc01b2bb3146 status: 200 OK code: 200 - duration: 164.256776ms + duration: 152.046844ms - id: 24 request: proto: HTTP/1.1 @@ -1216,14 +1216,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"127be423-31e2-4603-a771-dc9ee882743c"}' + body: '{"private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics method: POST response: proto: HTTP/2.0 @@ -1233,7 +1233,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1242,9 +1242,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:41 GMT + - Wed, 15 Oct 2025 14:59:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,10 +1252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57bd5cc4-06a4-421a-9ad2-9e8ead44870a + - d9c6f4a9-34ea-4847-8395-540851acaedd status: 201 Created code: 201 - duration: 696.057556ms + duration: 596.746296ms - id: 25 request: proto: HTTP/1.1 @@ -1272,7 +1272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1282,7 +1282,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1291,9 +1291,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:41 GMT + - Wed, 15 Oct 2025 14:59:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,10 +1301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f47ae98-c127-413d-b976-338543852b2e + - 79513f2c-4617-4f40-b998-55272154b03d status: 200 OK code: 200 - duration: 100.856931ms + duration: 91.125338ms - id: 26 request: proto: HTTP/1.1 @@ -1321,7 +1321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1331,7 +1331,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1340,9 +1340,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:46 GMT + - Wed, 15 Oct 2025 14:59:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,10 +1350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38eb447c-4e32-437f-9b7f-1e7ab331ca5b + - 3a782ec0-2d45-4a5d-8816-6315e9ff4cb6 status: 200 OK code: 200 - duration: 137.789195ms + duration: 132.365373ms - id: 27 request: proto: HTTP/1.1 @@ -1370,7 +1370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1380,7 +1380,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1389,9 +1389,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:51 GMT + - Wed, 15 Oct 2025 14:59:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,10 +1399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d8d45c3-7563-4072-95a0-f1ee610331aa + - 15794db5-2e60-472a-ba4b-ae798fcfa7cb status: 200 OK code: 200 - duration: 96.950726ms + duration: 115.033778ms - id: 28 request: proto: HTTP/1.1 @@ -1419,7 +1419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1429,7 +1429,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1438,9 +1438,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:56 GMT + - Wed, 15 Oct 2025 14:59:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,10 +1448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 964b2197-4b81-4700-b355-38c1c42eeb9b + - 6f1cf44f-2353-46a3-afee-326358b0ac3b status: 200 OK code: 200 - duration: 120.24308ms + duration: 101.932656ms - id: 29 request: proto: HTTP/1.1 @@ -1468,7 +1468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1478,7 +1478,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1487,9 +1487,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:01 GMT + - Wed, 15 Oct 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,10 +1497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c9691ec-6c79-4667-b5dc-d925d0b120d1 + - 51d8973e-cf72-4761-8337-387ab72b0038 status: 200 OK code: 200 - duration: 120.667428ms + duration: 100.734842ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T14:59:22.060582Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:02 GMT + - Wed, 15 Oct 2025 14:59:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ba6613-ba69-4cda-b9f6-33954e260096 + - 4623c64d-d3ee-47ea-b995-f9d42fe1110c status: 200 OK code: 200 - duration: 128.463675ms + duration: 107.228377ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T14:59:22.060582Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:02 GMT + - Wed, 15 Oct 2025 14:59:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad4048fa-b201-4457-8860-6bd2a741ff3c + - 6296534c-891d-472f-9daa-ffd0eabcd3f1 status: 200 OK code: 200 - duration: 116.556081ms + duration: 89.642041ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1634,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:02 GMT + - Wed, 15 Oct 2025 14:59:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4f60ac7-3ef7-4f4b-9b9e-b4c719e5aa5f + - c8ea169c-cf97-438d-9250-8bc1444fde09 status: 200 OK code: 200 - duration: 89.885358ms + duration: 98.944622ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1674,7 +1674,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:02:40.686809+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1683,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f22d9ec9-7ba8-4229-9a53-959525c7e5ff + - f6873f1b-60a4-48d2-901f-a169529c4ca4 status: 200 OK code: 200 - duration: 108.701756ms + duration: 95.940595ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1721,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:11 GMT + - Wed, 15 Oct 2025 14:59:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 206ece0a-66b4-492d-82b2-5c840cee798c + - 95940da9-56e4-47e3-b3dc-e4c435af6666 status: 200 OK code: 200 - duration: 115.568316ms + duration: 102.813256ms - id: 35 request: proto: HTTP/1.1 @@ -1762,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1770,20 +1770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67b38d57-63d0-490b-968b-e46e4d6650d0 + - 94641733-a3fa-4bf6-b9e0-c8ba7260a634 status: 200 OK code: 200 - duration: 104.003499ms + duration: 124.924332ms - id: 36 request: proto: HTTP/1.1 @@ -1811,7 +1811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1819,20 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2450 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2450" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b636145-8f4a-4bfb-89d5-7750a42e3f73 + - e6a5f7a9-e1ed-45c5-8257-28c3a95fb12e status: 200 OK code: 200 - duration: 137.642864ms + duration: 171.89691ms - id: 37 request: proto: HTTP/1.1 @@ -1860,7 +1860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=127be423-31e2-4603-a771-dc9ee882743c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1868,20 +1868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T14:59:28.416680+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1101" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87732dae-3054-4d31-b279-9e2e5f61ddba + - 9483d332-6c19-4e0d-b974-b53f26dca0d9 status: 200 OK code: 200 - duration: 59.154541ms + duration: 113.369248ms - id: 38 request: proto: HTTP/1.1 @@ -1909,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1917,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 475 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "550" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e120089d-efca-44de-9417-0fe9f55e8bd7 + - 6d0fa69d-810f-4b3c-821f-42c7b4b96102 status: 200 OK code: 200 - duration: 86.600899ms + duration: 114.751835ms - id: 39 request: proto: HTTP/1.1 @@ -1958,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -1966,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 475 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:02:34.189705Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1107" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,50 +1987,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c001b688-4336-42a8-8ad6-8395bf84cf5c + - 1cfd318d-48e1-4548-959d-cff51235db0d status: 200 OK code: 200 - duration: 118.553645ms + duration: 119.575054ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 624 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-youthful-keldysh","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.88.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/backends - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2001 + content_length: 2450 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:12.664996814Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-09T09:03:12.687218503Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664996814Z"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2001" + - "2450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0ac2dd-ff69-4e91-a490-8de1730ea260 + - f382fd8c-6200-41c0-83a4-33ac683e47d3 status: 200 OK code: 200 - duration: 320.588079ms + duration: 196.170788ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +2056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=94b020d8-2b97-4cdf-8097-0bedc242a29b&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=afa570b5-7c26-48fa-8f03-8530903e2c7d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2066,20 +2064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1102 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-09T09:03:12.687219Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:82e6:4bb2:e17a:6d72:f5d0/64","created_at":"2025-10-15T14:59:28.661456Z","id":"3fc14e7d-4612-4441-9c2e-df8a1cea76b4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7"},"tags":[],"updated_at":"2025-10-15T14:59:28.661456Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1109" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:12 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b974ab4-ce15-4485-8590-dfee8913289c + - 4b92bc9f-331a-4418-9021-44820ded8345 status: 200 OK code: 200 - duration: 132.318405ms + duration: 52.639316ms - id: 42 request: proto: HTTP/1.1 @@ -2107,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A12%3Ad9&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2115,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1990 + content_length: 550 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:12.664997Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664997Z"}' + body: '{"ips":[{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1990" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57e34fb3-a0ec-4f3a-ba5d-3b2db56730bd + - 62ed8eb5-ae57-4feb-8051-98903f1867a8 status: 200 OK code: 200 - duration: 153.486432ms + duration: 115.241682ms - id: 43 request: proto: HTTP/1.1 @@ -2156,7 +2154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -2164,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T14:59:22.060582Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,48 +2183,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89fa54ef-54fe-445c-b3eb-a676228d8c41 + - d9193c6f-a4cb-4b3c-86cb-a6f1c00bcc54 status: 200 OK code: 200 - duration: 125.927565ms + duration: 165.310545ms - id: 44 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 629 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-lb-bkd-compassionate-ptolemy","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.17.16.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16/backends + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 2002 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-15T15:00:20.972375660Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"f401bb5e-2dc8-456d-b138-1275a0a00155","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-15T15:00:21.001264791Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-compassionate-ptolemy","on_marked_down_action":"on_marked_down_action_none","pool":["172.17.16.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-15T15:00:20.972375660Z"}' headers: Content-Length: - - "550" + - "2002" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff63a3dd-3fa1-4411-8168-2df1061e1921 + - 205e1a25-200e-4398-8ded-68c393c12188 status: 200 OK code: 200 - duration: 88.091873ms + duration: 366.56358ms - id: 45 request: proto: HTTP/1.1 @@ -2254,7 +2254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -2262,20 +2262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 434 + content_length: 1105 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:31.922980Z","custom_routes_propagation_enabled":true,"id":"314508fc-9258-420b-8ac8-cbc072b39da3","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:31.922980Z"}' + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-15T15:00:21.001265Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "434" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa09927b-ffe0-4452-996c-4951017381df + - e677ad25-616a-423d-af5a-f5fca7e2a4da status: 200 OK code: 200 - duration: 41.051198ms + duration: 120.963335ms - id: 46 request: proto: HTTP/1.1 @@ -2303,7 +2303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f401bb5e-2dc8-456d-b138-1275a0a00155 method: GET response: proto: HTTP/2.0 @@ -2311,20 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 332 + content_length: 1993 uncompressed: false - body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:20.972376Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"f401bb5e-2dc8-456d-b138-1275a0a00155","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-15T15:00:21.001265Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-compassionate-ptolemy","on_marked_down_action":"on_marked_down_action_none","pool":["172.17.16.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-15T15:00:20.972376Z"}' headers: Content-Length: - - "332" + - "1993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc0383c1-0207-424a-b293-4ada8f9f8717 + - 37a84a35-8034-4b4d-a70c-01c38a778748 status: 200 OK code: 200 - duration: 74.857642ms + duration: 137.504612ms - id: 47 request: proto: HTTP/1.1 @@ -2352,7 +2352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -2360,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 1103 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:32.187023Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"127be423-31e2-4603-a771-dc9ee882743c","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:32.187023Z","id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"},{"created_at":"2025-10-09T09:02:32.187023Z","id":"8fdc3574-d36f-446b-994d-1741989732d8","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:efd::/64","updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}],"tags":[],"updated_at":"2025-10-09T09:02:32.187023Z","vpc_id":"314508fc-9258-420b-8ac8-cbc072b39da3"}' + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1105" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08ced4d8-4f98-4d7d-92c1-d6fb46ccf12d + - 3dcb82f0-484f-4280-9e51-16638859e48e status: 200 OK code: 200 - duration: 30.126803ms + duration: 134.041548ms - id: 48 request: proto: HTTP/1.1 @@ -2401,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A12%3Ad9&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2409,20 +2409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2450 + content_length: 550 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":1}' headers: Content-Length: - - "2450" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21f1cf16-35ff-488a-b7f4-681190141e64 + - 731210f6-67cd-4392-a9c5-2cbc9fd10385 status: 200 OK code: 200 - duration: 146.67325ms + duration: 83.375197ms - id: 49 request: proto: HTTP/1.1 @@ -2450,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bd085f6b-9656-48a2-8af1-a669ec56f9ec method: GET response: proto: HTTP/2.0 @@ -2458,20 +2458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 434 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' + body: '{"created_at":"2025-10-15T14:59:20.027841Z","custom_routes_propagation_enabled":true,"id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:20.027841Z"}' headers: Content-Length: - - "143" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1ee1675-be5a-4762-af00-e20c828e9362 - status: 404 Not Found - code: 404 - duration: 31.342146ms + - a5e63435-9979-4143-83a7-b85015ba3b95 + status: 200 OK + code: 200 + duration: 151.28417ms - id: 50 request: proto: HTTP/1.1 @@ -2499,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/1fdfa8cd-e228-4d25-9976-16bdb3f6c827 method: GET response: proto: HTTP/2.0 @@ -2507,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 330 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "330" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8da7f148-33c4-45af-8dff-37c64dddc2fd + - fe33e85f-fc15-44f5-8816-04b637af5150 status: 200 OK code: 200 - duration: 111.384549ms + duration: 235.524096ms - id: 51 request: proto: HTTP/1.1 @@ -2548,7 +2548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94b020d8-2b97-4cdf-8097-0bedc242a29b method: GET response: proto: HTTP/2.0 @@ -2556,20 +2556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1106 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:33.028473Z","id":"c4df284e-f856-4e94-bc95-c45ec783cd10","product_resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:33.028473Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.156156Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:20.156156Z","id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"},{"created_at":"2025-10-15T14:59:20.156156Z","id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:82e6::/64","updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}],"tags":[],"updated_at":"2025-10-15T14:59:20.156156Z","vpc_id":"bd085f6b-9656-48a2-8af1-a669ec56f9ec"}' headers: Content-Length: - - "705" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a5f8df8-0192-426b-9be9-6843905113f8 + - a825bca3-0cfb-435b-9da4-888c20f6b04a status: 200 OK code: 200 - duration: 81.500975ms + duration: 107.208245ms - id: 52 request: proto: HTTP/1.1 @@ -2597,7 +2597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 2450 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1107" + - "2450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c41ba10e-b68a-4eef-9d09-3647009ccfdd + - d5fbc167-ab64-48d7-9ba2-7c41afa7ad3a status: 200 OK code: 200 - duration: 116.330568ms + duration: 274.238944ms - id: 53 request: proto: HTTP/1.1 @@ -2646,7 +2646,154 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c90dd6bf-4e9a-4c67-995b-ca6bf5031d7d + status: 404 Not Found + code: 404 + duration: 41.463364ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1103 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1103" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ac9ec6a-a23e-4d5b-9725-177c9330149a + status: 200 OK + code: 200 + duration: 158.39314ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 705 + uncompressed: false + body: '{"created_at":"2025-10-15T14:59:20.942282Z","id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:20.942282Z","id":"ec9ed5ff-ffc4-40d2-b165-30c26dc706a2","product_resource_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:20.942282Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d01c3536-f590-4bd8-98cf-6e783dfd689f + status: 200 OK + code: 200 + duration: 87.648588ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/user_data method: GET response: proto: HTTP/2.0 @@ -2665,9 +2812,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,11 +2822,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7691d0b4-27ef-498a-8c64-56bef1f9b8b8 + - 23d91621-2580-46c7-a993-8dad6f644263 status: 200 OK code: 200 - duration: 109.198396ms - - id: 54 + duration: 110.357141ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2695,7 +2842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -2703,20 +2850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39 + content_length: 1103 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "39" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,11 +2871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8629b9a-fe67-443c-80d3-f96b85f858fb + - b308396f-8419-4373-afe0-a01d9499d9fb status: 200 OK code: 200 - duration: 92.84672ms - - id: 55 + duration: 184.906586ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2744,7 +2891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics method: GET response: proto: HTTP/2.0 @@ -2754,7 +2901,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2763,11 +2910,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,13 +2922,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ef040a5-6f3c-488b-aab9-fbd96135a49d + - ba73046a-0cc8-4630-96ed-3dcbbbb553db X-Total-Count: - "1" status: 200 OK code: 200 - duration: 115.913717ms - - id: 56 + duration: 155.886788ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2797,7 +2944,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=afa570b5-7c26-48fa-8f03-8530903e2c7d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2805,20 +2952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:82e6:4bb2:e17a:6d72:f5d0/64","created_at":"2025-10-15T14:59:28.661456Z","id":"3fc14e7d-4612-4441-9c2e-df8a1cea76b4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7"},"tags":[],"updated_at":"2025-10-15T14:59:28.661456Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1101" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2826,11 +2973,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e6de86f-505f-47a3-8e70-a102ec798d7f + - 2ae71499-dd3b-429e-abe5-135aa2951601 status: 200 OK code: 200 - duration: 37.203161ms - - id: 57 + duration: 23.856953ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 39 + uncompressed: false + body: '{"private_network":[],"total_count":0}' + headers: + Content-Length: + - "39" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 824cac2f-4cf3-49ba-9a16-05c1031ff28b + status: 200 OK + code: 200 + duration: 116.174852ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2846,7 +3042,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -2856,7 +3052,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2865,9 +3061,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2875,11 +3071,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b7bbf01-9cc7-4796-b258-709b2fc417d4 + - f5a7a9a5-bf20-4aaa-a661-e7f41ea590c8 status: 200 OK code: 200 - duration: 93.895856ms - - id: 58 + duration: 96.330761ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2895,7 +3091,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -2905,7 +3101,7 @@ interactions: trailer: {} content_length: 2450 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2450" @@ -2914,9 +3110,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2924,11 +3120,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47c9c114-2005-4bdc-929f-22c7c2843096 + - b5347c07-da20-4bb1-ac69-b14802f8fe18 status: 200 OK code: 200 - duration: 141.81621ms - - id: 59 + duration: 206.06723ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2944,7 +3140,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=127be423-31e2-4603-a771-dc9ee882743c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=79ab5cbf-9d5d-43bd-b6f9-a926456e43b3&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=94b020d8-2b97-4cdf-8097-0bedc242a29b&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=afa570b5-7c26-48fa-8f03-8530903e2c7d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2952,20 +3148,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:efd:1455:957d:2e39:d932/64","created_at":"2025-10-09T09:02:41.008833Z","id":"8d1c8d6d-b0bd-47e9-b351-13e5407aa55b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"8fdc3574-d36f-446b-994d-1741989732d8"},"tags":[],"updated_at":"2025-10-09T09:02:41.008833Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:82e6:4bb2:e17a:6d72:f5d0/64","created_at":"2025-10-15T14:59:28.661456Z","id":"3fc14e7d-4612-4441-9c2e-df8a1cea76b4","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6b1121ce-7ab1-4a1f-825d-e2c03050e5b7"},"tags":[],"updated_at":"2025-10-15T14:59:28.661456Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1101" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2973,11 +3169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9301e16d-d728-442d-bd1b-b07d1246a3f1 + - 01b707e6-d4b3-44bd-9291-e5aea469e51c status: 200 OK code: 200 - duration: 49.044047ms - - id: 60 + duration: 45.789363ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2993,7 +3189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ac6%3A0f&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A15%3A12%3Ad9&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3003,7 +3199,7 @@ interactions: trailer: {} content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-09T09:02:40.807117Z","id":"9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","mac_address":"02:00:00:1E:C6:0F","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a9ebcb76-401c-4dc5-a0b2-3b1a7fcf1b86"},"tags":[],"updated_at":"2025-10-09T09:02:40.807117Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.17.16.2/22","created_at":"2025-10-15T14:59:28.487855Z","id":"d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","mac_address":"02:00:00:15:12:D9","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"05fb7324-2b2a-411b-8763-a3df1d2b6ef8"},"tags":[],"updated_at":"2025-10-15T14:59:28.487855Z","zone":null}],"total_count":1}' headers: Content-Length: - "550" @@ -3012,9 +3208,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,11 +3218,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 007f2632-95f1-4d6b-a317-b57e3d0e2fbc + - b2e9a5b1-3eb3-4509-a2f6-d1d0bba611ff status: 200 OK code: 200 - duration: 83.553366ms - - id: 61 + duration: 94.650658ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3042,7 +3238,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f401bb5e-2dc8-456d-b138-1275a0a00155 method: GET response: proto: HTTP/2.0 @@ -3050,20 +3246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1990 + content_length: 1991 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:12.664997Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"0932dc45-af25-4cb7-8779-40bcec014484","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-youthful-keldysh","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.88.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-09T09:03:12.664997Z"}' + body: '{"created_at":"2025-10-15T15:00:20.972376Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"f401bb5e-2dc8-456d-b138-1275a0a00155","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-compassionate-ptolemy","on_marked_down_action":"on_marked_down_action_none","pool":["172.17.16.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-10-15T15:00:20.972376Z"}' headers: Content-Length: - - "1990" + - "1991" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3071,11 +3267,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f88256f-ef5d-47fd-8be5-714d892fd32e + - bf113fc1-16e6-4caf-a4d6-f64b5ec3cb51 status: 200 OK code: 200 - duration: 102.638153ms - - id: 62 + duration: 264.427491ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3091,7 +3287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -3099,20 +3295,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:14 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3120,11 +3316,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61b798fc-31b3-4a21-a8f2-672ad321f194 + - 1a68d6d5-672c-4c4c-8847-87c01690f391 status: 200 OK code: 200 - duration: 138.288167ms - - id: 63 + duration: 141.59832ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3140,7 +3336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -3148,20 +3344,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:12.960451Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:21.368410Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:15 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,11 +3365,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc9db42f-8c35-4b06-923c-999e0635797a + - 431b9cf6-cf4a-4239-8981-dfc9fef0fc0e status: 200 OK code: 200 - duration: 146.079994ms - - id: 64 + duration: 109.614181ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3189,7 +3385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/0932dc45-af25-4cb7-8779-40bcec014484 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/f401bb5e-2dc8-456d-b138-1275a0a00155 method: DELETE response: proto: HTTP/2.0 @@ -3206,9 +3402,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:15 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3216,11 +3412,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e38ae188-96b4-47f2-8539-3251b1cf219d + - 13f2e7f8-a13d-48d6-b6ac-4c18fb4f36bb status: 204 No Content code: 204 - duration: 314.325391ms - - id: 65 + duration: 498.20707ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3236,7 +3432,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -3244,20 +3440,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1105 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-10-15T15:00:24.168527Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1105" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:15 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3265,11 +3461,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdd6c01a-ff4e-4a22-ae14-152da2cbbde7 + - 0919523c-94f4-45ba-9714-be3b87513004 status: 200 OK code: 200 - duration: 114.485419ms - - id: 66 + duration: 144.249325ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3285,7 +3481,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -3295,7 +3491,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:40.494211+00:00","id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","ipam_ip_ids":["9200e4b7-48e7-460e-b8a9-0d3ac3b56e14","8d1c8d6d-b0bd-47e9-b351-13e5407aa55b"],"mac_address":"02:00:00:1e:c6:0f","modification_date":"2025-10-09T09:03:09.600105+00:00","private_network_id":"127be423-31e2-4603-a771-dc9ee882743c","server_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:28.239003+00:00","id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","ipam_ip_ids":["d31f5fbc-cd59-4fd1-b977-3ab2125dd65f","3fc14e7d-4612-4441-9c2e-df8a1cea76b4"],"mac_address":"02:00:00:15:12:d9","modification_date":"2025-10-15T15:00:16.437748+00:00","private_network_id":"94b020d8-2b97-4cdf-8097-0bedc242a29b","server_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3304,9 +3500,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:15 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3314,11 +3510,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57c31f12-9077-4a57-b7df-5bee37c7a6f4 + - 025260d4-d98b-4398-bcfb-61db1ae433d3 status: 200 OK code: 200 - duration: 97.323844ms - - id: 67 + duration: 117.695021ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3334,7 +3530,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -3342,20 +3538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1103 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:02:35.717793Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:24.450843Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T14:59:22.850833Z","zone":"fr-par-1"}' headers: Content-Length: - - "1107" + - "1103" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:15 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3363,11 +3559,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca1d4039-b7a5-45c7-a871-b8d6df52e2b0 + - a36ed35c-b499-4594-91a5-c1556c0ed79a status: 200 OK code: 200 - duration: 137.986456ms - - id: 68 + duration: 173.939619ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3383,7 +3579,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -3400,9 +3596,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3410,11 +3606,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a0b4f0-dc3f-4862-aa47-5fd9d8ce1912 + - eddacdce-49c9-4144-a9f0-9a7d629fe9ab status: 204 No Content code: 204 - duration: 321.785287ms - - id: 69 + duration: 328.785972ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3430,7 +3626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: DELETE response: proto: HTTP/2.0 @@ -3447,9 +3643,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3457,11 +3653,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b8dd5cb-d71a-4a7d-97e6-f5df83b949fc + - 9167e6fd-f132-452b-b5ca-d1e40a3fecd9 status: 204 No Content code: 204 - duration: 427.087371ms - - id: 70 + duration: 489.077581ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3477,7 +3673,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -3485,20 +3681,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1107 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-10-09T09:02:32.202743Z","description":"","frontend_count":0,"id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","instances":[{"created_at":"2025-10-09T08:58:10.376775Z","id":"289a3e45-b91a-44bc-95d9-037ccb73a264","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-09T09:03:15.744383Z","zone":"fr-par-1"}],"ip":[{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":"103ae4ec-15e6-44b9-a98e-9f6e5a72ba49","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-pedantic-dhawan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-09T09:03:16.106685Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-10-15T14:59:20.351120Z","description":"","frontend_count":0,"id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","instances":[{"created_at":"2025-10-15T14:53:19.402015Z","id":"2cd860d1-5230-4980-84e5-8ee72a0096e5","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-10-15T15:00:24.450843Z","zone":"fr-par-1"}],"ip":[{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":"e2f29493-9d87-4bbb-be73-cfb3b20c1e16","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-angry-vaughan","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"to_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-10-15T15:00:24.781911Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1107" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3506,11 +3702,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2d59bed-a8f7-4407-bcf6-f576a7fa1236 + - 11badb15-dde2-4e6a-b386-e2259c4ea395 status: 200 OK code: 200 - duration: 100.816821ms - - id: 71 + duration: 148.673258ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3526,7 +3722,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/private_nics/79ab5cbf-9d5d-43bd-b6f9-a926456e43b3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/private_nics/afa570b5-7c26-48fa-8f03-8530903e2c7d method: GET response: proto: HTTP/2.0 @@ -3536,7 +3732,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"79ab5cbf-9d5d-43bd-b6f9-a926456e43b3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"afa570b5-7c26-48fa-8f03-8530903e2c7d","type":"not_found"}' headers: Content-Length: - "148" @@ -3545,9 +3741,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3555,11 +3751,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e33d6ca-7993-472e-95ae-65d0ef5292f9 + - 6771c0e7-aa99-417e-9acf-cec9a31e763d status: 404 Not Found code: 404 - duration: 91.477333ms - - id: 72 + duration: 112.520665ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3575,7 +3771,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -3585,7 +3781,7 @@ interactions: trailer: {} content_length: 1992 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:02:37.382557+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1992" @@ -3594,9 +3790,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3604,11 +3800,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8123bb6-3a28-47a6-b07f-248c7f355190 + - 3f5d7aab-b293-47cd-9b8a-8073300f5ffa status: 200 OK code: 200 - duration: 143.879819ms - - id: 73 + duration: 163.716982ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1992 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T14:59:25.167982+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1992" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 99368162-9a80-49ec-bc06-cecc4d89f0c2 + status: 200 OK + code: 200 + duration: 140.594674ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3626,7 +3871,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/action method: POST response: proto: HTTP/2.0 @@ -3636,7 +3881,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13/action","href_result":"/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13","id":"ef54e829-db8b-4fa2-83a8-3df595949c23","progress":0,"started_at":"2025-10-09T09:03:16.812679+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/8166dd25-970c-4b54-ba24-d1428c4f1704/action","href_result":"/servers/8166dd25-970c-4b54-ba24-d1428c4f1704","id":"38e48223-9352-40be-86a7-c0f1354e5e28","progress":0,"started_at":"2025-10-15T15:00:25.783989+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3645,11 +3890,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:16 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ef54e829-db8b-4fa2-83a8-3df595949c23 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/38e48223-9352-40be-86a7-c0f1354e5e28 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3657,11 +3902,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 948f3a20-9876-46e2-a3a3-a1bade9d8709 + - ab3ffd11-973e-40f5-b057-c6938263c086 status: 202 Accepted code: 202 - duration: 278.420892ms - - id: 74 + duration: 334.313024ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3677,7 +3922,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -3687,7 +3932,7 @@ interactions: trailer: {} content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:32.868192+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b5","maintenances":[],"modification_date":"2025-10-09T09:03:16.583756+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"b995db69-af4b-444c-bcc0-8a74628daaf5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:20.799332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"8166dd25-970c-4b54-ba24-d1428c4f1704","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"101","node_id":"177","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:81","maintenances":[],"modification_date":"2025-10-15T15:00:25.548589+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1955" @@ -3696,9 +3941,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:17 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3706,11 +3951,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9896be93-837a-4c67-a58b-952175668d50 + - 353d3cdf-2a14-4193-b7c6-05ec2ea7826d status: 200 OK code: 200 - duration: 173.643872ms - - id: 75 + duration: 159.328076ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3726,7 +3971,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/127be423-31e2-4603-a771-dc9ee882743c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/94b020d8-2b97-4cdf-8097-0bedc242a29b method: DELETE response: proto: HTTP/2.0 @@ -3743,9 +3988,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:17 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3753,11 +3998,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90d8148f-cb12-4bf0-8c41-a0c78dce3e7a + - ae2c2252-75b1-4fb2-aee1-33ba1ba632ae status: 204 No Content code: 204 - duration: 1.232897951s - - id: 76 + duration: 1.24255251s + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3773,7 +4018,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/314508fc-9258-420b-8ac8-cbc072b39da3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bd085f6b-9656-48a2-8af1-a669ec56f9ec method: DELETE response: proto: HTTP/2.0 @@ -3790,9 +4035,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:17 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3800,11 +4045,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0ca66a4-01c0-4a52-a915-50429b21e7a3 + - 9e929ab3-b6f1-497f-a734-d4f93820d4d7 status: 204 No Content code: 204 - duration: 192.567458ms - - id: 77 + duration: 165.731216ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3820,7 +4065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -3830,7 +4075,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","type":"not_found"}' headers: Content-Length: - "143" @@ -3839,9 +4084,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:22 GMT + - Wed, 15 Oct 2025 15:00:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3849,11 +4094,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 110fdf26-8f2d-4ab5-8c5e-eead98df70d5 + - eeab7d89-e70d-4230-bbb4-eb5d915b2ecf status: 404 Not Found code: 404 - duration: 67.862639ms - - id: 78 + duration: 46.242696ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -3869,7 +4114,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: GET response: proto: HTTP/2.0 @@ -3879,7 +4124,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b995db69-af4b-444c-bcc0-8a74628daaf5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","type":"not_found"}' headers: Content-Length: - "143" @@ -3888,9 +4133,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:22 GMT + - Wed, 15 Oct 2025 15:00:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3898,11 +4143,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13bd4a0c-eea7-4cc4-9307-756160a956f8 + - ae9b48ad-8969-4248-be89-c11f17174166 status: 404 Not Found code: 404 - duration: 43.398592ms - - id: 79 + duration: 27.856694ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -3918,7 +4163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: GET response: proto: HTTP/2.0 @@ -3928,7 +4173,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:33.028473Z","id":"b995db69-af4b-444c-bcc0-8a74628daaf5","last_detached_at":"2025-10-09T09:03:19.435160Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:19.435160Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:20.942282Z","id":"9286aaea-d2ff-449c-87c5-c75da9a9729e","last_detached_at":"2025-10-15T15:00:27.985899Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:27.985899Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -3937,9 +4182,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:22 GMT + - Wed, 15 Oct 2025 15:00:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3947,11 +4192,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14755939-8c80-42bc-af10-c96520a557c6 + - c7c33b98-e87a-43b9-9731-af28976bc3b7 status: 200 OK code: 200 - duration: 86.529069ms - - id: 80 + duration: 90.540523ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -3967,7 +4212,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b995db69-af4b-444c-bcc0-8a74628daaf5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9286aaea-d2ff-449c-87c5-c75da9a9729e method: DELETE response: proto: HTTP/2.0 @@ -3984,9 +4229,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:22 GMT + - Wed, 15 Oct 2025 15:00:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3994,11 +4239,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e53b926c-6ade-493f-8c69-5b2a237a10cc + - 41ca1fb3-72b8-44d7-a9b0-01f43bcbe470 status: 204 No Content code: 204 - duration: 170.081975ms - - id: 81 + duration: 188.739593ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4014,7 +4259,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -4033,9 +4278,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4043,11 +4288,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f65fab0-9bad-401c-bf78-a7093ad3b0fc + - 7ef709bb-c7d0-42f6-8cd5-b8181ee2cacc status: 404 Not Found code: 404 - duration: 54.345895ms - - id: 82 + duration: 30.640866ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4063,7 +4308,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/103ae4ec-15e6-44b9-a98e-9f6e5a72ba49 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/e2f29493-9d87-4bbb-be73-cfb3b20c1e16 method: GET response: proto: HTTP/2.0 @@ -4082,9 +4327,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4092,11 +4337,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d3b1d31-5417-4e55-b539-e80f37f4003b + - 302538df-cf3c-4238-a1c2-aceb85455327 status: 404 Not Found code: 404 - duration: 19.130032ms - - id: 83 + duration: 25.828975ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4112,7 +4357,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/1fdfa8cd-e228-4d25-9976-16bdb3f6c827 method: GET response: proto: HTTP/2.0 @@ -4120,20 +4365,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 296 uncompressed: false - body: '{"id":"975c5a63-7a7f-4c39-9d71-95fc1c0c24e3","ip_address":"51.159.204.100","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-204-100.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"1fdfa8cd-e228-4d25-9976-16bdb3f6c827","ip_address":"51.159.74.159","lb_id":null,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","reverse":"51-159-74-159.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "298" + - "296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4141,11 +4386,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fbd57d5-a42b-418c-9374-9608a39fe5e5 + - 493e6a98-7800-451c-b8c9-b4aac870d05f status: 200 OK code: 200 - duration: 133.665832ms - - id: 84 + duration: 91.076052ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4161,7 +4406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/975c5a63-7a7f-4c39-9d71-95fc1c0c24e3 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/1fdfa8cd-e228-4d25-9976-16bdb3f6c827 method: DELETE response: proto: HTTP/2.0 @@ -4178,9 +4423,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:47 GMT + - Wed, 15 Oct 2025 15:00:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4188,11 +4433,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 520c1ef7-52c7-4577-9b5b-ef702e800dfe + - 3efc1b07-d617-4596-9844-32b070a3a4ef status: 204 No Content code: 204 - duration: 610.37019ms - - id: 85 + duration: 1.473171238s + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4208,7 +4453,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/67ecb1e5-4c83-4aab-abed-76f5c63dfb13 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8166dd25-970c-4b54-ba24-d1428c4f1704 method: GET response: proto: HTTP/2.0 @@ -4218,7 +4463,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"67ecb1e5-4c83-4aab-abed-76f5c63dfb13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8166dd25-970c-4b54-ba24-d1428c4f1704","type":"not_found"}' headers: Content-Length: - "143" @@ -4227,9 +4472,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:47 GMT + - Wed, 15 Oct 2025 15:00:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4237,7 +4482,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b65adc7d-3db5-411d-a1b4-560d5ad44aa4 + - 1aaf5945-a8da-4b1e-8130-f059ccce0c8b status: 404 Not Found code: 404 - duration: 108.189104ms + duration: 40.28758ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml index 8308096dd..284f33b65 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:24 GMT + - Wed, 15 Oct 2025 14:59:05 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,52 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 638e8dfe-2b58-4527-8555-091d101f6082 + - 037906d0-6d49-43ba-b2ba-2c449f71e065 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 128.055447ms + duration: 102.037193ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 434 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-10-15T14:59:05.292010Z","custom_routes_propagation_enabled":true,"id":"62262480-84f8-4a04-ad66-11019a4ad08c","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:05.292010Z"}' headers: Content-Length: - - "19730" + - "434" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:24 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 14:59:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,32 +101,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54cd63c2-c6b4-4db7-8936-801e1fd12177 - X-Total-Count: - - "75" + - 6fa54ccb-3a02-42cd-9414-3c91d366105b status: 200 OK code: 200 - duration: 45.263256ms + duration: 170.272362ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/62262480-84f8-4a04-ad66-11019a4ad08c + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -135,7 +131,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' + body: '{"created_at":"2025-10-15T14:59:05.292010Z","custom_routes_propagation_enabled":true,"id":"62262480-84f8-4a04-ad66-11019a4ad08c","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:05.292010Z"}' headers: Content-Length: - "434" @@ -144,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:24 GMT + - Wed, 15 Oct 2025 14:59:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -154,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a15560bf-d838-407f-8c4b-b9d2dae32fb7 + - eeddbcbc-c7a1-4599-9bf4-353c760973f6 status: 200 OK code: 200 - duration: 201.04615ms + duration: 21.0151ms - id: 3 request: proto: HTTP/1.1 @@ -174,7 +170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -182,20 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 14295 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1260" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:24 GMT + - Wed, 15 Oct 2025 14:59:05 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,10 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83389c35-8fc1-4928-aef5-86cae77124a0 + - 2f0d6667-4cc6-48f2-9882-9de8d6a285ed + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 50.298008ms + duration: 54.350941ms - id: 4 request: proto: HTTP/1.1 @@ -223,7 +223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 + 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: proto: HTTP/2.0 @@ -231,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 434 + content_length: 1260 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "434" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:24 GMT + - Wed, 15 Oct 2025 14:59:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,10 +252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7f5b400-030d-4d9c-b110-22a1be52d250 + - 8211fb31-905c-4324-a66e-d0420c6515fb status: 200 OK code: 200 - duration: 106.384423ms + duration: 119.716171ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +267,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","default_route_propagation_enabled":false}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 1106 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' + body: '{"created_at":"2025-10-15T14:59:05.442408Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"63983b23-ddec-41c6-883c-c91631885b9f","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:05.442408Z","id":"cbc16b7e-f2b3-4906-a5c9-156b97352411","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"},{"created_at":"2025-10-15T14:59:05.442408Z","id":"ce352268-6a86-4033-86a0-ae809986de20","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dc39::/64","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}],"tags":[],"updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}' headers: Content-Length: - - "1105" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:25 GMT + - Wed, 15 Oct 2025 14:59:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9790867c-ebf7-4dc3-980b-f7af13970895 + - 36f80b73-0423-4c05-9fea-0546b8d9b857 status: 200 OK code: 200 - duration: 699.652944ms + duration: 747.054351ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/63983b23-ddec-41c6-883c-c91631885b9f method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 1106 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' + body: '{"created_at":"2025-10-15T14:59:05.442408Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"63983b23-ddec-41c6-883c-c91631885b9f","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:05.442408Z","id":"cbc16b7e-f2b3-4906-a5c9-156b97352411","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"},{"created_at":"2025-10-15T14:59:05.442408Z","id":"ce352268-6a86-4033-86a0-ae809986de20","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dc39::/64","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}],"tags":[],"updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}' headers: Content-Length: - - "1105" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:25 GMT + - Wed, 15 Oct 2025 14:59:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 575f6889-e0ba-4bd7-b21c-cfe50ddde4c1 + - 923efdac-8d34-4172-86cb-8b8eda5bc21e status: 200 OK code: 200 - duration: 105.182484ms + duration: 33.014852ms - id: 7 request: proto: HTTP/1.1 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:06.059115+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:25 GMT + - Wed, 15 Oct 2025 14:59:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 832166f5-ef56-4742-97a8-4162f6ee5255 + - 1703bd2e-b0d9-4f72-bf2e-6c1607dbf42b status: 201 Created code: 201 - duration: 1.384836768s + duration: 1.306477259s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:06.059115+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:26 GMT + - Wed, 15 Oct 2025 14:59:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bc97f2b-861b-4865-85a9-865c268ccae4 + - 5acf31a6-3e19-4c68-81f0-9d2a9d4da4e5 status: 200 OK code: 200 - duration: 219.80295ms + duration: 125.960987ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:25.136317+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:06.059115+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:26 GMT + - Wed, 15 Oct 2025 14:59:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a36a7fd5-51ca-4a92-920e-f9a42ae99a10 + - 3071af18-42a0-4f98-9e76-ed646bc73184 status: 200 OK code: 200 - duration: 176.575549ms + duration: 160.146821ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:06.197016Z","id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:06.197016Z","id":"4c82c1b5-eb73-4b34-9e8a-b088db930a1f","product_resource_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:06.197016Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:26 GMT + - Wed, 15 Oct 2025 14:59:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,48 +552,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdb9d726-d1c4-4aea-985d-baffc9ac1b3e + - adadcb22-2a7e-4f17-b385-fe888e72ad80 status: 200 OK code: 200 - duration: 128.124963ms + duration: 87.846204ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/action","href_result":"/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65","id":"b52e8906-a403-4d40-9184-a014596577bf","progress":0,"started_at":"2025-10-15T14:59:07.383510+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT + - Wed, 15 Oct 2025 14:59:07 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b52e8906-a403-4d40-9184-a014596577bf Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,52 +605,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 826f382f-c3bb-4c7f-94cf-6bed26803ad7 - status: 200 OK - code: 200 - duration: 93.855103ms + - dfd27b8b-9ccb-412a-bf1d-556e8f883a81 + status: 202 Accepted + code: 202 + duration: 258.465551ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1858 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action","href_result":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","id":"3006b751-4c84-4733-9eb4-f22bfdd6afe4","progress":0,"started_at":"2025-10-09T09:02:31.895853+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:07.178396+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:31 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3006b751-4c84-4733-9eb4-f22bfdd6afe4 + - Wed, 15 Oct 2025 14:59:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a53b47b-fe75-4b27-b6e8-49c3147c382e - status: 202 Accepted - code: 202 - duration: 468.271087ms + - 7a95e026-64d2-426d-a998-1be90d9f4a98 + status: 200 OK + code: 200 + duration: 121.751081ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1858 + content_length: 1993 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:31.654369+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1858" + - "1993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:32 GMT + - Wed, 15 Oct 2025 14:59:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1641dc57-2ca1-4cf9-abe4-c882062104a3 + - cc725cf9-2987-462f-ac10-b823aa306d69 status: 200 OK code: 200 - duration: 133.966181ms + duration: 145.059324ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1994 + content_length: 1993 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1994" + - "1993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 598da952-3f8b-43ce-a715-3f411c33e5b4 + - 3a6dcadd-d4df-4e56-9891-0cc1ae3cc196 status: 200 OK code: 200 - duration: 171.430004ms + duration: 154.286318ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1994 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","type":"not_found"}' headers: Content-Length: - - "1994" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0b74093-5493-4d6d-ad9b-f22f28973311 - status: 200 OK - code: 200 - duration: 210.919947ms + - 7ac0e131-efbb-4e3c-9e07-0a24e2eb37bc + status: 404 Not Found + code: 404 + duration: 31.74572ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' + body: '{"created_at":"2025-10-15T14:59:06.197016Z","id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:06.197016Z","id":"4c82c1b5-eb73-4b34-9e8a-b088db930a1f","product_resource_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:06.197016Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8810f97b-11aa-46ab-908f-40207f81d3f1 - status: 404 Not Found - code: 404 - duration: 34.469217ms + - 0a030cc3-5100-48b3-ae5d-3ebffb78ada9 + status: 200 OK + code: 200 + duration: 97.926713ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/user_data method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 137b43cb-8040-4468-85e9-55238953e511 + - 1ab29522-9acc-433b-918a-b8813e757413 status: 200 OK code: 200 - duration: 98.015281ms + duration: 93.071519ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics method: GET response: proto: HTTP/2.0 @@ -927,20 +927,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:13 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a1b4255-b386-4254-aa70-3552addd0c10 + - 032b6bf9-7245-4233-997a-60772140925b + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 92.449215ms + duration: 108.23903ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -976,22 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1993 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 14:59:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,50 +1001,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e27d2c1a-817b-44c1-91f9-e543b6c08f9e - X-Total-Count: - - "0" + - a6dd909b-ada9-4332-beee-02b08c498f49 status: 200 OK code: 200 - duration: 105.828465ms + duration: 188.066277ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1994 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1994" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:37 GMT + - Wed, 15 Oct 2025 14:59:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,30 +1052,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaffa0bb-3a8c-46d3-8799-e2bb8cf493ce - status: 200 OK - code: 200 - duration: 143.554366ms + - 5afee957-01aa-4dfa-a3e6-24914847e38e + status: 201 Created + code: 201 + duration: 1.002278495s - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1091,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:38 GMT + - Wed, 15 Oct 2025 14:59:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9d24e9b-b755-4d04-a662-fb44a9667675 - status: 201 Created - code: 201 - duration: 788.920625ms + - e5f896a2-72fc-4148-8f50-3980020d836b + status: 200 OK + code: 200 + duration: 104.738041ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1131,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:38 GMT + - Wed, 15 Oct 2025 14:59:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dc46210-b2a8-43ae-8db3-6c9f7523bfae + - 562d3016-6b7d-4e47-853e-e0d01f7e3c27 status: 200 OK code: 200 - duration: 116.315694ms + duration: 101.898274ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:43 GMT + - Wed, 15 Oct 2025 14:59:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a98169c9-8a35-465e-a1a4-5e19ce8e4dc2 + - cb9628a7-ba40-48d7-ad14-4ca4d1a53c3f status: 200 OK code: 200 - duration: 123.274714ms + duration: 108.245189ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:49 GMT + - Wed, 15 Oct 2025 14:59:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7726d58e-ecf4-417a-b9c7-75bf0d87786c + - 91cabf97-409b-4590-941b-ff3c10cb07c4 status: 200 OK code: 200 - duration: 117.249595ms + duration: 122.81882ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1278,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:54 GMT + - Wed, 15 Oct 2025 14:59:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 986c3b18-a085-443e-8b10-d6ec4c942f52 + - de3b2b90-25e5-4850-8422-85f46755e466 status: 200 OK code: 200 - duration: 111.261969ms + duration: 103.262821ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:02:38.212627+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:13.635659+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:02:59 GMT + - Wed, 15 Oct 2025 14:59:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bce280a7-66e5-4d06-bfe1-253e990b8d75 + - 7e7cc8dd-b8e5-4609-b08b-d86d90f5b0de status: 200 OK code: 200 - duration: 118.286215ms + duration: 96.300288ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70e03676-60d0-4da8-877b-d57b12163af6 + - fcd78a75-a91b-45fa-92ea-4b78754883e2 status: 200 OK code: 200 - duration: 99.275861ms + duration: 152.558489ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -1425,7 +1425,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 306c0ae5-48d8-4f8c-ad91-23cc1d403e07 + - b70035aa-2cd6-4b0d-8b14-bd6334770bf6 status: 200 OK code: 200 - duration: 98.038946ms + duration: 103.363235ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -1472,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2451 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93a23494-cc23-4bc5-be09-edabd6bb722b + - 413bed91-e0ee-438f-8a8c-3b0c1ee1aee6 status: 200 OK code: 200 - duration: 157.482051ms + duration: 151.037773ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cc11bac3-9f77-4e7d-98b5-dcfcab329f6d&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=63983b23-ddec-41c6-883c-c91631885b9f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1521,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:dc39:b80c:ca64:df61:a2ed/64","created_at":"2025-10-15T14:59:13.826415Z","id":"17f973ce-0118-40a9-a512-44df4c4c7ab5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ce352268-6a86-4033-86a0-ae809986de20"},"tags":[],"updated_at":"2025-10-15T14:59:13.826415Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1101" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 658639ac-5df1-4aca-bb07-a77fa8a736f5 + - 6bc2b5ea-a98a-4f06-a236-4606ce8fd247 status: 200 OK code: 200 - duration: 123.216847ms + duration: 46.038236ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1570,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33546a0e-b95f-40ff-934b-92376e809319 + - 0364e117-6580-4a41-9147-816db3d19e76 status: 200 OK code: 200 - duration: 112.319541ms + duration: 83.787417ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3Afc%3Af7&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:04 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39ae2122-3295-466a-ae0d-3fc797a0162a + - 21cc0b5c-1167-4048-a5aa-48bb594fc725 status: 200 OK code: 200 - duration: 137.980343ms + duration: 101.256954ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1668,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6b4866-c0ff-4422-8274-15ce76f6af4e + - 171d8d0a-73a5-4623-a019-14e32f87682f status: 200 OK code: 200 - duration: 102.379423ms + duration: 82.35748ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3Afc%3Af7&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a34c5909-af9e-4851-a947-363fc8fa9bf4 + - 283f0b2d-aa4f-4b1a-a032-5ae2bf2f9555 status: 200 OK code: 200 - duration: 102.440816ms + duration: 83.860684ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/62262480-84f8-4a04-ad66-11019a4ad08c method: GET response: proto: HTTP/2.0 @@ -1768,7 +1768,7 @@ interactions: trailer: {} content_length: 434 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.367055Z","custom_routes_propagation_enabled":true,"id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-09T09:02:24.367055Z"}' + body: '{"created_at":"2025-10-15T14:59:05.292010Z","custom_routes_propagation_enabled":true,"id":"62262480-84f8-4a04-ad66-11019a4ad08c","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T14:59:05.292010Z"}' headers: Content-Length: - "434" @@ -1777,9 +1777,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9828822c-e633-4db5-9021-5f355f50d20a + - a5c917ad-44f7-4775-b60a-9a3436a48ebf status: 200 OK code: 200 - duration: 85.964818ms + duration: 29.53083ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/63983b23-ddec-41c6-883c-c91631885b9f method: GET response: proto: HTTP/2.0 @@ -1815,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 1106 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T14:59:05.442408Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"63983b23-ddec-41c6-883c-c91631885b9f","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T14:59:05.442408Z","id":"cbc16b7e-f2b3-4906-a5c9-156b97352411","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.88.0/22","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"},{"created_at":"2025-10-15T14:59:05.442408Z","id":"ce352268-6a86-4033-86a0-ae809986de20","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dc39::/64","updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}],"tags":[],"updated_at":"2025-10-15T14:59:05.442408Z","vpc_id":"62262480-84f8-4a04-ad66-11019a4ad08c"}' headers: Content-Length: - - "2452" + - "1106" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da3ea3c4-de28-4ec5-82cb-7b37f360c0a6 + - 6178c866-fb5d-4234-af4b-9521caae0f7e status: 200 OK code: 200 - duration: 152.884815ms + duration: 27.004001ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -1864,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1105 + content_length: 2451 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:24.636868Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-09T09:02:24.636868Z","id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"},{"created_at":"2025-10-09T09:02:24.636868Z","id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:5896::/64","updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}],"tags":[],"updated_at":"2025-10-09T09:02:24.636868Z","vpc_id":"118e13fb-7220-4d9c-8d97-d33c8ebb8530"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1105" + - "2451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 631c7b41-cb0c-4a33-aadc-526e4df2a683 + - b94db25d-762f-4cff-a51a-0199ab185d26 status: 200 OK code: 200 - duration: 84.949043ms + duration: 127.541959ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -1915,7 +1915,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","type":"not_found"}' headers: Content-Length: - "143" @@ -1924,9 +1924,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9ba0aef-b832-4aab-bcb2-c180c0d17e4f + - 206d2feb-c8d5-4356-9514-68c729cda6c0 status: 404 Not Found code: 404 - duration: 34.066584ms + duration: 27.695145ms - id: 39 request: proto: HTTP/1.1 @@ -1954,7 +1954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -1964,7 +1964,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:02:25.315068Z","id":"f121b87e-0c2d-43a6-9932-162ce8c15805","product_resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:02:25.315068Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:06.197016Z","id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T14:59:06.197016Z","id":"4c82c1b5-eb73-4b34-9e8a-b088db930a1f","product_resource_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T14:59:06.197016Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1973,9 +1973,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 568a3d48-5ac5-44ea-9f3e-59be9fceccd1 + - 972ee270-a578-41f4-910b-8fee12131a4a status: 200 OK code: 200 - duration: 90.118208ms + duration: 96.483611ms - id: 40 request: proto: HTTP/1.1 @@ -2003,7 +2003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/user_data method: GET response: proto: HTTP/2.0 @@ -2022,9 +2022,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,10 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c632e01-e38a-42d3-a590-8c01d0a03357 + - 68fe5803-e66f-44b0-9e13-3c4be0d5b678 status: 200 OK code: 200 - duration: 103.925798ms + duration: 106.897711ms - id: 41 request: proto: HTTP/1.1 @@ -2052,7 +2052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics method: GET response: proto: HTTP/2.0 @@ -2062,7 +2062,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2071,11 +2071,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:05 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2083,12 +2083,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03604dee-c8d4-4662-91a1-0ec12e78df17 + - ba98f943-845a-41c3-81d1-599ceb3785d9 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 107.70595ms + duration: 109.729963ms - id: 42 request: proto: HTTP/1.1 @@ -2105,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2113,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:dc39:b80c:ca64:df61:a2ed/64","created_at":"2025-10-15T14:59:13.826415Z","id":"17f973ce-0118-40a9-a512-44df4c4c7ab5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ce352268-6a86-4033-86a0-ae809986de20"},"tags":[],"updated_at":"2025-10-15T14:59:13.826415Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1101" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 796e5116-3fe0-4c69-933e-aef649786a88 + - 6ed410d2-e4e9-4747-a21e-2a2677d96aa3 status: 200 OK code: 200 - duration: 85.720406ms + duration: 33.380926ms - id: 43 request: proto: HTTP/1.1 @@ -2154,7 +2154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -2164,7 +2164,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2173,9 +2173,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82193b02-a9c8-4b45-bbb1-ff68b31c79d0 + - e12021e1-d225-4f79-af4a-b6c4291c78ab status: 200 OK code: 200 - duration: 109.887806ms + duration: 106.168777ms - id: 44 request: proto: HTTP/1.1 @@ -2203,7 +2203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2211,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2452 + content_length: 2451 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2452" + - "2451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5a4cc38-5a21-417f-b795-ea1cd01a25f6 + - 97bb13d4-3ec6-450a-9303-099d27668720 status: 200 OK code: 200 - duration: 165.792944ms + duration: 148.929128ms - id: 45 request: proto: HTTP/1.1 @@ -2252,7 +2252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cc11bac3-9f77-4e7d-98b5-dcfcab329f6d&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=63983b23-ddec-41c6-883c-c91631885b9f&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2260,20 +2260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 1102 uncompressed: false - body: '{"ips":[{"address":"fd5f:519c:6d46:5896:bae2:c648:11e8:a3ad/64","created_at":"2025-10-09T09:02:38.591159Z","id":"6cd099ca-bcbf-41d3-bbe6-0192d25a5955","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cdf10e16-ffb9-4b06-8a86-58e7baf375bc"},"tags":[],"updated_at":"2025-10-09T09:02:38.591159Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:dc39:b80c:ca64:df61:a2ed/64","created_at":"2025-10-15T14:59:13.826415Z","id":"17f973ce-0118-40a9-a512-44df4c4c7ab5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"ce352268-6a86-4033-86a0-ae809986de20"},"tags":[],"updated_at":"2025-10-15T14:59:13.826415Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1101" + - "1102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,10 +2281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71f513f6-b8a0-45a2-bda4-4aae96a757bb + - 5a39ab30-eec9-4a27-a7a4-9d8f23fed949 status: 200 OK code: 200 - duration: 131.475081ms + duration: 55.721911ms - id: 46 request: proto: HTTP/1.1 @@ -2301,7 +2301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c4eb7a52-9cd6-47eb-afa7-16da06d32693&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=507ff725-d66c-4711-8c42-8e16027e0d3a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2309,20 +2309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,10 +2330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0801343c-7876-4e62-9695-ec134ca14c26 + - 8f9b8ae7-2a1f-4ac3-ad5e-9e617e65aeae status: 200 OK code: 200 - duration: 95.332188ms + duration: 83.455747ms - id: 47 request: proto: HTTP/1.1 @@ -2350,7 +2350,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A18%3Aa0%3A2b&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3Afc%3Af7&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2358,20 +2358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 550 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-10-09T09:02:38.370639Z","id":"74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","mac_address":"02:00:00:18:A0:2B","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"e7f798f9-6d48-40a7-bad4-e47b88a6cdf5"},"tags":[],"updated_at":"2025-10-09T09:02:38.370639Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-10-15T14:59:13.714529Z","id":"4428258d-a1a6-4e7f-80d7-a47a06915381","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"507ff725-d66c-4711-8c42-8e16027e0d3a","mac_address":"02:00:00:17:FC:F7","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cbc16b7e-f2b3-4906-a5c9-156b97352411"},"tags":[],"updated_at":"2025-10-15T14:59:13.714529Z","zone":null}],"total_count":1}' headers: Content-Length: - - "549" + - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2379,10 +2379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab4e73aa-5191-4ec4-b108-d106c8a4f4a3 + - 0b187e17-7046-4fee-aa9e-4dba3988fef4 status: 200 OK code: 200 - duration: 107.712089ms + duration: 127.168ms - id: 48 request: proto: HTTP/1.1 @@ -2399,7 +2399,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -2409,7 +2409,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-09T09:02:37.962565+00:00","id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","ipam_ip_ids":["74ffbce6-1b6f-4b64-ab4f-ce26e32f62ee","6cd099ca-bcbf-41d3-bbe6-0192d25a5955"],"mac_address":"02:00:00:18:a0:2b","modification_date":"2025-10-09T09:03:03.650291+00:00","private_network_id":"cc11bac3-9f77-4e7d-98b5-dcfcab329f6d","server_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T14:59:13.402731+00:00","id":"507ff725-d66c-4711-8c42-8e16027e0d3a","ipam_ip_ids":["4428258d-a1a6-4e7f-80d7-a47a06915381","17f973ce-0118-40a9-a512-44df4c4c7ab5"],"mac_address":"02:00:00:17:fc:f7","modification_date":"2025-10-15T14:59:44.805459+00:00","private_network_id":"63983b23-ddec-41c6-883c-c91631885b9f","server_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2418,9 +2418,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:06 GMT + - Wed, 15 Oct 2025 14:59:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2428,10 +2428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a591f441-c824-43e9-8e9d-21357e43e8b5 + - 89af918e-d257-4d50-be37-3c93a87cd619 status: 200 OK code: 200 - duration: 102.617932ms + duration: 95.30723ms - id: 49 request: proto: HTTP/1.1 @@ -2448,7 +2448,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: DELETE response: proto: HTTP/2.0 @@ -2465,9 +2465,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:07 GMT + - Wed, 15 Oct 2025 14:59:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2475,10 +2475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1de948a2-6a54-498a-b29d-204b4b911a5d + - 027896e9-3086-42bf-b4d3-b1c8d256cf63 status: 204 No Content code: 204 - duration: 465.517867ms + duration: 416.387243ms - id: 50 request: proto: HTTP/1.1 @@ -2495,7 +2495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/private_nics/c4eb7a52-9cd6-47eb-afa7-16da06d32693 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/private_nics/507ff725-d66c-4711-8c42-8e16027e0d3a method: GET response: proto: HTTP/2.0 @@ -2505,7 +2505,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c4eb7a52-9cd6-47eb-afa7-16da06d32693","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"507ff725-d66c-4711-8c42-8e16027e0d3a","type":"not_found"}' headers: Content-Length: - "148" @@ -2514,9 +2514,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:07 GMT + - Wed, 15 Oct 2025 14:59:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2524,10 +2524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84df8858-2368-4beb-aa79-f6e06b39d2a7 + - fff87bda-205c-41d1-b2eb-aa679087f2f7 status: 404 Not Found code: 404 - duration: 109.773555ms + duration: 105.656861ms - id: 51 request: proto: HTTP/1.1 @@ -2544,7 +2544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2552,20 +2552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2040 + content_length: 1993 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:02:34.841421+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2040" + - "1993" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:07 GMT + - Wed, 15 Oct 2025 14:59:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2573,11 +2573,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d56454bb-a14f-4854-ae2a-6c2812118ae1 + - 42cdb24a-4ae4-4896-b199-e957dd85aefb status: 200 OK code: 200 - duration: 153.193603ms + duration: 135.11771ms - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1993 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:10.083862+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1993" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 14:59:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 164d8850-ed63-483c-8e1f-0f75caede120 + status: 200 OK + code: 200 + duration: 125.695566ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2595,7 +2644,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/action method: POST response: proto: HTTP/2.0 @@ -2605,7 +2654,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa/action","href_result":"/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","id":"9f55bc9d-096e-4f23-8ad2-565bb8e18503","progress":0,"started_at":"2025-10-09T09:03:07.994737+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65/action","href_result":"/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65","id":"1e6dd188-1035-4473-81fb-f9a1a3cfdf52","progress":0,"started_at":"2025-10-15T14:59:48.233453+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2614,11 +2663,11 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:08 GMT + - Wed, 15 Oct 2025 14:59:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9f55bc9d-096e-4f23-8ad2-565bb8e18503 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e6dd188-1035-4473-81fb-f9a1a3cfdf52 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,11 +2675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd646474-36e6-4d0e-a484-ca563c714096 + - 5b31040e-5117-42be-bec8-582ba0601c92 status: 202 Accepted code: 202 - duration: 339.269812ms - - id: 53 + duration: 285.469047ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,7 +2695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2654,20 +2703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 1956 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:48.007852+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1957" + - "1956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:08 GMT + - Wed, 15 Oct 2025 14:59:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,11 +2724,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdd9971d-6034-4861-b46f-f320aabadb28 + - a9c35ab2-fcb2-4b6f-be88-6f3a3524092c status: 200 OK code: 200 - duration: 155.610539ms - - id: 54 + duration: 138.086108ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2695,7 +2744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cc11bac3-9f77-4e7d-98b5-dcfcab329f6d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/63983b23-ddec-41c6-883c-c91631885b9f method: DELETE response: proto: HTTP/2.0 @@ -2712,9 +2761,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:08 GMT + - Wed, 15 Oct 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2722,11 +2771,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83bb1b1f-6032-4d2e-a7e6-7ed5558a9413 + - c4c96abc-3fbf-40e4-913b-ee206558feb6 status: 204 No Content code: 204 - duration: 1.258153641s - - id: 55 + duration: 1.302968152s + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2742,7 +2791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/118e13fb-7220-4d9c-8d97-d33c8ebb8530 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/62262480-84f8-4a04-ad66-11019a4ad08c method: DELETE response: proto: HTTP/2.0 @@ -2759,9 +2808,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:09 GMT + - Wed, 15 Oct 2025 14:59:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2769,11 +2818,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c947568-9fa1-4c87-89a0-e44fa7b927b7 + - f291dd6a-e09b-45b9-8989-77b8a3e18766 status: 204 No Content code: 204 - duration: 215.690654ms - - id: 56 + duration: 123.705214ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2789,7 +2838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2797,20 +2846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 1956 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:48.007852+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1957" + - "1956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:13 GMT + - Wed, 15 Oct 2025 14:59:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2818,11 +2867,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b06f1b5a-733d-44cb-8ece-ca549489101d + - b3623718-de41-4040-a271-7b0c6b0a9a14 status: 200 OK code: 200 - duration: 154.001337ms - - id: 57 + duration: 113.696929ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2838,7 +2887,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2846,20 +2895,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 1956 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-09T09:02:25.136317+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"158","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:b3","maintenances":[],"modification_date":"2025-10-09T09:03:07.727289+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"ae5681c3-b766-4149-95d1-796afadb9c4c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T14:59:06.059115+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"144","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:7d","maintenances":[],"modification_date":"2025-10-15T14:59:48.007852+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1957" + - "1956" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:18 GMT + - Wed, 15 Oct 2025 14:59:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2867,11 +2916,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7349cd06-dda1-4fc9-872b-680b37f8c47f + - f25f0aad-b842-4a80-9477-29c03e183ad4 status: 200 OK code: 200 - duration: 154.204502ms - - id: 58 + duration: 163.326482ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2887,7 +2936,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -2897,7 +2946,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","type":"not_found"}' headers: Content-Length: - "143" @@ -2906,9 +2955,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:23 GMT + - Wed, 15 Oct 2025 15:00:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2916,11 +2965,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d22cf4e6-d317-40d4-9328-0da9c404b591 + - 002c3f71-06a2-4e31-9fff-c8d64737969a status: 404 Not Found code: 404 - duration: 58.811152ms - - id: 59 + duration: 77.911418ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2936,7 +2985,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -2946,7 +2995,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ae5681c3-b766-4149-95d1-796afadb9c4c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","type":"not_found"}' headers: Content-Length: - "143" @@ -2955,9 +3004,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:23 GMT + - Wed, 15 Oct 2025 15:00:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2965,11 +3014,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9eada48-62d6-4081-a16a-11c40e75235e + - 8da75a59-11f7-4d84-baca-ddaf8b447af4 status: 404 Not Found code: 404 - duration: 28.441442ms - - id: 60 + duration: 37.702423ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2985,7 +3034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: GET response: proto: HTTP/2.0 @@ -2995,7 +3044,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-09T09:02:25.315068Z","id":"ae5681c3-b766-4149-95d1-796afadb9c4c","last_detached_at":"2025-10-09T09:03:20.076294Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:20.076294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T14:59:06.197016Z","id":"f9245441-9827-4d54-9bcb-4e31f3e7bde8","last_detached_at":"2025-10-15T15:00:00.174101Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:00.174101Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -3004,9 +3053,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:23 GMT + - Wed, 15 Oct 2025 15:00:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3014,11 +3063,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22acf491-1970-457d-ba6b-4fb001f9202a + - 223b7270-f962-40c0-9f82-aaf1c31f23af status: 200 OK code: 200 - duration: 98.787506ms - - id: 61 + duration: 114.188815ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3034,7 +3083,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ae5681c3-b766-4149-95d1-796afadb9c4c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f9245441-9827-4d54-9bcb-4e31f3e7bde8 method: DELETE response: proto: HTTP/2.0 @@ -3051,9 +3100,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:23 GMT + - Wed, 15 Oct 2025 15:00:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3061,11 +3110,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 971af31e-6dea-44ef-b988-45ea9bc4a11a + - b2d9c1ec-0aed-40a6-becf-8e2c93ba65c1 status: 204 No Content code: 204 - duration: 165.520803ms - - id: 62 + duration: 195.718698ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3081,7 +3130,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d0831fb2-c7e5-4da2-b5fa-59f3a7472caa + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7b52da92-0f3f-4e1f-98da-d7f20879fe65 method: GET response: proto: HTTP/2.0 @@ -3091,7 +3140,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d0831fb2-c7e5-4da2-b5fa-59f3a7472caa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7b52da92-0f3f-4e1f-98da-d7f20879fe65","type":"not_found"}' headers: Content-Length: - "143" @@ -3100,9 +3149,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:23 GMT + - Wed, 15 Oct 2025 15:00:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3110,7 +3159,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0983f736-7381-4093-948a-11ca22c5283a + - b45f2275-fdc2-4c6c-bdff-84c7c7c59dab status: 404 Not Found code: 404 - duration: 50.752514ms + duration: 85.917396ms diff --git a/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml b/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml index e9279910c..be50c6530 100644 --- a/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-reverse-dns-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:26 GMT + - Wed, 15 Oct 2025 15:00:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31498c7c-4ae0-4259-bfa9-1f1f285a84de + - 60bb9e22-270c-48b1-b852-0e27c58b98ea status: 201 Created code: 201 - duration: 776.685422ms + duration: 1.503324618s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:26 GMT + - Wed, 15 Oct 2025 15:00:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 006e7526-ae22-4044-a505-f321ce036823 + - 16f6f061-5c81-43e2-88b4-f5743655b3c0 status: 200 OK code: 200 - duration: 131.108967ms + duration: 148.24326ms - id: 2 request: proto: HTTP/1.1 @@ -127,18 +127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:26 GMT + - Wed, 15 Oct 2025 15:00:18 GMT Link: - ; rel="next",; rel="last" Server: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbce5b95-c8fb-49d4-a4c2-01b12f34e38a + - 5942f4b8-54f5-499d-a80c-171ac53744c0 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 67.453096ms + duration: 76.536581ms - id: 3 request: proto: HTTP/1.1 @@ -180,18 +180,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:26 GMT + - Wed, 15 Oct 2025 15:00:18 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a73edf-58fb-4e05-a10e-a26d684c48d7 + - aa043ca8-eb70-4a0b-850e-2eab0e7177e1 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.008262ms + duration: 74.620654ms - id: 4 request: proto: HTTP/1.1 @@ -244,7 +244,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:26 GMT + - Wed, 15 Oct 2025 15:00:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e8d81d0-7784-4d10-a48f-dbc9cf1801e7 + - ce06f260-80e1-4914-919d-65b5f60b6813 status: 200 OK code: 200 - duration: 65.875065ms + duration: 60.917651ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["2a2afa1d-f9d6-4e74-b39b-6c001dfdb154"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["88201074-761e-4ed1-83b4-f7fc97b5599f"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -286,7 +286,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -295,9 +295,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:28 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbca0606-1ee1-4c2d-b88d-b8b905e635ee + - dab7e478-adb5-48ca-b78d-b07fbbee6572 status: 201 Created code: 201 - duration: 1.866368537s + duration: 1.717538332s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -337,7 +337,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -346,7 +346,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:28 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b958ebdf-46fe-4f37-a176-3093cb09c67f + - 620f996e-ab48-4ded-9cbe-44a6eb20da02 status: 200 OK code: 200 - duration: 153.806416ms + duration: 176.117937ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -386,7 +386,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -395,7 +395,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:28 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af005431-5f62-4e39-9759-4893cab4f1ae + - cac08664-e1c8-4b00-b3e2-b9875aa69cf1 status: 200 OK code: 200 - duration: 171.371103ms + duration: 171.243943ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -444,7 +444,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55ce6477-9bdd-4d64-a069-8ebbdcdb7c16 + - f27a886c-9fa1-40ac-9a01-9dfcbce54c62 status: 200 OK code: 200 - duration: 172.417771ms + duration: 155.779392ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"85845ef3-49db-4e76-88b5-77f2f9a05400","type":"not_found"}' headers: Content-Length: - "143" @@ -493,7 +493,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb2d7ebd-7501-4586-8194-a6c4c288ed2f + - ebf8a6ca-d6d8-4f61-a22a-948226ebfad0 status: 404 Not Found code: 404 - duration: 27.975245ms + duration: 32.768426ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:00:19.422992Z","id":"49d21ccb-b3ab-4317-8ee0-b0522af06738","product_resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:19.422992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,7 +542,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8059f05e-1f2d-4e39-b920-40ea295eac17 + - 81a6cab8-d1ef-43b0-a60a-7a71eea46e1a status: 200 OK code: 200 - duration: 88.034114ms + duration: 98.827403ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/user_data method: GET response: proto: HTTP/2.0 @@ -591,7 +591,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d41dd703-d9bf-47d8-ba55-34ba8f3bb12d + - 963121e7-ab3a-4624-819b-6ac07b6f63f5 status: 200 OK code: 200 - duration: 110.214002ms + duration: 112.422857ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/private_nics method: GET response: proto: HTTP/2.0 @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76cd85db-d887-4709-88ee-eb6ab2cb0f54 + - 13d6b7df-3723-42be-a716-4095f2e17465 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 111.479987ms + duration: 122.143665ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:20.134046Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "670" @@ -693,7 +693,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99736db8-fb98-448f-a979-433d8a439051 + - f7724432-6218-4417-99da-7f1bf347f6c3 status: 200 OK code: 200 - duration: 131.449196ms + duration: 92.493006ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:20.134046Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "670" @@ -742,7 +742,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:29 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ceea67d-313a-4c6d-b2c0-a9a116d28c73 + - 6e867df0-51fe-4101-a363-442afba6ed8d status: 200 OK code: 200 - duration: 92.438187ms + duration: 77.589826ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -791,7 +791,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4bfe119-b3b5-43d5-950b-41c0d3c052b3 + - 90df7616-99d6-44d2-a49a-89f236b0af20 status: 200 OK code: 200 - duration: 165.309854ms + duration: 106.531848ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -840,7 +840,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c5a89b-1443-4abc-9ef7-e3e51df8fb84 + - b1766e5b-ca7d-42db-9023-648babbfa2cd status: 200 OK code: 200 - duration: 152.809377ms + duration: 157.920011ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"85845ef3-49db-4e76-88b5-77f2f9a05400","type":"not_found"}' headers: Content-Length: - "143" @@ -889,7 +889,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aae2e80-d741-4ca9-960c-7381566c3b7a + - a79cb00e-6918-4a21-b207-ffd9914a5a87 status: 404 Not Found code: 404 - duration: 33.526551ms + duration: 170.895855ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:00:19.422992Z","id":"49d21ccb-b3ab-4317-8ee0-b0522af06738","product_resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:19.422992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -938,7 +938,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bbc9104-916e-4ae7-8e94-b2616a0e705b + - ff083e3f-d86b-4c7e-9e9e-d817a1b5ac24 status: 200 OK code: 200 - duration: 72.982126ms + duration: 106.561474ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/user_data method: GET response: proto: HTTP/2.0 @@ -987,7 +987,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37da50c4-e693-4a92-a787-cef1aa4ffb42 + - 8014ab87-c2fb-4129-a4ae-7659122a6114 status: 200 OK code: 200 - duration: 109.968188ms + duration: 121.192796ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b84570b-b271-43b5-baf7-2b779eecc562 + - af7c42e9-5b41-4aa9-a487-1495e1e30ead X-Total-Count: - "0" status: 200 OK code: 200 - duration: 91.94574ms + duration: 136.392502ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:20.134046Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "670" @@ -1089,7 +1089,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:30 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6516e2ba-3106-44d0-97d0-0ee80c860720 + - f6089edd-46f4-465b-a89f-e203c152ee59 status: 200 OK code: 200 - duration: 90.334599ms + duration: 113.82862ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -1138,7 +1138,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c51ce6-66aa-4805-a172-8dee900dd2a8 + - f430f408-5a5a-448d-a862-88ce190344e0 status: 200 OK code: 200 - duration: 288.376831ms + duration: 141.689117ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -1176,18 +1176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2404 + content_length: 2358 uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":null,"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2404" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe3683a8-de09-406c-a032-87538c746ab7 + - 06db4992-1ee4-409e-b9e3-f5b36d3c268d status: 200 OK code: 200 - duration: 155.327688ms + duration: 195.350047ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -1227,7 +1227,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"85845ef3-49db-4e76-88b5-77f2f9a05400","type":"not_found"}' headers: Content-Length: - "143" @@ -1236,7 +1236,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e23594f4-f735-4492-a931-118129e3b3cd + - deefef42-7677-4efe-9706-24b1c4d86fab status: 404 Not Found code: 404 - duration: 26.446491ms + duration: 28.096209ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -1276,7 +1276,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:00:19.422992Z","id":"49d21ccb-b3ab-4317-8ee0-b0522af06738","product_resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:19.422992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1285,7 +1285,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99347a64-4d7e-40f4-9a73-f76661ca4e9c + - 2a13e439-4a36-4636-9609-d814c33dbc13 status: 200 OK code: 200 - duration: 88.716737ms + duration: 97.127534ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/user_data method: GET response: proto: HTTP/2.0 @@ -1334,7 +1334,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 407850ac-5829-4c3d-a57c-01bf52c5598c + - 923af937-c984-4f75-b6f1-1ecb3db76348 status: 200 OK code: 200 - duration: 94.337833ms + duration: 161.228149ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/private_nics method: GET response: proto: HTTP/2.0 @@ -1383,9 +1383,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1395,12 +1395,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d5cb5a7-5c41-45dd-8816-376b0b5c6867 + - 8ac73266-c291-4772-be4c-fbf505c5371e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 96.542549ms + duration: 103.456653ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1427,7 +1427,7 @@ interactions: trailer: {} content_length: 670 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:20.134046Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "670" @@ -1436,7 +1436,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 886f547a-dc7b-4bfe-9bff-217d8ad3dc29 + - 2db8acc4-c13f-4e94-8cbe-5490a9d341fb status: 200 OK code: 200 - duration: 88.662877ms + duration: 129.509428ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7 method: GET response: proto: HTTP/2.0 @@ -1476,7 +1476,7 @@ interactions: trailer: {} content_length: 643 uncompressed: false - body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:28.332177Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:20.134046Z","zone":"fr-par-1"}' headers: Content-Length: - "643" @@ -1485,7 +1485,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1495,10 +1495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26eff52c-7694-4a7e-9541-dce4133a559a + - bef74735-ce94-44c8-aa30-156859089330 status: 200 OK code: 200 - duration: 93.228487ms + duration: 21.43542ms - id: 30 request: proto: HTTP/1.1 @@ -1510,7 +1510,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"2001:bc8:710:4201::2a","name":"","priority":1,"ttl":3600,"type":"AAAA","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"2001:bc8:710:404a::2a","name":"","priority":1,"ttl":3600,"type":"AAAA","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -1527,7 +1527,7 @@ interactions: trailer: {} content_length: 159 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}]}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:404a::2a","id":"54079b90-59c8-457f-afc2-b906b0f9215b","name":"","priority":1,"ttl":3600,"type":"AAAA"}]}' headers: Content-Length: - "159" @@ -1536,7 +1536,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:31 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1546,46 +1546,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8147f3c3-6b18-4e7e-afd5-3165028037d2 + - 155919d5-4c56-4ff2-be3f-715e1db3fdda status: 200 OK code: 200 - duration: 154.659955ms + duration: 177.931991ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"reverses":[{"hostname":"tf-reverse-ipam.scaleway-terraform.com","address":"2001:bc8:710:404a::2a"}]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&type=AAAA - method: GET + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 176 + content_length: 734 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404a::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:23.859135Z","zone":"fr-par-1"}' headers: Content-Length: - - "176" + - "734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1595,30 +1597,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9024393-a892-4a2e-a9f9-a9c82e793762 + - 254ea910-6c97-4581-86eb-2a5e310f1cf6 status: 200 OK code: 200 - duration: 85.691727ms + duration: 165.313467ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 102 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"reverses":[{"hostname":"tf-reverse-ipam.scaleway-terraform.com","address":"2001:bc8:710:4201::2a"}]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 - method: PATCH + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1627,7 +1627,7 @@ interactions: trailer: {} content_length: 734 uncompressed: false - body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404a::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:23.859135Z","zone":"fr-par-1"}' headers: Content-Length: - "734" @@ -1636,7 +1636,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 559b5fbc-0a71-4549-96d9-fd2fcdcee97a + - d222e694-0f0c-4cc6-b9dc-1fc0c902faf0 status: 200 OK code: 200 - duration: 198.944005ms + duration: 27.894512ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?name=&order_by=name_asc&type=AAAA method: GET response: proto: HTTP/2.0 @@ -1674,18 +1674,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 734 + content_length: 176 uncompressed: false - body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:404a::2a","id":"54079b90-59c8-457f-afc2-b906b0f9215b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - - "734" + - "176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ca69aa-9460-4bc8-8a29-f3f3c02f3f54 + - 23f95b12-b215-4618-9e4e-aa1558a18977 status: 200 OK code: 200 - duration: 29.339684ms + duration: 109.763861ms - id: 34 request: proto: HTTP/1.1 @@ -1725,7 +1725,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:404a::2a","id":"54079b90-59c8-457f-afc2-b906b0f9215b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -1734,7 +1734,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b4d2f3b-6a20-4c8f-a98e-2cc21adbf4d5 + - e606aa4b-9bfb-44f7-9c5a-419098daa8ff status: 200 OK code: 200 - duration: 102.077906ms + duration: 96.155015ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=2daec900-45b9-455d-b9c4-176307345a83&name=&order_by=name_asc&page=1&type=unknown + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=54079b90-59c8-457f-afc2-b906b0f9215b&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -1774,7 +1774,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:404a::2a","id":"54079b90-59c8-457f-afc2-b906b0f9215b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -1783,7 +1783,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32ac8a36-58f1-4298-b023-0ac455ed824b + - 929cb608-b28a-4adb-b610-d800440a1238 status: 200 OK code: 200 - duration: 115.258752ms + duration: 99.424997ms - id: 36 request: proto: HTTP/1.1 @@ -1823,7 +1823,7 @@ interactions: trailer: {} content_length: 369 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-09T09:03:31Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-15T15:00:23Z"}],"total_count":1}' headers: Content-Length: - "369" @@ -1832,7 +1832,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31f482da-4bf8-4cf9-bef1-b57ab0648875 + - 976dceb9-fdda-45ed-8381-2fc5050c45cb status: 200 OK code: 200 - duration: 122.260655ms + duration: 95.992852ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -1872,7 +1872,7 @@ interactions: trailer: {} content_length: 761 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404a::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:23.859135Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "761" @@ -1881,7 +1881,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 917350c3-b038-47b9-8b10-97df4cf27188 + - aa418161-4d68-413f-868f-5efaf8706225 status: 200 OK code: 200 - duration: 99.892026ms + duration: 121.549206ms - id: 38 request: proto: HTTP/1.1 @@ -1911,7 +1911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -1921,7 +1921,7 @@ interactions: trailer: {} content_length: 456 uncompressed: false - body: '{"ip":{"address":null,"id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:4201::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "456" @@ -1930,7 +1930,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:32 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbea6288-cec2-43e6-86f5-60248faf6e76 + - 281b561c-dcbc-40fc-a8b3-3eb3be6ab4eb status: 200 OK code: 200 - duration: 143.52641ms + duration: 141.146135ms - id: 39 request: proto: HTTP/1.1 @@ -1960,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -1970,7 +1970,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -1979,7 +1979,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85ad91aa-75f0-4225-945d-91952e2bc306 + - ee13c685-a4ba-4b4a-90f9-944dc0ded959 status: 200 OK code: 200 - duration: 164.793759ms + duration: 162.021376ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +2009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -2019,7 +2019,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"85845ef3-49db-4e76-88b5-77f2f9a05400","type":"not_found"}' headers: Content-Length: - "143" @@ -2028,7 +2028,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65b5f31b-5bcb-49a1-8a97-026a9502d629 + - b22a182d-fe29-49c1-8530-61e5ecb4704c status: 404 Not Found code: 404 - duration: 52.265786ms + duration: 23.662449ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +2058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -2068,7 +2068,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:00:19.422992Z","id":"49d21ccb-b3ab-4317-8ee0-b0522af06738","product_resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:19.422992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2077,7 +2077,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 184b2cb6-da2a-4c02-aea2-bd32e66db350 + - 5e2c861e-c795-4342-80ce-b174f43059f2 status: 200 OK code: 200 - duration: 88.461669ms + duration: 77.95885ms - id: 42 request: proto: HTTP/1.1 @@ -2107,7 +2107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/user_data method: GET response: proto: HTTP/2.0 @@ -2126,7 +2126,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2136,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b74f93a-dd7b-4950-8e1f-d8183a1ceb0f + - 88d6feaa-c8ac-4edf-a2b9-f4cf86a2f026 status: 200 OK code: 200 - duration: 93.132041ms + duration: 92.974132ms - id: 43 request: proto: HTTP/1.1 @@ -2156,7 +2156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/private_nics method: GET response: proto: HTTP/2.0 @@ -2175,9 +2175,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2187,12 +2187,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21ce9489-063c-4459-b00a-11347ca40b29 + - 508c601c-037a-4c9e-a564-5e4f333f747f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.945596ms + duration: 134.337019ms - id: 44 request: proto: HTTP/1.1 @@ -2209,7 +2209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=fc2ba6c3-945b-499c-9646-616e87511d24&resource_type=instance_server + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=true&order_by=created_at_desc&page=1&resource_id=5362e1bc-e1d3-4b2f-80b7-87ed023a9c69&resource_type=instance_server method: GET response: proto: HTTP/2.0 @@ -2219,7 +2219,7 @@ interactions: trailer: {} content_length: 761 uncompressed: false - body: '{"ips":[{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404a::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:23.859135Z","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - "761" @@ -2228,7 +2228,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2238,10 +2238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a931dd9-74de-4d2c-8429-1bdab63a9394 + - f82fc61e-307e-4ee4-820f-9bb88ac414a2 status: 200 OK code: 200 - duration: 106.044151ms + duration: 123.700726ms - id: 45 request: proto: HTTP/1.1 @@ -2258,7 +2258,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7 method: GET response: proto: HTTP/2.0 @@ -2268,7 +2268,7 @@ interactions: trailer: {} content_length: 734 uncompressed: false - body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":null,"hostname":"2001-bc8-710-4201-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","hostname":"8ac7-fecc-ff-dc00-4201-710-bc8-2001.instances.scw.cloud."},{"address":"2001:bc8:710:4201::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:32.080704Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","hostname":"b6a1-fecd-ff-dc00-404a-710-bc8-2001.instances.scw.cloud."},{"address":null,"hostname":"2001-bc8-710-404a-0-0-0-0.rev.scw.cloud."},{"address":"2001:bc8:710:404a::2a","hostname":"tf-reverse-ipam.scaleway-terraform.com."}],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:23.859135Z","zone":"fr-par-1"}' headers: Content-Length: - "734" @@ -2277,7 +2277,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2287,10 +2287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b59db1c-5aed-4a95-9f22-452f8e7b265e + - d4135438-2a68-4f69-bce1-3da45c2060eb status: 200 OK code: 200 - duration: 95.226343ms + duration: 27.360573ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +2307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=2daec900-45b9-455d-b9c4-176307345a83&name=&order_by=name_asc&page=1&type=AAAA + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-ipam.scaleway-terraform.com/records?id=54079b90-59c8-457f-afc2-b906b0f9215b&name=&order_by=name_asc&page=1&type=AAAA method: GET response: proto: HTTP/2.0 @@ -2317,7 +2317,7 @@ interactions: trailer: {} content_length: 176 uncompressed: false - body: '{"records":[{"comment":null,"data":"2001:bc8:710:4201::2a","id":"2daec900-45b9-455d-b9c4-176307345a83","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"2001:bc8:710:404a::2a","id":"54079b90-59c8-457f-afc2-b906b0f9215b","name":"","priority":1,"ttl":3600,"type":"AAAA"}],"total_count":1}' headers: Content-Length: - "176" @@ -2326,7 +2326,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e306645-7b57-40ce-b8cc-03172e70d83d + - 60e81d61-17c0-42d9-95f0-b1aeac4c810e status: 200 OK code: 200 - duration: 99.847845ms + duration: 89.630562ms - id: 47 request: proto: HTTP/1.1 @@ -2366,7 +2366,7 @@ interactions: trailer: {} content_length: 369 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-09T09:03:31Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-ipam","updated_at":"2025-10-15T15:00:23Z"}],"total_count":1}' headers: Content-Length: - "369" @@ -2375,7 +2375,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:33 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8525bde4-bb41-4efe-b126-7089276bb8a3 + - 9952518e-7bbf-4d8b-a432-b127ccb44b50 status: 200 OK code: 200 - duration: 90.652719ms + duration: 95.627509ms - id: 48 request: proto: HTTP/1.1 @@ -2407,7 +2407,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/a6b3657f-a08d-43ae-b42c-4171da484c65 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7 method: PATCH response: proto: HTTP/2.0 @@ -2417,7 +2417,7 @@ interactions: trailer: {} content_length: 450 uncompressed: false - body: '{"address":"2001:bc8:710:4201::/64","created_at":"2025-10-09T09:03:26.025272Z","id":"a6b3657f-a08d-43ae-b42c-4171da484c65","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"fc2ba6c3-945b-499c-9646-616e87511d24","mac_address":null,"name":null,"type":"instance_server"},"reverses":[],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-09T09:03:34.104037Z","zone":"fr-par-1"}' + body: '{"address":"2001:bc8:710:404a::/64","created_at":"2025-10-15T15:00:17.701439Z","id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","mac_address":null,"name":null,"type":"instance_server"},"reverses":[],"source":{"zonal":"fr-par-1"},"tags":[],"updated_at":"2025-10-15T15:00:25.899931Z","zone":"fr-par-1"}' headers: Content-Length: - "450" @@ -2426,7 +2426,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2436,10 +2436,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4a1f79c-f6db-4439-b3e1-eb15b5d70692 + - 36492d01-5760-4637-a15f-adb7535de36f status: 200 OK code: 200 - duration: 110.069966ms + duration: 92.237012ms - id: 49 request: proto: HTTP/1.1 @@ -2451,7 +2451,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"2daec900-45b9-455d-b9c4-176307345a83"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"delete":{"id":"54079b90-59c8-457f-afc2-b906b0f9215b"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -2477,7 +2477,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2487,10 +2487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdd9f1ea-aca0-4e07-93d7-99e024e517ac + - 25f610fe-c9c6-4011-bc15-00e8cd3fec3e status: 200 OK code: 200 - duration: 123.362524ms + duration: 122.693ms - id: 50 request: proto: HTTP/1.1 @@ -2507,7 +2507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -2517,7 +2517,7 @@ interactions: trailer: {} content_length: 2358 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:27.432386+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2358" @@ -2526,7 +2526,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2536,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bacdfa6-e514-487f-96d1-8bab5100bb43 + - 38aad954-1b35-46b4-a921-3a5acc59e450 status: 200 OK code: 200 - duration: 152.052042ms + duration: 148.404106ms - id: 51 request: proto: HTTP/1.1 @@ -2556,7 +2556,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2358 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:19.282718+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2358" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:00:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5888b7b7-c419-417a-b473-b76794f8854e + status: 200 OK + code: 200 + duration: 151.843486ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -2566,7 +2615,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T09:03:27.589020Z","id":"0fea96d5-89a4-4d66-b3f4-5c8dff059ad6","product_resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:27.589020Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:00:19.422992Z","id":"49d21ccb-b3ab-4317-8ee0-b0522af06738","product_resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:19.422992Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2575,7 +2624,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2585,11 +2634,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a756508-6926-4f48-a32a-741e729dd79b + - 5a300936-d292-44e4-ac66-dad5bf81b4ec status: 200 OK code: 200 - duration: 100.167635ms - - id: 52 + duration: 91.212805ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2607,7 +2656,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/action method: POST response: proto: HTTP/2.0 @@ -2617,7 +2666,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action","href_result":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24","id":"a08d6341-5252-4916-a7ff-9232db5882ac","progress":0,"started_at":"2025-10-09T09:03:34.610864+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/action","href_result":"/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","id":"ed495ae3-36d6-42b9-8535-be27e81d8024","progress":0,"started_at":"2025-10-15T15:00:26.556403+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2626,9 +2675,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a08d6341-5252-4916-a7ff-9232db5882ac + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ed495ae3-36d6-42b9-8535-be27e81d8024 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2638,11 +2687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cedd079-a456-4c50-a6f1-81aa1c90f44f + - 461f2150-72fc-4353-804d-93d035f9bd92 status: 202 Accepted code: 202 - duration: 241.712574ms - - id: 53 + duration: 270.081356ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2658,7 +2707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -2668,7 +2717,7 @@ interactions: trailer: {} content_length: 2380 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:34.415477+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:26.361728+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2380" @@ -2677,7 +2726,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:34 GMT + - Wed, 15 Oct 2025 15:00:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2687,11 +2736,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6768a276-839c-48c8-8c58-0b46ee28f93b + - 583d4486-53f6-431f-b3ae-0bb2d2ad7d5f status: 200 OK code: 200 - duration: 155.953566ms - - id: 54 + duration: 136.732385ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2707,7 +2756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -2717,7 +2766,7 @@ interactions: trailer: {} content_length: 2514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"301","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:36.633502+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:28.798340+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2514" @@ -2726,7 +2775,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:40 GMT + - Wed, 15 Oct 2025 15:00:31 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2736,11 +2785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8125116f-ac57-4575-a8d9-031ac2149874 + - 2216bbb8-a3d0-4800-a69d-613944233ed0 status: 200 OK code: 200 - duration: 401.94299ms - - id: 55 + duration: 147.869916ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2758,7 +2807,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/action method: POST response: proto: HTTP/2.0 @@ -2768,7 +2817,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24/action","href_result":"/servers/fc2ba6c3-945b-499c-9646-616e87511d24","id":"4e203a71-6df9-40ba-92e8-b49bcd691a05","progress":0,"started_at":"2025-10-09T09:03:40.477898+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69/action","href_result":"/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","id":"871c8d36-05e9-40aa-979b-dd099ada4e03","progress":0,"started_at":"2025-10-15T15:00:32.168532+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2777,9 +2826,9 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:40 GMT + - Wed, 15 Oct 2025 15:00:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4e203a71-6df9-40ba-92e8-b49bcd691a05 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/871c8d36-05e9-40aa-979b-dd099ada4e03 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2789,11 +2838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0050f157-95ac-4201-bd1f-3166b8f6b124 + - 406e2489-1f6a-4511-8661-6b1061ea1bd2 status: 202 Accepted code: 202 - duration: 303.912459ms - - id: 56 + duration: 325.655574ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2809,7 +2858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -2819,7 +2868,7 @@ interactions: trailer: {} content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-09T09:03:27.432386+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"fc2ba6c3-945b-499c-9646-616e87511d24","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"96","hypervisor_id":"301","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:8a:c7","maintenances":[],"modification_date":"2025-10-09T09:03:40.223233+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:4201:dc00:ff:fecc:8ac7","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:8ac8","id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","ipam_id":"a6b3657f-a08d-43ae-b42c-4171da484c65","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:00:19.282718+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:a1","maintenances":[],"modification_date":"2025-10-15T15:00:31.916951+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b6a1","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b6a2","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"6e2f2ae2-bf7d-43fd-9f4e-9f12a03e64d7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"85845ef3-49db-4e76-88b5-77f2f9a05400","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2477" @@ -2828,7 +2877,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:40 GMT + - Wed, 15 Oct 2025 15:00:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2838,11 +2887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d9f7298-b8ac-42e7-bcc8-57c1dd1ec565 + - 8b7fe5ae-9022-4401-9a4f-eed2390455c4 status: 200 OK code: 200 - duration: 237.796168ms - - id: 57 + duration: 168.652057ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2858,7 +2907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc2ba6c3-945b-499c-9646-616e87511d24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5362e1bc-e1d3-4b2f-80b7-87ed023a9c69 method: GET response: proto: HTTP/2.0 @@ -2868,7 +2917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc2ba6c3-945b-499c-9646-616e87511d24","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5362e1bc-e1d3-4b2f-80b7-87ed023a9c69","type":"not_found"}' headers: Content-Length: - "143" @@ -2877,7 +2926,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:45 GMT + - Wed, 15 Oct 2025 15:00:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2887,11 +2936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56d95523-2e02-49a7-a747-28d360b20b75 + - ac207849-f59b-45af-bdcb-8d42bdfd2447 status: 404 Not Found code: 404 - duration: 78.193347ms - - id: 58 + duration: 41.534846ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2907,7 +2956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -2917,7 +2966,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"85845ef3-49db-4e76-88b5-77f2f9a05400","type":"not_found"}' headers: Content-Length: - "143" @@ -2926,7 +2975,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:45 GMT + - Wed, 15 Oct 2025 15:00:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2936,11 +2985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6579c1d-43b4-49dc-824e-cad923025902 + - d0f8a660-59cc-47da-8227-e80efef4e742 status: 404 Not Found code: 404 - duration: 131.769859ms - - id: 59 + duration: 23.913283ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2956,7 +3005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: GET response: proto: HTTP/2.0 @@ -2966,7 +3015,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-09T09:03:27.589020Z","id":"9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9","last_detached_at":"2025-10-09T09:03:42.355594Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T09:03:42.355594Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:00:19.422992Z","id":"85845ef3-49db-4e76-88b5-77f2f9a05400","last_detached_at":"2025-10-15T15:00:33.641397Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:00:33.641397Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -2975,7 +3024,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2985,11 +3034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a0b9a90-0fb8-4ad5-b7bd-9c43b5d561a3 + - 0ce57c9a-a9ca-488a-92e6-3ebb292bf3d4 status: 200 OK code: 200 - duration: 114.814821ms - - id: 60 + duration: 113.910756ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,7 +3054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9a6778a2-d7eb-40d6-8b0e-61f8f9e0e4d9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/85845ef3-49db-4e76-88b5-77f2f9a05400 method: DELETE response: proto: HTTP/2.0 @@ -3022,7 +3071,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:37 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3032,11 +3081,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abd804aa-65db-4fff-9b2e-81a9dbc378ef + - d105bcfc-067c-447b-9c95-0077836ac674 status: 204 No Content code: 204 - duration: 199.346474ms - - id: 61 + duration: 201.273916ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3052,7 +3101,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: DELETE response: proto: HTTP/2.0 @@ -3069,7 +3118,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3079,11 +3128,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b1afb5e-eac7-4981-a8e6-92148481a54c + - ab83d644-69c5-4993-ab64-0e2dc6a8aa68 status: 204 No Content code: 204 - duration: 403.374024ms - - id: 62 + duration: 328.48691ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3099,7 +3148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2a2afa1d-f9d6-4e74-b39b-6c001dfdb154 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -3109,7 +3158,7 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"2a2afa1d-f9d6-4e74-b39b-6c001dfdb154","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"88201074-761e-4ed1-83b4-f7fc97b5599f","type":"not_found"}' headers: Content-Length: - "139" @@ -3118,7 +3167,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 09 Oct 2025 09:03:46 GMT + - Wed, 15 Oct 2025 15:00:38 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3128,7 +3177,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c9703fd-06ff-4a41-aecb-a50d43d1ac66 + - e4a2aa8c-8593-4e26-83ab-c24d6c61a023 status: 404 Not Found code: 404 - duration: 57.890408ms + duration: 55.74919ms From ceb02e8e342bdd553c951da57168e2ba4b7d5a6e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 17:27:55 +0200 Subject: [PATCH 11/12] instance ok --- .../data-source-image-basic.cassette.yaml | 276 +- .../data-source-ip-basic.cassette.yaml | 558 +- ...source-placement-group-basic.cassette.yaml | 405 +- ...ata-source-private-nic-basic.cassette.yaml | 1978 ++-- ...-source-security-group-basic.cassette.yaml | 606 +- .../data-source-server-basic.cassette.yaml | 1197 ++- ...ata-source-server-type-basic.cassette.yaml | 702 +- ...server-type-compare-with-pcu.cassette.yaml | 2048 ++-- .../data-source-servers-basic.cassette.yaml | 1578 +-- ...a-source-servers-private-ips.cassette.yaml | 3113 ++++-- .../data-source-volume-basic.cassette.yaml | 306 +- .../image-external-block-volume.cassette.yaml | 1110 +- ...age-server-with-local-volume.cassette.yaml | 5211 ++++++--- ...image-server-with-sbs-volume.cassette.yaml | 2491 ++--- .../testdata/image-server.cassette.yaml | 1366 +-- .../instance/testdata/ip-basic.cassette.yaml | 212 +- .../ip-reverse-dns-basic.cassette.yaml | 794 +- .../testdata/ip-routed-ipv6.cassette.yaml | 90 +- .../instance/testdata/ip-tags.cassette.yaml | 196 +- .../testdata/ip-with-zone.cassette.yaml | 160 +- .../placement-group-basic.cassette.yaml | 282 +- .../placement-group-rename.cassette.yaml | 685 +- .../placement-group-tags.cassette.yaml | 210 +- .../testdata/private-nic-basic.cassette.yaml | 1152 +- .../testdata/private-nic-tags.cassette.yaml | 1461 +-- .../private-nic-with-ipam.cassette.yaml | 1212 +-- .../testdata/security-group-any.cassette.yaml | 144 +- .../security-group-basic.cassette.yaml | 452 +- ...roup-enable-default-security.cassette.yaml | 262 +- .../security-group-icmp.cassette.yaml | 300 +- .../security-group-remove-port.cassette.yaml | 268 +- .../security-group-rules-basic.cassette.yaml | 474 +- .../security-group-rules-basic2.cassette.yaml | 154 +- ...curity-group-rules-ip-ranges.cassette.yaml | 203 +- .../security-group-tags.cassette.yaml | 386 +- .../security-group-with-no-port.cassette.yaml | 158 +- ...curity-group-with-port-range.cassette.yaml | 408 +- ...ssword-encryption-ssh-key-id.cassette.yaml | 1713 ++- .../testdata/server-alter-tags.cassette.yaml | 643 +- .../testdata/server-basic.cassette.yaml | 1984 +--- .../testdata/server-basic2.cassette.yaml | 496 +- ...-external-root-volume-update.cassette.yaml | 809 +- ...r-block-external-root-volume.cassette.yaml | 4565 +------- .../server-block-external.cassette.yaml | 1922 ++-- .../server-custom-diff-image.cassette.yaml | 3993 +++++-- .../testdata/server-ip-removed.cassette.yaml | 809 +- .../testdata/server-ips-removed.cassette.yaml | 811 +- .../testdata/server-ips.cassette.yaml | 1203 ++- .../testdata/server-ipv6.cassette.yaml | 858 +- ...te-invalid-local-volume-size.cassette.yaml | 660 +- .../testdata/server-migrate.cassette.yaml | 1971 ++-- .../testdata/server-minimal1.cassette.yaml | 595 +- .../testdata/server-minimal2.cassette.yaml | 2175 ++-- ...private-network-missing-pnic.cassette.yaml | 2348 ++-- .../server-private-network.cassette.yaml | 9497 ++++++++++++++++- .../server-root-volume-boot.cassette.yaml | 815 +- ...olume-from-external-snapshot.cassette.yaml | 1463 +-- .../server-root-volume1.cassette.yaml | 1093 +- .../testdata/server-state1.cassette.yaml | 1784 ++-- .../testdata/server-state2.cassette.yaml | 1054 +- .../server-user-data-basic.cassette.yaml | 537 +- ...ata-with-cloud-init-at-start.cassette.yaml | 555 +- ...-without-cloud-init-at-start.cassette.yaml | 745 +- .../server-with-placement-group.cassette.yaml | 1908 ++-- .../server-with-reserved-ip.cassette.yaml | 1613 +-- .../testdata/snapshot-from-s3.cassette.yaml | 1084 +- .../testdata/snapshot-server.cassette.yaml | 891 +- ...test-get-end-of-service-date.cassette.yaml | 16 +- .../testdata/volume-basic.cassette.yaml | 208 +- ...ume-different-name-generated.cassette.yaml | 156 +- .../volume-resize-not-block.cassette.yaml | 156 +- .../testdata/volume-scratch.cassette.yaml | 120 +- 72 files changed, 46620 insertions(+), 37238 deletions(-) diff --git a/internal/services/instance/testdata/data-source-image-basic.cassette.yaml b/internal/services/instance/testdata/data-source-image-basic.cassette.yaml index a004fce83..0bb8762b2 100644 --- a/internal/services/instance/testdata/data-source-image-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-image-basic.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 932bcc94-4240-4d53-b723-ae95f24a87b5 + - 6c146c18-8008-4653-a44d-fb242e92cbe3 status: 200 OK code: 200 - duration: 68.517309ms + duration: 27.780745ms - id: 1 request: proto: HTTP/1.1 @@ -65,7 +65,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -85,9 +85,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +95,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63d3adb7-3581-41fb-8d4a-049c69334790 + - e474ce35-c140-4b72-a574-ec40a4eff35f status: 200 OK code: 200 - duration: 109.65563ms + duration: 37.00371ms - id: 2 request: proto: HTTP/1.1 @@ -114,7 +114,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -134,9 +134,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -144,10 +144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2e3402e-a694-4738-bcef-e3dfd5a5dc24 + - b2a1830b-5cf4-4bfc-bd8b-e0d3f6e4638f status: 200 OK code: 200 - duration: 55.080569ms + duration: 45.295561ms - id: 3 request: proto: HTTP/1.1 @@ -163,7 +163,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -183,9 +183,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -193,10 +193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50b1e7d5-6da0-4db8-ba5d-f2921e1303a9 + - adaa68bc-d5fa-4f2a-a65a-f2f6787b0337 status: 200 OK code: 200 - duration: 64.019012ms + duration: 49.034668ms - id: 4 request: proto: HTTP/1.1 @@ -212,7 +212,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -232,9 +232,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84aecac6-d599-4da3-aeab-526a4909dfc5 + - ea132285-0dac-46a3-bef0-f871d01d9f10 status: 200 OK code: 200 - duration: 72.787848ms + duration: 42.29116ms - id: 5 request: proto: HTTP/1.1 @@ -261,7 +261,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -281,9 +281,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,10 +291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 713013d0-4d03-426b-8568-be2ce90ebc38 + - 35ff8bd5-cef9-480c-a19d-940479aacc98 status: 200 OK code: 200 - duration: 66.633776ms + duration: 49.417004ms - id: 6 request: proto: HTTP/1.1 @@ -310,7 +310,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -330,9 +330,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -340,10 +340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e15c35dc-20ea-4f30-8976-1a137f7237ce + - 01f503ef-c3f0-422f-b098-d7d0845cded5 status: 200 OK code: 200 - duration: 45.651615ms + duration: 31.801801ms - id: 7 request: proto: HTTP/1.1 @@ -359,7 +359,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc method: GET response: @@ -379,9 +379,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,203 +389,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 558563f5-b317-418b-8bf6-c46363b6c6af + - 9ff77587-f7fd-4164-aebf-cce275606237 status: 200 OK code: 200 - duration: 91.005303ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2020-07-09T10:38:16.265025+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc","modification_date":"2020-07-09T10:38:16.265025+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6e66445c-e52e-4cfa-bf4c-f36e291e2c30","name":"ubuntu_20.04_focal_fossa:volume-0","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "619" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 150f006d-e37a-48f1-81ae-7ec3786e9d3e - status: 200 OK - code: 200 - duration: 48.114004ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2020-07-09T10:38:16.265025+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc","modification_date":"2020-07-09T10:38:16.265025+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6e66445c-e52e-4cfa-bf4c-f36e291e2c30","name":"ubuntu_20.04_focal_fossa:volume-0","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "619" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6714a282-8ff9-4a2e-bc3e-d485497386f9 - status: 200 OK - code: 200 - duration: 182.538035ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2020-07-09T10:38:16.265025+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc","modification_date":"2020-07-09T10:38:16.265025+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6e66445c-e52e-4cfa-bf4c-f36e291e2c30","name":"ubuntu_20.04_focal_fossa:volume-0","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "619" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:35 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 624ac3ea-c15d-459e-9f94-0861be19b8c0 - status: 200 OK - code: 200 - duration: 117.14758ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 619 - uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2020-07-09T10:38:16.265025+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"cf44b8f5-77e2-42ed-8f1e-09ed5bb028fc","modification_date":"2020-07-09T10:38:16.265025+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6e66445c-e52e-4cfa-bf4c-f36e291e2c30","name":"ubuntu_20.04_focal_fossa:volume-0","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "619" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:30:36 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c25c9daf-1a03-4530-a5e7-ed17b40398a0 - status: 200 OK - code: 200 - duration: 313.035091ms + duration: 33.521774ms diff --git a/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml b/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml index 1dd70e057..8ae1b66eb 100644 --- a/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-ip-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1ffcc55-0015-45e0-83f8-e4d289a1f201 + - 60001771-461b-47ac-aead-eb582be21703 status: 201 Created code: 201 - duration: 580.281454ms + duration: 546.488132ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b9a5445-f6a0-4eb5-9744-f88435e4ed0d + - f77f7f74-bbf1-4030-84c8-39c892605cd0 status: 200 OK code: 200 - duration: 154.257253ms + duration: 106.600896ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2acdedfa-aed3-42ac-a3e3-129c339b17bc + - 90399244-606b-417f-86ff-cf9f610cc8fc status: 200 OK code: 200 - duration: 109.916865ms + duration: 129.902592ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718736de-8c1b-4ec1-afff-f120f64da124 + - 577adbf1-fea2-4ea2-8b9c-286a89e8a4c3 status: 200 OK code: 200 - duration: 87.995222ms + duration: 115.059687ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc837866-b2f7-43f9-9a36-a0c45a079e90 + - f78583d9-f1c2-4bdf-902f-3b0d1c5e9522 status: 200 OK code: 200 - duration: 109.422908ms + duration: 86.463159ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.135.95 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79f50398-9a1b-4b20-8f4c-88273e819d7a + - 25c4f5d2-ac7c-462f-8c21-f694aea2a97e status: 200 OK code: 200 - duration: 159.763449ms + duration: 111.638897ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77b9bcb9-325d-4f5d-8eaf-7b9ddddc800d + - 7dbef2ae-94d1-41f7-ac53-e89ce1671b8b status: 200 OK code: 200 - duration: 138.35023ms + duration: 108.761534ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1616b8f1-dda7-48f4-881e-9cf169626c0a + - b36cbf16-e865-4a0d-b3f3-28a8b17236f8 status: 200 OK code: 200 - duration: 121.020108ms + duration: 103.731971ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.135.95 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c21fb47-f3d2-489e-a4ac-c933bf0a5a9c + - 3028b77f-a109-4f4f-a64a-b67c835f0e65 status: 200 OK code: 200 - duration: 121.278082ms + duration: 148.165538ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3cb62c-983f-4abc-962a-fcf3609567e3 + - b52f7d6f-731b-4b21-ba37-50fe55fd5f89 status: 200 OK code: 200 - duration: 119.379281ms + duration: 112.901765ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.135.95 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48e741f5-8ee7-45ad-9238-f05e08807941 + - c766b13f-2739-4240-9f9b-4cf44e05c2b0 status: 200 OK code: 200 - duration: 96.564232ms + duration: 111.849452ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f14fc112-a484-4c64-9df3-05642f2efd1b + - e81d9936-9667-4cb8-956e-012ab96495c4 status: 200 OK code: 200 - duration: 127.427304ms + duration: 104.251995ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.236.240 method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6742108a-367a-4130-81d5-d9d4278ee43c + - fea7ccda-08db-4a59-96e9-ca05660bebb9 status: 200 OK code: 200 - duration: 164.830613ms + duration: 105.025054ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"f297c152-8f3f-4a43-99f2-0fe3f9b98231","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7799ce-0fb7-4370-bcf9-60e0d55d8c34 + - 7f449099-015b-4ba5-a982-ecb4fadfce64 status: 200 OK code: 200 - duration: 104.976749ms + duration: 116.255509ms - id: 14 request: proto: HTTP/1.1 @@ -706,302 +706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.135.95 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 850e322f-1ae7-424f-a4aa-7fb5c1ef4b3d - status: 200 OK - code: 200 - duration: 104.42295ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6489ebc6-3d48-41a0-8a25-7b9a9981fff6 - status: 200 OK - code: 200 - duration: 107.342736ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:05 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f7b3f10e-04ed-41cc-8e9f-c84dea3ac201 - status: 200 OK - code: 200 - duration: 105.603876ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fe92be53-42fe-4f78-b958-26725951bddf - status: 200 OK - code: 200 - duration: 125.553049ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/51.15.135.95 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb829d41-9705-404c-bc08-c7f6ba8076f4 - status: 200 OK - code: 200 - duration: 152.521286ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 364 - uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"58574316-595e-4208-9a04-ed8dc7c33119","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "364" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:06 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7a022abf-61e9-4971-aee8-86385607927e - status: 200 OK - code: 200 - duration: 128.623298ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: DELETE response: proto: HTTP/2.0 @@ -1018,9 +724,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,7 +734,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d85a001a-100d-400a-9a36-c4af5eccea28 + - 3300e018-fa1a-414c-8ab7-277d332aadc6 status: 204 No Content code: 204 - duration: 869.259797ms + duration: 336.166248ms diff --git a/internal/services/instance/testdata/data-source-placement-group-basic.cassette.yaml b/internal/services/instance/testdata/data-source-placement-group-basic.cassette.yaml index 4a08d7d39..0da76aec4 100644 --- a/internal/services/instance/testdata/data-source-placement-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-placement-group-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00de21e2-75a3-4789-83a4-18eb4988dc61 + - 375dc731-a31f-4e94-a77e-8265ac9d0da7 status: 201 Created code: 201 - duration: 759.051954ms + duration: 182.683104ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 334ddb9f-d0a6-40b9-9c9e-6a105654e127 + - 42f41b8c-9d49-4f38-a18e-186934a58d83 status: 200 OK code: 200 - duration: 227.109315ms + duration: 127.101264ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd6915df-d087-4f43-9c2c-842f6244ba8c + - 6a004d20-d43f-4a9c-8210-9f13a9f4234f status: 200 OK code: 200 - duration: 153.602696ms + duration: 111.120871ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups?name=test-ds-instance-placement-group-basic method: GET response: @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: '{"placement_groups":[{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' + body: '{"placement_groups":[{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "347" @@ -187,11 +187,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,12 +199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c11d25d3-4470-47d2-a334-83f55f6ce3a1 + - 891a8531-9de6-40b9-bdbf-84cf026a0d09 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 195.938927ms + duration: 138.935817ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87c04b25-9e20-4ceb-85a3-5c07354cf561 + - ffb537e4-4688-470d-8613-516cec425b54 status: 200 OK code: 200 - duration: 211.469193ms + duration: 97.014441ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f19eccd0-f533-4ec2-bcb3-ea72accec542 + - 12261969-9205-4b21-b9d3-fd382c0a169a status: 200 OK code: 200 - duration: 152.555022ms + duration: 104.70698ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups?name=test-ds-instance-placement-group-basic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -327,22 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 347 + content_length: 344 uncompressed: false - body: '{"placement_groups":[{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "347" + - "344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -350,12 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0a5b0c7-0436-48ce-a1c8-00a2ba9a2ce6 - X-Total-Count: - - "1" + - 919110d2-ab9a-4203-a07f-c42ea26d3912 status: 200 OK code: 200 - duration: 133.154937ms + duration: 80.625202ms - id: 7 request: proto: HTTP/1.1 @@ -371,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups?name=test-ds-instance-placement-group-basic method: GET response: proto: HTTP/2.0 @@ -380,20 +376,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 344 + content_length: 347 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_groups":[{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "344" + - "347" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:51 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +399,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0138678-51e0-4361-a81e-d0813863d218 + - 3bcae355-d183-4069-a037-07e1f9e2596e + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 169.349949ms + duration: 117.961564ms - id: 8 request: proto: HTTP/1.1 @@ -420,8 +420,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04adaa5e-9881-4284-ab6f-7920b4880e9e + - 925065a2-f30a-4ec1-aa94-40dc58add258 status: 200 OK code: 200 - duration: 108.599955ms + duration: 99.278435ms - id: 9 request: proto: HTTP/1.1 @@ -469,8 +469,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -480,7 +480,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c484204-85a9-463e-9d57-fe417c6abce3 + - 6efb42d5-ca96-499c-87bc-993ebec8365a status: 200 OK code: 200 - duration: 147.952349ms + duration: 111.052764ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -529,7 +529,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -538,9 +538,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -548,10 +548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4dac624-56b3-4519-b86f-ccdbe36d3e21 + - dbbbef94-e173-4688-8b1f-6effb44051b9 status: 200 OK code: 200 - duration: 178.063401ms + duration: 103.178796ms - id: 11 request: proto: HTTP/1.1 @@ -567,7 +567,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups?name=test-ds-instance-placement-group-basic method: GET response: @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: '{"placement_groups":[{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' + body: '{"placement_groups":[{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "347" @@ -587,11 +587,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,12 +599,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8fe1d40-df26-4696-b126-071472d0d166 + - 8ff14edf-5870-4f4b-bde0-d109fc93fa22 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 178.296849ms + duration: 121.278802ms - id: 12 request: proto: HTTP/1.1 @@ -620,8 +620,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 344 uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "344" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d686317c-062b-4bdf-bc70-424b1d0fc3e3 + - a25ee0c2-baa6-4ef9-8471-079517ec26f3 status: 200 OK code: 200 - duration: 153.011728ms + duration: 148.067694ms - id: 13 request: proto: HTTP/1.1 @@ -669,159 +669,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1a4f1bba-e1bb-458c-95f4-b8906eb909bc - status: 200 OK - code: 200 - duration: 161.566952ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups?name=test-ds-instance-placement-group-basic - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 347 - uncompressed: false - body: '{"placement_groups":[{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}]}' - headers: - Content-Length: - - "347" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:54 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b209f84-ee3f-484f-bbf1-19c287625f20 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 200.354076ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 344 - uncompressed: false - body: '{"placement_group":{"id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","name":"test-ds-instance-placement-group-basic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "344" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:28:54 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4ae6139d-fbeb-44f1-ace3-9fa4332f7ee2 - status: 200 OK - code: 200 - duration: 117.613831ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: DELETE response: proto: HTTP/2.0 @@ -838,9 +687,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,11 +697,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c121671-029a-461a-93ab-beb365aeb5fc + - 4bfd080f-13d1-4bda-9ab6-f378ceac22fb status: 204 No Content code: 204 - duration: 278.50732ms - - id: 17 + duration: 203.526586ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -867,8 +716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -878,7 +727,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' headers: Content-Length: - "152" @@ -887,9 +736,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,11 +746,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eeb4ab3-d45f-440b-9e79-a3a1cd05d84d + - 75868a36-55e7-425c-965e-5bef510a1b39 status: 404 Not Found code: 404 - duration: 46.218621ms - - id: 18 + duration: 43.620722ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -916,8 +765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -927,7 +776,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' headers: Content-Length: - "152" @@ -936,9 +785,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -946,11 +795,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f2c0597-3633-461e-ad1d-18c7400ca233 + - 3284fac9-ec4a-4636-aa02-89bcdc46a2f1 status: 404 Not Found code: 404 - duration: 72.534756ms - - id: 19 + duration: 24.225007ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -965,8 +814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/9f4f7538-3e60-40c7-9bbe-9707368e6cb8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/16be2afd-0667-4cbf-b642-1fc82cd108d3 method: GET response: proto: HTTP/2.0 @@ -976,7 +825,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"9f4f7538-3e60-40c7-9bbe-9707368e6cb8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"16be2afd-0667-4cbf-b642-1fc82cd108d3","type":"not_found"}' headers: Content-Length: - "152" @@ -985,9 +834,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -995,7 +844,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e11db3f5-1fa3-4ec3-be6f-6ce5e3abb9f3 + - d171fda9-6da6-4e06-8e0f-a0adba5eaab0 status: 404 Not Found code: 404 - duration: 94.668627ms + duration: 52.093323ms diff --git a/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml b/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml index 879325ca2..3d0102e36 100644 --- a/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-private-nic-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c8c083f-4a98-4b54-8067-bc99234e2efb + - d6676fd0-a140-4beb-878a-9b1183c8ff15 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.13166ms + duration: 40.90381ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7697e85-5c19-432b-ba19-2fda51811b11 + - c4335d2d-02ea-4dc2-bb6e-c9139430168a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 67.198971ms + duration: 54.697076ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,29 +152,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b86c934-5f78-42dc-999f-e919b12374bc + - 5084c744-f5c9-4341-be80-6dd68964f84a status: 200 OK code: 200 - duration: 53.665329ms + duration: 106.897415ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 250 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-terraform-datasource-private-nic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-pn-sweet-shamir","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -182,22 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1774 + content_length: 1089 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:02:59.223128Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","name":"tf-pn-sweet-shamir","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:02:59.223128Z","id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.228.0/22","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:02:59.223128Z","id":"69af6eb4-3996-47fb-a541-851e0b912bf2","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f00c::/64","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1774" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,50 +203,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8614e717-c92d-442e-955f-177ff989d086 - status: 201 Created - code: 201 - duration: 882.873644ms + - a7fabe25-8a45-44c7-8ba0-962d325aa3f8 + status: 200 OK + code: 200 + duration: 670.100236ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-modest-swanson","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5f71c91e-5743-4eb1-ac40-8a1bb22fa40e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:02:59.223128Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","name":"tf-pn-sweet-shamir","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:02:59.223128Z","id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.228.0/22","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:02:59.223128Z","id":"69af6eb4-3996-47fb-a541-851e0b912bf2","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f00c::/64","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1090" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -256,28 +252,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db87d0f8-4810-400b-b157-ca194f2bb9cf + - 8cf7db4f-37dc-42e4-80ee-b1e1cd79ee4e status: 200 OK code: 200 - duration: 1.144366841s + duration: 23.556893ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 250 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"test-terraform-datasource-private-nic","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -286,7 +284,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:00.022337+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -295,9 +293,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35cb950-eb99-43e2-8bbb-30b8c38cef22 - status: 200 OK - code: 200 - duration: 117.592128ms + - f66145f4-0a20-4ac5-abbd-3a353316a4cf + status: 201 Created + code: 201 + duration: 2.231510122s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1774 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:00.022337+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1090" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11a91d08-f2ca-4ba0-bb37-52afa91b2963 + - e72f5996-1cd2-419c-9076-18a5d1141aaa status: 200 OK code: 200 - duration: 53.794208ms + duration: 145.579033ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:27.388984+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:00.022337+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e9605f4-93e7-4343-8a59-2105b1f6067b + - d68be4cb-a314-4267-b49e-f8f04618d20e status: 200 OK code: 200 - duration: 100.026496ms + duration: 153.27297ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.171875Z","id":"8750c85d-4a8c-49cf-b1b9-fc5f7d42807f","product_resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.171875Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46a75c5e-38f3-4935-9034-3bc082ba06cb + - 0df77e74-56cb-4067-979b-4b1a2180c659 status: 200 OK code: 200 - duration: 35.024105ms + duration: 87.204434ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action","href_result":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418","id":"2ee75cf8-33f8-42a6-926e-a3498a67f92b","progress":0,"started_at":"2025-10-08T23:04:28.765657+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/5df399da-7aa8-485a-a142-cb3f896ed128/action","href_result":"/servers/5df399da-7aa8-485a-a142-cb3f896ed128","id":"27270f7b-db41-44dd-bab4-9840f9a9b511","progress":0,"started_at":"2025-10-15T15:03:02.177227+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2ee75cf8-33f8-42a6-926e-a3498a67f92b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/27270f7b-db41-44dd-bab4-9840f9a9b511 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ca7bbd-0b43-462b-bb77-5fd7319615ca + - 994fe0a3-87e5-48c8-979b-0831e05adb8a status: 202 Accepted code: 202 - duration: 462.736113ms + duration: 245.660568ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -535,7 +535,7 @@ interactions: trailer: {} content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:28.352257+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:01.986108+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1796" @@ -544,9 +544,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2b57b5c-6bf5-48e5-b091-323995a38910 + - 5f55ce6b-57f7-4cea-89e5-9ba156073517 status: 200 OK code: 200 - duration: 101.738348ms + duration: 171.750427ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1931" @@ -593,9 +593,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f15e67ad-700d-49f0-ba93-2f12e82c444a + - 7dce5ace-153e-457a-aaf7-2205895bbf86 status: 200 OK code: 200 - duration: 127.137008ms + duration: 136.886211ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -633,7 +633,7 @@ interactions: trailer: {} content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1931" @@ -642,9 +642,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae0374e7-e62e-4bcf-95ba-7c233f63808e + - cffe89f7-12f6-4ac2-b92f-21d25f192876 status: 200 OK code: 200 - duration: 91.986579ms + duration: 147.806194ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df135205-80dd-4a2c-935e-7d8b6b95cf02 + - de30f533-fa23-4cd2-b75e-0b268e8ebea5 status: 404 Not Found code: 404 - duration: 27.947163ms + duration: 36.030831ms - id: 14 request: proto: HTTP/1.1 @@ -721,7 +721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -731,7 +731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.171875Z","id":"8750c85d-4a8c-49cf-b1b9-fc5f7d42807f","product_resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.171875Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -740,9 +740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4420c9ea-37db-4670-ab86-74ff10d10210 + - 19064d17-8d02-47c5-8e25-a3d8a6661d22 status: 200 OK code: 200 - duration: 37.798494ms + duration: 83.76312ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae0377a9-998f-435a-980a-a5ace0a91cdd + - dd5b784f-5459-447f-8535-98d309de36e7 status: 200 OK code: 200 - duration: 56.222445ms + duration: 91.759865ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,12 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36b22aca-f3e9-427a-bc3a-f005871807f4 + - 3cea226b-524e-4d36-b24e-f7f4d185e5f9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.019839ms + duration: 112.753637ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1931" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a48c61a4-f3a2-48bc-8eee-1ab82eea4652 + - 136199a7-ba94-4e14-ac59-3f7195c2b25e status: 200 OK code: 200 - duration: 116.645361ms + duration: 157.538123ms - id: 18 request: proto: HTTP/1.1 @@ -916,14 +916,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","tags":["test-terraform-datasource-private-nic"]}' + body: '{"private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","tags":["test-terraform-datasource-private-nic"]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: POST response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed498627-ce5e-46a3-9e12-5eb3e549594a + - 4d34d072-6e6a-4d01-956f-6e5697825cdb status: 201 Created code: 201 - duration: 532.527352ms + duration: 603.403587ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -982,7 +982,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -991,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc50bf8e-55df-4241-9087-6916ff217598 + - c5ecff63-1d38-434e-80d9-1ee3dd3127b8 status: 200 OK code: 200 - duration: 67.311297ms + duration: 81.663536ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebed8ca6-43be-47de-b67d-4e26ecedb675 + - 11cc4b35-3667-41f7-b1b9-db9d739e1663 status: 200 OK code: 200 - duration: 46.311112ms + duration: 119.145472ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d12fd514-cc68-497e-9802-7ee6b234b479 + - e8637472-f4fb-4679-9851-cc50526b402c status: 200 OK code: 200 - duration: 57.524223ms + duration: 80.223785ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 574c565f-35c0-4f13-a099-aab94dde58d9 + - ab61c5f1-4a41-497d-a53d-1372a1aaea7d status: 200 OK code: 200 - duration: 57.735994ms + duration: 102.344798ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12959f77-00fb-4fd5-a3ec-5c51287cfe6b + - c1551ede-fb53-422e-964c-671ead945194 status: 200 OK code: 200 - duration: 55.500743ms + duration: 120.1486ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1227,7 +1227,7 @@ interactions: trailer: {} content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:04:34.547425+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "512" @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df5877bc-f2dc-448f-96d5-83ad6c17152f + - 2fd9f8b6-7080-4752-875b-f6901c37d6e9 status: 200 OK code: 200 - duration: 51.082627ms + duration: 103.515792ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57d0630d-366d-4e70-bb98-c0d9059e1b23 + - e5475a11-2371-4643-95b4-9a5c1918e340 status: 200 OK code: 200 - duration: 49.844982ms + duration: 104.463743ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1323,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 512 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1feef937-5975-4555-80a8-09f005483b3e + - 3cf73e8c-c2a4-4d84-8264-e270913cc64d status: 200 OK code: 200 - duration: 56.819974ms + duration: 102.018044ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 512 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeb2055e-322a-41dc-92d3-9b91c4e555df + - deb62006-4b8b-429c-acc4-887e212e45d7 status: 200 OK code: 200 - duration: 83.805241ms + duration: 109.768205ms - id: 28 request: proto: HTTP/1.1 @@ -1413,7 +1413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1421,20 +1421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 512 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b05ca5a7-c605-4d58-b0e6-1ba76acd026b + - 8cbc3871-ce5c-4846-a1e0-c0b658fb2247 status: 200 OK code: 200 - duration: 81.094199ms + duration: 98.000042ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1470,20 +1470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 512 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:03:08.436989+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"syncing","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1090" + - "512" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38511725-632b-4196-83bb-3b9db43c24e3 + - 05b587ae-d40e-4e56-ac8b-e2617ff4454f status: 200 OK code: 200 - duration: 30.581068ms + duration: 89.080376ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1519,20 +1519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a356afb6-6255-49f4-a54d-a77ed82e8e3c + - e8cced22-cb12-4a5e-9106-fdd78a0c450d status: 200 OK code: 200 - duration: 102.976604ms + duration: 87.924964ms - id: 31 request: proto: HTTP/1.1 @@ -1560,7 +1560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -1568,20 +1568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 514 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1589,10 +1589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fed5c17-7774-43ed-89b3-90d20af13803 - status: 404 Not Found - code: 404 - duration: 27.413631ms + - 66a2152c-f0af-4cab-a802-024c4ca60eef + status: 200 OK + code: 200 + duration: 123.304614ms - id: 32 request: proto: HTTP/1.1 @@ -1609,7 +1609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -1617,20 +1617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 2428 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1638,10 +1638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df64aa8f-137d-416e-aef1-a1361ea2c7aa + - 862db57e-4fd3-4433-bc50-b5c424438c1d status: 200 OK code: 200 - duration: 43.856039ms + duration: 141.726375ms - id: 33 request: proto: HTTP/1.1 @@ -1658,7 +1658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1666,20 +1666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1104 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1687,10 +1687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 332102cf-7abe-4e09-baf2-6c4623930e9c + - 871d0a16-cfc4-4988-a97e-2c52371855b8 status: 200 OK code: 200 - duration: 51.897505ms + duration: 40.633347ms - id: 34 request: proto: HTTP/1.1 @@ -1707,7 +1707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5f71c91e-5743-4eb1-ac40-8a1bb22fa40e method: GET response: proto: HTTP/2.0 @@ -1715,22 +1715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1089 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:02:59.223128Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","name":"tf-pn-sweet-shamir","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:02:59.223128Z","id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.228.0/22","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:02:59.223128Z","id":"69af6eb4-3996-47fb-a541-851e0b912bf2","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f00c::/64","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "517" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,12 +1736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 756af5f8-fd1c-46c5-91aa-31c005c3af00 - X-Total-Count: - - "1" + - c4ab44e8-2616-4670-ad33-009b70cfc7c3 status: 200 OK code: 200 - duration: 51.86199ms + duration: 36.107223ms - id: 35 request: proto: HTTP/1.1 @@ -1760,7 +1756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -1768,20 +1764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,10 +1785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca88b9f-7899-4ad5-b7a1-6df9619d9b75 + - 23fd4f0a-f007-4bfe-b361-29a8723cc065 status: 200 OK code: 200 - duration: 34.621582ms + duration: 129.256731ms - id: 36 request: proto: HTTP/1.1 @@ -1809,7 +1805,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -1817,20 +1813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' headers: Content-Length: - - "514" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,10 +1834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5516945-4b8e-4c03-86e3-2c4cc7d61f39 - status: 200 OK - code: 200 - duration: 54.252207ms + - e44356a7-0920-4256-9b48-ff5c8ee06b4a + status: 404 Not Found + code: 404 + duration: 28.949555ms - id: 37 request: proto: HTTP/1.1 @@ -1858,7 +1854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -1866,20 +1862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.171875Z","id":"8750c85d-4a8c-49cf-b1b9-fc5f7d42807f","product_resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.171875Z","zone":"fr-par-1"}' headers: Content-Length: - - "2428" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,10 +1883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a629978e-9141-4135-9ccc-99a183082a84 + - 18b10433-66c6-4674-b1ca-8e625f18bf2c status: 200 OK code: 200 - duration: 118.007237ms + duration: 95.479676ms - id: 38 request: proto: HTTP/1.1 @@ -1907,7 +1903,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/user_data method: GET response: proto: HTTP/2.0 @@ -1915,20 +1911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1104" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,10 +1932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 965dd817-ba75-403d-8123-2c5e24380834 + - a5dc1b5d-4832-4f4b-9d58-128064a0f248 status: 200 OK code: 200 - duration: 51.308173ms + duration: 102.665917ms - id: 39 request: proto: HTTP/1.1 @@ -1956,7 +1952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -1964,20 +1960,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 517 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1090" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,10 +1983,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9cacf07-2700-4182-923e-cc94259ff2d6 + - f01f45f2-1739-444a-866f-7348582ec142 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 26.993041ms + duration: 125.543721ms - id: 40 request: proto: HTTP/1.1 @@ -2005,7 +2005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2013,20 +2013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 1104 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2428" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2034,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d66d17f-e227-4ac0-8c1e-a6e488f6c8d1 + - 054ec2b6-a493-45c1-94c2-43bed8a4c8c7 status: 200 OK code: 200 - duration: 94.327782ms + duration: 39.349711ms - id: 41 request: proto: HTTP/1.1 @@ -2054,7 +2054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -2062,20 +2062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 514 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2083,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7eeef4ac-d076-4c5d-8e78-8c1cc02b7d6d - status: 404 Not Found - code: 404 - duration: 27.649327ms + - 79d3a48e-ab52-42a9-9168-c1f29db69257 + status: 200 OK + code: 200 + duration: 110.484083ms - id: 42 request: proto: HTTP/1.1 @@ -2103,7 +2103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -2111,20 +2111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 2428 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2132,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26e8aae9-025d-443a-892d-29868dc31153 + - 187a1c8c-0106-478c-925a-353da2b65240 status: 200 OK code: 200 - duration: 60.748901ms + duration: 150.758878ms - id: 43 request: proto: HTTP/1.1 @@ -2152,7 +2152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2160,20 +2160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1104 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2181,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d7878e4-5f41-4095-a3f0-2425d5b1aac0 + - 5dc9121b-167a-44f5-bb46-ec0e9330c1fb status: 200 OK code: 200 - duration: 70.737143ms + duration: 66.963333ms - id: 44 request: proto: HTTP/1.1 @@ -2201,7 +2201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5f71c91e-5743-4eb1-ac40-8a1bb22fa40e method: GET response: proto: HTTP/2.0 @@ -2209,22 +2209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1089 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:02:59.223128Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","name":"tf-pn-sweet-shamir","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:02:59.223128Z","id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.228.0/22","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:02:59.223128Z","id":"69af6eb4-3996-47fb-a541-851e0b912bf2","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f00c::/64","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "517" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,12 +2230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f38e35f-5d18-466b-be5f-1f26ca62e89f - X-Total-Count: - - "1" + - 7d3d5fa6-cdfd-41c5-ba1f-17f6ec9c5b68 status: 200 OK code: 200 - duration: 56.51569ms + duration: 24.761646ms - id: 45 request: proto: HTTP/1.1 @@ -2254,7 +2250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -2262,20 +2258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a0fd139-e1a8-40d5-a0f0-7e3ec2b4b149 + - bde3382c-466a-4832-88eb-5c523f140d77 status: 200 OK code: 200 - duration: 50.235957ms + duration: 138.685877ms - id: 46 request: proto: HTTP/1.1 @@ -2303,7 +2299,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -2311,22 +2307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' headers: Content-Length: - - "517" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,12 +2328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b58dd1b1-f198-4a02-8a81-c1efbcb8f2a5 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 62.086068ms + - d5df2a03-0dd7-4cc9-a824-18e9016d6cf4 + status: 404 Not Found + code: 404 + duration: 33.461815ms - id: 47 request: proto: HTTP/1.1 @@ -2356,7 +2348,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -2364,22 +2356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 705 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.171875Z","id":"8750c85d-4a8c-49cf-b1b9-fc5f7d42807f","product_resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.171875Z","zone":"fr-par-1"}' headers: Content-Length: - - "517" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2387,12 +2377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1334b3a8-9a01-470d-83f3-a5cb732abe7c - X-Total-Count: - - "1" + - 5e5b4075-4029-404b-a5d6-8540116baed1 status: 200 OK code: 200 - duration: 67.737567ms + duration: 96.982133ms - id: 48 request: proto: HTTP/1.1 @@ -2409,7 +2397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/user_data method: GET response: proto: HTTP/2.0 @@ -2417,20 +2405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "514" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,10 +2426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3305c70-b5f7-4bd3-82e9-fd5c9e5bb955 + - 948dd64a-123e-4587-9dd4-524c54a403e6 status: 200 OK code: 200 - duration: 75.434615ms + duration: 106.159266ms - id: 49 request: proto: HTTP/1.1 @@ -2458,7 +2446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -2466,20 +2454,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "514" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2487,10 +2477,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1acb7292-9278-4bfc-a0b1-d237a09a1650 + - 8bb4081f-911b-4e27-b222-4fedccc3f412 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 52.808292ms + duration: 108.555217ms - id: 50 request: proto: HTTP/1.1 @@ -2507,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2515,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 592ddd34-45fd-4fde-8401-4bc21aad903c + - 9692ac23-78ef-4995-9808-cddb880da043 status: 200 OK code: 200 - duration: 63.781088ms + duration: 27.325993ms - id: 51 request: proto: HTTP/1.1 @@ -2556,7 +2548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -2564,20 +2556,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2428" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,10 +2579,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6168c7f-b8d7-4d89-88bc-ae4eb8c43dc2 + - 4510d30b-9db3-4eb4-914e-c734b260ce18 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 109.274339ms + duration: 93.266029ms - id: 52 request: proto: HTTP/1.1 @@ -2605,7 +2601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -2613,20 +2609,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2428" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,10 +2632,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70dba7c4-ac77-4f80-810b-46f5686b3c76 + - f34ef848-f84c-4a3e-83cf-543397332a05 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 105.92276ms + duration: 94.142422ms - id: 53 request: proto: HTTP/1.1 @@ -2654,7 +2654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -2662,20 +2662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02003c33-1ade-42f7-8e2d-6dabefba5a28 + - 57809e56-76b8-4054-a0ba-a68377cc8c48 status: 200 OK code: 200 - duration: 38.265783ms + duration: 129.637266ms - id: 54 request: proto: HTTP/1.1 @@ -2703,7 +2703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -2711,20 +2711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,10 +2732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 098c45da-d563-4727-9709-43b2a31975f9 + - ef287b2d-acce-4734-b0ca-be0ce762734a status: 200 OK code: 200 - duration: 107.096695ms + duration: 100.294753ms - id: 55 request: proto: HTTP/1.1 @@ -2752,7 +2752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -2760,20 +2760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2781,10 +2781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e466e7d1-746f-49ae-be1f-44cbf9396bba + - 946e4ea3-7998-45ec-9159-3d5fb52c490c status: 200 OK code: 200 - duration: 50.201133ms + duration: 120.292129ms - id: 56 request: proto: HTTP/1.1 @@ -2801,7 +2801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -2809,20 +2809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 2428 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "514" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2830,10 +2830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aab5f84b-a952-456b-9200-e78dd0b30955 + - 531c7068-6744-49f6-aba9-93ea39a426d0 status: 200 OK code: 200 - duration: 44.960084ms + duration: 151.773691ms - id: 57 request: proto: HTTP/1.1 @@ -2850,7 +2850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2860,7 +2860,7 @@ interactions: trailer: {} content_length: 1104 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - "1104" @@ -2869,9 +2869,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db214d4f-136e-45ec-8184-881d7e0eb6d3 + - 21323ceb-7fbe-4106-bc95-9b142716a57a status: 200 OK code: 200 - duration: 46.486131ms + duration: 47.987574ms - id: 58 request: proto: HTTP/1.1 @@ -2899,7 +2899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -2909,7 +2909,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -2918,9 +2918,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2928,10 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31781d05-e602-4115-a544-48569a77e048 + - 9cb60f2c-c363-49fc-a46c-8a2f96d21876 status: 200 OK code: 200 - duration: 112.430335ms + duration: 141.475468ms - id: 59 request: proto: HTTP/1.1 @@ -2948,7 +2948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -2956,20 +2956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2977,10 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5c28795-30dc-4e01-a8b4-48882c62109a + - ab68c606-c893-4a79-97fa-a3e3b13e215c status: 200 OK code: 200 - duration: 46.448521ms + duration: 161.384657ms - id: 60 request: proto: HTTP/1.1 @@ -2997,7 +2997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3005,20 +3005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3026,10 +3026,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b03acb-f5d2-418f-a044-7420a170c8ed + - f66f12fa-cca5-4425-8807-7d1f9191edba status: 200 OK code: 200 - duration: 55.411093ms + duration: 39.360511ms - id: 61 request: proto: HTTP/1.1 @@ -3046,7 +3046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3054,22 +3054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1104 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "517" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3077,12 +3075,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74f9636a-226d-42ff-ae9d-6ffed6875081 - X-Total-Count: - - "1" + - 6a35f27f-7dd0-439a-a0d2-09dc4c4e7600 status: 200 OK code: 200 - duration: 47.769598ms + duration: 48.681033ms - id: 62 request: proto: HTTP/1.1 @@ -3099,7 +3095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -3109,7 +3105,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -3118,9 +3114,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3128,10 +3124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa997cdf-406e-45a4-9aeb-87595e8d31d0 + - 53153994-3a6f-4232-8939-ff07619980dd status: 200 OK code: 200 - duration: 49.268524ms + duration: 109.383029ms - id: 63 request: proto: HTTP/1.1 @@ -3148,7 +3144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -3156,22 +3152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 2428 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3179,12 +3173,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3088b4fd-daed-4b65-97f5-df82d3842000 - X-Total-Count: - - "1" + - a2c0de02-0379-443b-8d3c-2a7f1dbb0f5b status: 200 OK code: 200 - duration: 53.221226ms + duration: 144.668202ms - id: 64 request: proto: HTTP/1.1 @@ -3201,7 +3193,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3209,20 +3201,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,10 +3222,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10ffdb69-b0b3-4f03-b560-2d412fc236ba + - d1b716a9-79d3-4948-b960-e78108c4ff17 status: 200 OK code: 200 - duration: 53.943244ms + duration: 51.644168ms - id: 65 request: proto: HTTP/1.1 @@ -3250,7 +3242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -3260,7 +3252,7 @@ interactions: trailer: {} content_length: 514 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - "514" @@ -3269,9 +3261,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3279,10 +3271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42a08c54-dba7-472e-b8f8-379209b41dec + - b116d615-21f2-423d-8ad8-f547a19d0ea3 status: 200 OK code: 200 - duration: 79.725192ms + duration: 115.412912ms - id: 66 request: proto: HTTP/1.1 @@ -3299,7 +3291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -3307,20 +3299,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2428" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3328,10 +3322,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ab865e-f73f-4386-863a-3be694b41dd3 + - 87ef8045-0b7a-4c07-a9db-927ca7fc4c36 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 87.464338ms + duration: 88.100716ms - id: 67 request: proto: HTTP/1.1 @@ -3348,7 +3344,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -3356,20 +3352,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3377,10 +3373,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9538323-058c-437d-90f3-ad806eb4b053 + - 63bbb00b-355e-4302-847f-13a4e63ca974 status: 200 OK code: 200 - duration: 49.007711ms + duration: 93.876563ms - id: 68 request: proto: HTTP/1.1 @@ -3397,7 +3393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -3405,20 +3401,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2428" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3426,10 +3424,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c91af73c-35f7-4cd6-a05a-171400a6375b + - d101a2fe-1ce5-4e31-a3d2-30df3ac16e14 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 105.000542ms + duration: 111.2343ms - id: 69 request: proto: HTTP/1.1 @@ -3446,7 +3446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -3454,20 +3454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3475,10 +3475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae1dca03-d872-483b-a853-4974404dc770 + - 9a89db93-c84e-49c9-9db7-a3fe2ca8411a status: 200 OK code: 200 - duration: 106.088357ms + duration: 92.313955ms - id: 70 request: proto: HTTP/1.1 @@ -3495,7 +3495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -3503,20 +3503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3524,10 +3524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8558e3a3-aed3-4f6d-bfcf-fea1b201f8e8 + - 2273ece8-08d2-4828-b498-55cb122383a1 status: 200 OK code: 200 - duration: 50.371638ms + duration: 109.623932ms - id: 71 request: proto: HTTP/1.1 @@ -3544,7 +3544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -3552,20 +3552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3573,10 +3573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401c2877-2537-40c0-9e6f-acd5a5f576d1 + - 88d79c76-1d35-4adf-b40c-a128aca38da0 status: 200 OK code: 200 - duration: 50.742976ms + duration: 149.983617ms - id: 72 request: proto: HTTP/1.1 @@ -3593,7 +3593,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3601,20 +3601,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1104 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.187180Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"8a8b458b-27be-4513-b954-4ecd189cac5c","name":"tf-pn-modest-swanson","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.187180Z","id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:04:27.187180Z","id":"1984fdec-3dde-4ff6-9773-af0643a20ae3","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:e229::/64","updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:04:27.187180Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1090" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3622,10 +3622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 018e71e2-e95a-4c2c-a18a-f80c3a397298 + - d78b3e29-9f4c-4504-97ea-557c5a17aed8 status: 200 OK code: 200 - duration: 39.254535ms + duration: 46.14515ms - id: 73 request: proto: HTTP/1.1 @@ -3642,7 +3642,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -3652,7 +3652,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -3661,9 +3661,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3671,10 +3671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31316add-428e-4834-8f5f-12f4a8f5c3df + - ccedaf58-4fc9-4743-a5ef-e420049202ec status: 200 OK code: 200 - duration: 77.71574ms + duration: 132.871801ms - id: 74 request: proto: HTTP/1.1 @@ -3691,7 +3691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -3699,20 +3699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2428 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3720,10 +3720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e7039c4-4861-4e8a-b1b6-28b5888238d3 - status: 404 Not Found - code: 404 - duration: 30.275973ms + - f83f6f92-5c9a-412b-9013-d14f08139514 + status: 200 OK + code: 200 + duration: 138.980081ms - id: 75 request: proto: HTTP/1.1 @@ -3740,7 +3740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3748,20 +3748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1104 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.612874Z","id":"5d733ca2-1f0b-4ac6-8284-2e0b1a48d477","product_resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.612874Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "705" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3769,10 +3769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09ce79c2-f145-405b-be77-283ea1b68ee1 + - f6a1eef4-78bf-4038-a977-9d1a87824c61 status: 200 OK code: 200 - duration: 43.434939ms + duration: 49.606389ms - id: 76 request: proto: HTTP/1.1 @@ -3789,7 +3789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/user_data + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3797,20 +3797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1104 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3818,10 +3818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c3f4fd8-1f9f-4db9-a81a-23c77353640a + - 80532b94-4d9b-427e-94e7-0c7b80169e66 status: 200 OK code: 200 - duration: 54.511877ms + duration: 39.063485ms - id: 77 request: proto: HTTP/1.1 @@ -3838,7 +3838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5f71c91e-5743-4eb1-ac40-8a1bb22fa40e method: GET response: proto: HTTP/2.0 @@ -3846,22 +3846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 1089 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:02:59.223128Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","name":"tf-pn-sweet-shamir","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:02:59.223128Z","id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.228.0/22","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:02:59.223128Z","id":"69af6eb4-3996-47fb-a541-851e0b912bf2","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f00c::/64","updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:02:59.223128Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "517" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3869,12 +3867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c722a325-462a-4951-8b0e-e3b61da2d654 - X-Total-Count: - - "1" + - 08b39f86-fecf-44fe-b05e-3c7dbb27cba9 status: 200 OK code: 200 - duration: 80.414889ms + duration: 37.142985ms - id: 78 request: proto: HTTP/1.1 @@ -3891,7 +3887,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -3899,20 +3895,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3920,10 +3916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70926ab4-6424-445c-b7ae-8e217693adb7 + - c3f74dff-6019-42c3-95ee-bb860766ab1b status: 200 OK code: 200 - duration: 25.934902ms + duration: 131.248207ms - id: 79 request: proto: HTTP/1.1 @@ -3940,7 +3936,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -3948,20 +3944,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' headers: Content-Length: - - "514" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3969,10 +3965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e8de3c6-c270-4986-99cb-573c29144135 - status: 200 OK - code: 200 - duration: 55.430208ms + - a248dbd0-2277-451f-a5f5-c1710a5a79e7 + status: 404 Not Found + code: 404 + duration: 27.661302ms - id: 80 request: proto: HTTP/1.1 @@ -3989,7 +3985,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -3997,22 +3993,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 705 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.171875Z","id":"8750c85d-4a8c-49cf-b1b9-fc5f7d42807f","product_resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.171875Z","zone":"fr-par-1"}' headers: Content-Length: - - "517" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4020,12 +4014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6020ed2d-2b0f-4e10-b709-782bbc85ee17 - X-Total-Count: - - "1" + - 3aebf7fd-3e52-4406-a1f6-73d2c06d335b status: 200 OK code: 200 - duration: 55.832744ms + duration: 70.433128ms - id: 81 request: proto: HTTP/1.1 @@ -4042,7 +4034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics?tags=test-terraform-datasource-private-nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/user_data method: GET response: proto: HTTP/2.0 @@ -4050,22 +4042,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "517" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4073,12 +4063,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f045db-1273-4ff3-bbdc-5059520e2b73 - X-Total-Count: - - "1" + - f54041c1-605f-4bc7-ae59-3742518839db status: 200 OK code: 200 - duration: 55.760761ms + duration: 109.514647ms - id: 82 request: proto: HTTP/1.1 @@ -4095,7 +4083,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -4103,20 +4091,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 517 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "514" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4124,10 +4114,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e25be386-ce9d-4231-a8d7-aa5040ee61ad + - c374bc64-dc87-4f9c-b9ec-41b005c3a131 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 55.907042ms + duration: 91.165692ms - id: 83 request: proto: HTTP/1.1 @@ -4144,7 +4136,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4152,20 +4144,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4173,10 +4165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d80bac0b-6660-4352-a5e4-9d9149782f63 + - c6613563-4dbc-4899-bfdd-f47200a406d1 status: 200 OK code: 200 - duration: 64.444787ms + duration: 31.073558ms - id: 84 request: proto: HTTP/1.1 @@ -4193,7 +4185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics?tags=test-terraform-datasource-private-nic method: GET response: proto: HTTP/2.0 @@ -4201,20 +4193,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 517 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2428" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4222,10 +4216,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 152cd51f-56b1-4dda-b86e-1059b66cbe09 + - 74adbbb0-75f2-4bfd-893d-d3e5e159bc55 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 92.983973ms + duration: 93.845475ms - id: 85 request: proto: HTTP/1.1 @@ -4242,7 +4238,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4250,20 +4246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,10 +4267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17fba7e1-f4ab-4856-ae51-7823b7a3034f + - 1f1c8ed2-8641-4ac3-bec5-84092d19deb8 status: 200 OK code: 200 - duration: 87.909162ms + duration: 102.79424ms - id: 86 request: proto: HTTP/1.1 @@ -4291,7 +4287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics method: GET response: proto: HTTP/2.0 @@ -4299,20 +4295,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 517 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1104" + - "517" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4320,10 +4318,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0dd39a1-ccb6-4320-9ebc-36053cbb7d81 + - 72ac1b6c-75ab-4655-83d6-ba060534ff18 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 66.084495ms + duration: 112.990533ms - id: 87 request: proto: HTTP/1.1 @@ -4340,7 +4340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4348,20 +4348,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4369,10 +4369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a7e7c4d-cda2-47be-9f82-4aae6a4ee526 + - 79599714-c9c8-4597-a399-a43c74485db0 status: 200 OK code: 200 - duration: 116.053927ms + duration: 118.279007ms - id: 88 request: proto: HTTP/1.1 @@ -4389,7 +4389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4397,20 +4397,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 514 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4418,10 +4418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1cd3deb-a5e4-4c60-8c78-a9b2d87569fa + - 479827d6-8c0a-4218-844c-48cc96a5de69 status: 200 OK code: 200 - duration: 41.938276ms + duration: 113.640893ms - id: 89 request: proto: HTTP/1.1 @@ -4438,7 +4438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -4446,20 +4446,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4467,10 +4467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db4f51de-e14d-4486-923e-5c6a93a4aaa6 + - 346fb89e-4e48-4eca-86b3-5c6a24f8abed status: 200 OK code: 200 - duration: 41.70829ms + duration: 162.202253ms - id: 90 request: proto: HTTP/1.1 @@ -4487,7 +4487,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4495,20 +4495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4516,10 +4516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a53ae62-9cd0-45c3-8464-670799be6654 + - 1f0e9060-df90-49c9-89cd-d98d7c3d9bdc status: 200 OK code: 200 - duration: 54.608727ms + duration: 51.935715ms - id: 91 request: proto: HTTP/1.1 @@ -4536,7 +4536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -4546,7 +4546,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -4555,9 +4555,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4565,10 +4565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a927733-1689-4fa5-b3b6-c451a9c4184a + - 44d4d5af-9907-40af-a07e-0c442093c4aa status: 200 OK code: 200 - duration: 107.231334ms + duration: 120.184549ms - id: 92 request: proto: HTTP/1.1 @@ -4585,7 +4585,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=8a8b458b-27be-4513-b954-4ecd189cac5c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=52478560-bd30-4bde-815e-874f6eeecfe7&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -4593,20 +4593,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 2428 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:e229:a483:ad43:5ae1:3e24/64","created_at":"2025-10-08T23:04:34.804857Z","id":"fbca4add-81df-448c-9d79-55ee6a4ffcb7","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1984fdec-3dde-4ff6-9773-af0643a20ae3"},"tags":[],"updated_at":"2025-10-08T23:04:34.804857Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:04:34.673880Z","id":"c78df053-cb97-416d-aa68-4336e39016a6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"52478560-bd30-4bde-815e-874f6eeecfe7","mac_address":"02:00:00:13:2C:04","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d4f7a3b-e243-4698-a494-a1a46ed90ba8"},"tags":[],"updated_at":"2025-10-08T23:04:34.673880Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1104" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4614,10 +4614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e830a24e-6673-4e93-9d0f-fcb9f4310008 + - 7b019a35-9421-4b70-8635-51c15e8859c8 status: 200 OK code: 200 - duration: 43.108363ms + duration: 138.626028ms - id: 93 request: proto: HTTP/1.1 @@ -4634,7 +4634,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4642,20 +4642,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 514 + content_length: 1104 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.434219+00:00","id":"52478560-bd30-4bde-815e-874f6eeecfe7","ipam_ip_ids":["c78df053-cb97-416d-aa68-4336e39016a6","fbca4add-81df-448c-9d79-55ee6a4ffcb7"],"mac_address":"02:00:00:13:2c:04","modification_date":"2025-10-08T23:05:02.301883+00:00","private_network_id":"8a8b458b-27be-4513-b954-4ecd189cac5c","server_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "514" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4663,10 +4663,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b067eab-b9aa-44dd-aa3a-115ad274f086 + - 346d3b47-a146-47d4-96ee-74adc4d85bc1 status: 200 OK code: 200 - duration: 52.302434ms + duration: 41.058425ms - id: 94 request: proto: HTTP/1.1 @@ -4683,26 +4683,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 - method: DELETE + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1104 uncompressed: false - body: "" + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: + Content-Length: + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4710,10 +4712,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ef9a5e8-102a-4536-bfe6-e300a57837ec - status: 204 No Content - code: 204 - duration: 302.223113ms + - b8d503e9-335d-463e-94b8-8199f75eed33 + status: 200 OK + code: 200 + duration: 55.101419ms - id: 95 request: proto: HTTP/1.1 @@ -4730,7 +4732,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4738,20 +4740,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 514 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"52478560-bd30-4bde-815e-874f6eeecfe7","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4759,10 +4761,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f10bebfb-5758-4311-8915-f672ea677656 - status: 404 Not Found - code: 404 - duration: 46.471763ms + - 8cb1cc9c-9e7e-47b7-a45b-4d64cc560e26 + status: 200 OK + code: 200 + duration: 89.816213ms - id: 96 request: proto: HTTP/1.1 @@ -4779,7 +4781,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -4787,20 +4789,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1931 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:04:31.476067+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1931" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4808,52 +4810,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1c460b2-5555-4b30-939f-1e4cff4342e7 + - fc0c7bd7-adff-4c7d-9ed2-681c1002700b status: 200 OK code: 200 - duration: 98.818389ms + duration: 147.214568ms - id: 97 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action - method: POST + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5f71c91e-5743-4eb1-ac40-8a1bb22fa40e&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b8bd9c8e-482a-4fca-aebb-d5498bc03c8d&resource_type=instance_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1104 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/action","href_result":"/servers/42c05029-a06f-4385-8fd9-3f3a032e4418","id":"ac8f9b45-9fd0-4cc1-a461-06c0252db251","progress":0,"started_at":"2025-10-08T23:05:09.439359+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f00c:506:2b3c:b358:76c4/64","created_at":"2025-10-15T15:03:08.604465Z","id":"a1f1fdc2-1853-44b9-b0e8-57b7044fb994","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"69af6eb4-3996-47fb-a541-851e0b912bf2"},"tags":[],"updated_at":"2025-10-15T15:03:08.604465Z","zone":null},{"address":"172.16.228.2/22","created_at":"2025-10-15T15:03:08.496686Z","id":"b036a3f1-9d3f-4c20-bc49-daabb55246fb","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","mac_address":"02:00:00:15:45:68","name":"test-terraform-datasource-private-nic","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"084bb640-1fe9-4cb4-a75b-d63ef7a1e65c"},"tags":[],"updated_at":"2025-10-15T15:03:08.496686Z","zone":null}],"total_count":2}' headers: Content-Length: - - "353" + - "1104" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ac8f9b45-9fd0-4cc1-a461-06c0252db251 + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4861,10 +4859,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3517d050-d64e-4fab-81cc-16a70960825c - status: 202 Accepted - code: 202 - duration: 163.770675ms + - b9242d1f-8c4d-4670-b1ef-4f93a401114b + status: 200 OK + code: 200 + duration: 46.088424ms - id: 98 request: proto: HTTP/1.1 @@ -4881,7 +4879,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4889,20 +4887,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1894 + content_length: 514 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:08.184649+00:00","id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","ipam_ip_ids":["b036a3f1-9d3f-4c20-bc49-daabb55246fb","a1f1fdc2-1853-44b9-b0e8-57b7044fb994"],"mac_address":"02:00:00:15:45:68","modification_date":"2025-10-15T15:04:02.803987+00:00","private_network_id":"5f71c91e-5743-4eb1-ac40-8a1bb22fa40e","server_id":"5df399da-7aa8-485a-a142-cb3f896ed128","state":"available","tags":["test-terraform-datasource-private-nic"],"zone":"fr-par-1"}}' headers: Content-Length: - - "1894" + - "514" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4910,10 +4908,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86a2a859-47f3-4bb4-bd32-e579dbd35666 + - d58bb23c-8a8c-4550-8a9d-b1183465be38 status: 200 OK code: 200 - duration: 105.305145ms + duration: 98.23768ms - id: 99 request: proto: HTTP/1.1 @@ -4930,7 +4928,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/8a8b458b-27be-4513-b954-4ecd189cac5c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: DELETE response: proto: HTTP/2.0 @@ -4947,9 +4945,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4957,10 +4955,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c02178-b16d-4c74-a983-554a02f568f3 + - c631c2b0-826a-4ccd-b3b9-27c29d0070f9 status: 204 No Content code: 204 - duration: 1.274664584s + duration: 397.967744ms - id: 100 request: proto: HTTP/1.1 @@ -4977,7 +4975,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -4985,20 +4983,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1894 + content_length: 148 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b8bd9c8e-482a-4fca-aebb-d5498bc03c8d","type":"not_found"}' headers: Content-Length: - - "1894" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5006,11 +5004,162 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b811c5a-424d-439b-9b2a-3cd1dbef1bad + - 4e7ee2c0-6c5c-4cf9-9e94-c3a1ef24dded + status: 404 Not Found + code: 404 + duration: 122.76053ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1931 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1931" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8f28e796-1eeb-4ada-9b0d-8a71efd3fb4d status: 200 OK code: 200 - duration: 97.345729ms - - id: 101 + duration: 156.256168ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1931 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:03:05.536263+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1931" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa380d48-6040-4bcb-a3f5-333bb18b1d3b + status: 200 OK + code: 200 + duration: 167.821257ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/5df399da-7aa8-485a-a142-cb3f896ed128/action","href_result":"/servers/5df399da-7aa8-485a-a142-cb3f896ed128","id":"46f0ab0b-f529-4f5a-aae6-8366119e47d7","progress":0,"started_at":"2025-10-15T15:04:11.306863+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/46f0ab0b-f529-4f5a-aae6-8366119e47d7 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e810ae82-52f9-4dea-ac4d-98aabee2f86f + status: 202 Accepted + code: 202 + duration: 653.341185ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5026,7 +5175,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -5036,7 +5185,7 @@ interactions: trailer: {} content_length: 1894 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.388984+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"42c05029-a06f-4385-8fd9-3f3a032e4418","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1401","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:69","maintenances":[],"modification_date":"2025-10-08T23:05:09.316163+00:00","name":"test-terraform-datasource-private-nic","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:00.022337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test-terraform-datasource-private-nic","id":"5df399da-7aa8-485a-a142-cb3f896ed128","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:01","maintenances":[],"modification_date":"2025-10-15T15:04:10.712556+00:00","name":"test-terraform-datasource-private-nic","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1894" @@ -5045,9 +5194,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5055,11 +5204,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c0bd781-c61a-4ce5-a0c3-c311c9f7cbff + - de7129d0-efe3-4e80-adf6-4c89c04fde2c status: 200 OK code: 200 - duration: 88.669446ms - - id: 102 + duration: 138.389787ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5f71c91e-5743-4eb1-ac40-8a1bb22fa40e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 006d79be-1de2-45dd-98b1-da031a859027 + status: 204 No Content + code: 204 + duration: 1.166071368s + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5075,7 +5271,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128 method: GET response: proto: HTTP/2.0 @@ -5085,7 +5281,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' headers: Content-Length: - "143" @@ -5094,9 +5290,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5104,11 +5300,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af38ebd0-cbc4-4b68-a3fa-56ae47cde8e7 + - 9a286edd-92ea-44e6-bff5-b3a981ab897a status: 404 Not Found code: 404 - duration: 42.321563ms - - id: 103 + duration: 48.411572ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5124,7 +5320,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -5134,7 +5330,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","type":"not_found"}' headers: Content-Length: - "143" @@ -5143,9 +5339,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5153,11 +5349,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9faaa0b-7069-46ef-87d5-670164acc8a4 + - f26e57c8-c1ca-4556-9042-f67734a8e671 status: 404 Not Found code: 404 - duration: 34.367119ms - - id: 104 + duration: 36.920691ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5173,7 +5369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: GET response: proto: HTTP/2.0 @@ -5183,7 +5379,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.612874Z","id":"bb2311a7-15cb-4990-a85a-50a9b61fea1f","last_detached_at":"2025-10-08T23:05:21.152445Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.152445Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.171875Z","id":"aceff16f-9aad-4810-91f7-f7c231ff16ba","last_detached_at":"2025-10-15T15:04:12.988994Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:12.988994Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5192,9 +5388,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5202,11 +5398,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 350e0a44-8c9a-4eaa-b76f-739baa9cb228 + - 453f865d-836c-4238-8b20-81c3b2773ddf status: 200 OK code: 200 - duration: 41.759662ms - - id: 105 + duration: 86.314464ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5222,7 +5418,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bb2311a7-15cb-4990-a85a-50a9b61fea1f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aceff16f-9aad-4810-91f7-f7c231ff16ba method: DELETE response: proto: HTTP/2.0 @@ -5239,9 +5435,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5249,11 +5445,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a916be09-7ec2-4244-a17d-860598c67714 + - fa9e60be-8393-4ed5-a36a-22d80d80abf6 status: 204 No Content code: 204 - duration: 69.44843ms - - id: 106 + duration: 160.522734ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5269,7 +5465,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -5279,7 +5475,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' headers: Content-Length: - "143" @@ -5288,9 +5484,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5298,11 +5494,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c839353-07d6-465c-ae29-18166d8c0cc8 + - 3c12c70b-250b-4130-a9b9-7d102e6224c2 status: 404 Not Found code: 404 - duration: 29.256953ms - - id: 107 + duration: 27.992965ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5318,7 +5514,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -5328,7 +5524,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' headers: Content-Length: - "143" @@ -5337,9 +5533,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5347,11 +5543,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c84bed4-2200-4c3d-8a6d-97355ca951d5 + - 6237bd8c-7672-416f-b544-cd9c0153d8d9 status: 404 Not Found code: 404 - duration: 31.721539ms - - id: 108 + duration: 25.238842ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5367,7 +5563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -5377,7 +5573,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' headers: Content-Length: - "143" @@ -5386,9 +5582,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5396,11 +5592,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55e46b08-e5d2-49f7-8958-dc34f0d5e298 + - 766c9682-864d-4b7d-a00b-74639d3b87fb status: 404 Not Found code: 404 - duration: 29.264597ms - - id: 109 + duration: 27.974561ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5416,7 +5612,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42c05029-a06f-4385-8fd9-3f3a032e4418/private_nics/52478560-bd30-4bde-815e-874f6eeecfe7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5df399da-7aa8-485a-a142-cb3f896ed128/private_nics/b8bd9c8e-482a-4fca-aebb-d5498bc03c8d method: GET response: proto: HTTP/2.0 @@ -5426,7 +5622,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42c05029-a06f-4385-8fd9-3f3a032e4418","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5df399da-7aa8-485a-a142-cb3f896ed128","type":"not_found"}' headers: Content-Length: - "143" @@ -5435,9 +5631,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5445,7 +5641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e14b00aa-fc02-48d6-a43f-be23925343e3 + - 279c57c7-9b51-4eec-be2e-bf705414ef02 status: 404 Not Found code: 404 - duration: 29.640273ms + duration: 27.71785ms diff --git a/internal/services/instance/testdata/data-source-security-group-basic.cassette.yaml b/internal/services/instance/testdata/data-source-security-group-basic.cassette.yaml index a921c963d..a05b9dc37 100644 --- a/internal/services/instance/testdata/data-source-security-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-security-group-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-security-group","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-security-group","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:22 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 777611e5-bd84-4444-8105-1b64910cb40c + - 21989959-69f4-43c9-b609-c6dc3a9d9ac3 status: 201 Created code: 201 - duration: 246.270334ms + duration: 180.482078ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: PATCH response: proto: HTTP/2.0 @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -91,7 +91,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:22 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3054c469-c847-4b80-9a1e-79c17143ba34 + - 176d5ff1-0052-4080-bedb-7e74830b529f status: 200 OK code: 200 - duration: 109.101166ms + duration: 147.765775ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules method: PUT response: proto: HTTP/2.0 @@ -142,7 +142,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:22 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2efc986-3cf1-4501-812b-272257960f52 + - a2420ac1-f5a0-4678-93f8-d190d10cbce8 status: 200 OK code: 200 - duration: 97.781417ms + duration: 143.113447ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -182,7 +182,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -191,7 +191,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:22 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58c5983d-c351-4a48-b3d6-8a4d22f617a6 + - 7c5a655d-ce7c-4d6c-bf69-2221d834a638 status: 200 OK code: 200 - duration: 59.424958ms + duration: 84.506723ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -240,7 +240,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34d9f659-c8a9-4862-9b24-118c1a20b438 + - 0c6ff7c0-8560-4672-a80c-141ca49a196b status: 200 OK code: 200 - duration: 73.559959ms + duration: 117.408003ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -289,7 +289,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed837154-72ef-4eeb-94ff-67d432209fe6 + - eb4b72f4-132c-4001-ad42-35210243542f status: 200 OK code: 200 - duration: 64.850833ms + duration: 105.791212ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -338,7 +338,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e681d0-c6b9-46c4-b6ff-f68f07444775 + - b51ced20-985f-4098-917f-3bf624c662c6 status: 200 OK code: 200 - duration: 56.877959ms + duration: 113.939183ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -387,7 +387,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bc74b86-ea74-4320-9d0f-f634743e0292 + - 301d354f-4cf1-49b9-81ce-4a728ea94e2e status: 200 OK code: 200 - duration: 51.175459ms + duration: 97.833789ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -436,7 +436,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73709c6e-58e3-4d94-a7b4-d4698ac7c492 + - acf70787-1b0a-46c3-a87f-e07843855a3a status: 200 OK code: 200 - duration: 57.223417ms + duration: 113.817254ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -485,7 +485,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e3badac-90cc-42e5-9a65-f2535f81a6d1 + - 36d0f9f3-803e-4a71-9341-2a885e91d7bb status: 200 OK code: 200 - duration: 56.179208ms + duration: 81.461507ms - id: 10 request: proto: HTTP/1.1 @@ -514,7 +514,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -525,7 +525,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -534,7 +534,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Link: - ; rel="last" Server: @@ -546,12 +546,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2b7bed5-f03a-46ee-a255-1cee72586c03 + - 95306dc7-78bb-4e6c-9d07-9187b839eed5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 66.944291ms + duration: 120.068801ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -587,7 +587,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abae8ed4-4444-4406-96c0-3c9c27122aa9 + - 67c0f594-b576-4763-b27e-60cebf240064 status: 200 OK code: 200 - duration: 66.114375ms + duration: 85.174787ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -627,7 +627,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -636,7 +636,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a2b3c91-5d2a-4ec8-849b-3b55d58f2bf8 + - 0482aa95-d6f7-4acc-91fa-1dc041c0926b status: 200 OK code: 200 - duration: 71.892875ms + duration: 95.863098ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -685,7 +685,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:23 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d844a03-30c8-4d76-9129-4a7879233b46 + - c73030f3-1c2e-4bec-82b5-7c3f88737f34 status: 200 OK code: 200 - duration: 55.761542ms + duration: 102.999251ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -725,7 +725,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -734,7 +734,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 045d66dc-4ecd-4675-a66e-60a9b1032136 + - 9cf8782a-65b9-4ca3-a728-7f7887a11820 status: 200 OK code: 200 - duration: 57.569166ms + duration: 109.908831ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -774,7 +774,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -783,7 +783,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cee95ced-f52b-414a-ae28-f70e12d499ef + - ca4c1d77-8ee5-4b32-8b25-6381a80a3771 status: 200 OK code: 200 - duration: 68.642708ms + duration: 100.706244ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -823,7 +823,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -832,7 +832,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 485986f8-bcc3-45d7-be20-827b1a616aa2 + - 50f0090a-f30e-4fa7-9b93-ec1b838db22f status: 200 OK code: 200 - duration: 61.240666ms + duration: 105.54891ms - id: 17 request: proto: HTTP/1.1 @@ -861,7 +861,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -872,7 +872,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -881,7 +881,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Link: - ; rel="last" Server: @@ -893,12 +893,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3901ba0b-d324-446a-b659-72f09187b97d + - e36c8fcb-8cc3-4eb0-91f4-c0c7c390082f X-Total-Count: - "1" status: 200 OK code: 200 - duration: 80.519833ms + duration: 115.337364ms - id: 18 request: proto: HTTP/1.1 @@ -914,8 +914,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -925,7 +925,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -934,7 +934,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -944,10 +944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c83e301-5dba-4658-908f-aa109ee86930 + - 9b7dbdac-0ace-4508-aa82-ca8c0191b30e status: 200 OK code: 200 - duration: 61.131083ms + duration: 86.442552ms - id: 19 request: proto: HTTP/1.1 @@ -963,8 +963,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -983,7 +983,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -993,10 +993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717b8d37-9051-4e6e-a133-737a20885dc9 + - e86405b4-e235-4e10-9943-2177e26ccd53 status: 200 OK code: 200 - duration: 80.333875ms + duration: 130.413388ms - id: 20 request: proto: HTTP/1.1 @@ -1012,8 +1012,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1032,7 +1032,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1042,10 +1042,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ae91eb-a6b8-4617-9cfb-503ba2aff9d2 + - a2fb2582-ff39-4cae-9720-efe970f68b71 status: 200 OK code: 200 - duration: 73.732584ms + duration: 98.796825ms - id: 21 request: proto: HTTP/1.1 @@ -1061,8 +1061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1072,7 +1072,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1081,7 +1081,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1091,10 +1091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cccba79-33c9-4847-92d9-3b0f7be9e03e + - 3c8aefa0-4854-483d-b7c6-16e4ad686131 status: 200 OK code: 200 - duration: 60.148833ms + duration: 121.336017ms - id: 22 request: proto: HTTP/1.1 @@ -1110,8 +1110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1130,7 +1130,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1140,10 +1140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 391a3660-2908-4cc5-9de7-510e5308ceb4 + - 3b1cbfcc-9ae4-4041-acf8-1db1196a953a status: 200 OK code: 200 - duration: 75.564917ms + duration: 118.914639ms - id: 23 request: proto: HTTP/1.1 @@ -1159,8 +1159,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1170,7 +1170,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1179,7 +1179,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1189,10 +1189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ff7342-a7e9-4c63-ada5-ac4dccbd4220 + - d6b3e9d5-fbf6-40ef-a3a9-c85d414c14b2 status: 200 OK code: 200 - duration: 59.029959ms + duration: 101.422147ms - id: 24 request: proto: HTTP/1.1 @@ -1208,7 +1208,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -1219,7 +1219,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -1228,7 +1228,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Link: - ; rel="last" Server: @@ -1240,12 +1240,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67c6fc2c-67f5-43dc-b6b4-f35af0134071 + - e96c667c-a72d-46f1-b364-2ed866e76544 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 69.3935ms + duration: 123.432446ms - id: 25 request: proto: HTTP/1.1 @@ -1261,8 +1261,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1281,7 +1281,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1291,10 +1291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da0ce5a-7a63-4b5c-a957-70fbaf4acf66 + - 7f39c671-3067-4f03-9b28-5ce4f49132db status: 200 OK code: 200 - duration: 72.105833ms + duration: 103.25457ms - id: 26 request: proto: HTTP/1.1 @@ -1310,8 +1310,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1321,7 +1321,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1330,7 +1330,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1340,10 +1340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 702aefcd-d2b3-4c8d-9ce9-1595cf5b1d9b + - 6ad5d2ba-04a1-4878-ada0-e2f2b73b0797 status: 200 OK code: 200 - duration: 62.178042ms + duration: 97.747439ms - id: 27 request: proto: HTTP/1.1 @@ -1359,8 +1359,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1379,7 +1379,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:24 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1389,10 +1389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 289ce3a0-60d6-4ece-b814-c1ead0e0d3ff + - 8efb1346-db88-4049-be48-95aeb9901c81 status: 200 OK code: 200 - duration: 97.707958ms + duration: 128.0979ms - id: 28 request: proto: HTTP/1.1 @@ -1408,8 +1408,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1419,7 +1419,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1428,7 +1428,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1438,10 +1438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1986bf6f-13d6-4a1f-89a6-bb8a8f930be7 + - 993e0f68-cabd-4979-9727-f1022b66b4ab status: 200 OK code: 200 - duration: 64.507417ms + duration: 100.610415ms - id: 29 request: proto: HTTP/1.1 @@ -1457,8 +1457,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1477,7 +1477,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1487,10 +1487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8795e41e-358c-4c74-afb8-dfb94713fbcc + - 45c736e6-c522-467b-9974-f9fc8eedceea status: 200 OK code: 200 - duration: 60.235416ms + duration: 85.863739ms - id: 30 request: proto: HTTP/1.1 @@ -1506,8 +1506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1517,7 +1517,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1526,7 +1526,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1536,10 +1536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eef638cd-2ab1-498b-b27c-8602c07f0631 + - c27153ec-1203-4456-b223-a53677e6de61 status: 200 OK code: 200 - duration: 69.058708ms + duration: 111.18813ms - id: 31 request: proto: HTTP/1.1 @@ -1555,7 +1555,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -1566,7 +1566,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -1575,7 +1575,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Link: - ; rel="last" Server: @@ -1587,12 +1587,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c5a8437-f1b2-45a5-ac5c-77b49b546f7c + - dc0136cb-0584-4089-8be5-bd4383110aa2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 72.927584ms + duration: 135.931241ms - id: 32 request: proto: HTTP/1.1 @@ -1608,8 +1608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1617,18 +1617,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 583 + content_length: 1536 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - - "583" + - "1536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1638,10 +1638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af994f05-3950-40a8-9236-fca1236503b8 + - 0a7dbc83-0692-4a16-9428-63a57f08c761 status: 200 OK code: 200 - duration: 60.304333ms + duration: 102.337723ms - id: 33 request: proto: HTTP/1.1 @@ -1657,8 +1657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1666,18 +1666,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1536 + content_length: 583 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1536" + - "583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1687,10 +1687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20d09872-dfc6-4862-84f4-17d585a2bce4 + - a34ae7e6-ec26-4e13-96c1-cf4c340acbee status: 200 OK code: 200 - duration: 76.282666ms + duration: 101.369238ms - id: 34 request: proto: HTTP/1.1 @@ -1706,8 +1706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1726,7 +1726,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1736,10 +1736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb48f6f8-f2b2-4118-ae0f-29c4d99e2e53 + - 81ae43e9-c3a7-41b0-9cb8-90e7c37a539a status: 200 OK code: 200 - duration: 87.554959ms + duration: 135.896025ms - id: 35 request: proto: HTTP/1.1 @@ -1755,8 +1755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1766,7 +1766,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1775,7 +1775,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1785,10 +1785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d097707-dd19-4694-98d4-ae185baf95f7 + - 3ef03978-92de-4a71-83c9-f091351cea1c status: 200 OK code: 200 - duration: 65.272625ms + duration: 87.147635ms - id: 36 request: proto: HTTP/1.1 @@ -1804,8 +1804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1815,7 +1815,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1824,7 +1824,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1834,10 +1834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab0c1c57-1640-49a1-8be3-4ff21fdd04bc + - 451e2b84-505d-49f0-800f-f23b32c8372d status: 200 OK code: 200 - duration: 63.7085ms + duration: 103.320535ms - id: 37 request: proto: HTTP/1.1 @@ -1853,8 +1853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -1864,7 +1864,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -1873,7 +1873,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1883,10 +1883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80008ba3-379d-4122-b691-000f834f7b4c + - 2ca39c89-b476-4fa7-8429-dc572bc6fed1 status: 200 OK code: 200 - duration: 60.380708ms + duration: 84.859658ms - id: 38 request: proto: HTTP/1.1 @@ -1902,7 +1902,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -1913,7 +1913,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -1922,7 +1922,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Link: - ; rel="last" Server: @@ -1934,12 +1934,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18950862-2920-4ca3-808a-c3e755df5618 + - ebf45cc7-7720-4f58-9c0b-e4632c0fc71c X-Total-Count: - "1" status: 200 OK code: 200 - duration: 65.90725ms + duration: 146.005011ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1975,7 +1975,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1985,10 +1985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dab44bcd-a289-4a0a-aa84-4c350889dd9d + - e010c8bb-910d-4bc6-9dad-3d6c3a5eaba6 status: 200 OK code: 200 - duration: 61.068458ms + duration: 103.526802ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2015,7 +2015,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -2024,7 +2024,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2034,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5d3320d-6ed1-484e-8787-1f5327c1fe50 + - eef04df8-48af-4e98-8f78-09a190840208 status: 200 OK code: 200 - duration: 60.3365ms + duration: 88.726744ms - id: 41 request: proto: HTTP/1.1 @@ -2053,8 +2053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2073,7 +2073,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:25 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2083,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9697454-4fb2-4323-b7c8-a08e09022ef7 + - db976a3a-1ebc-4d0b-8579-7f46b6ad592b status: 200 OK code: 200 - duration: 67.655ms + duration: 93.669037ms - id: 42 request: proto: HTTP/1.1 @@ -2102,8 +2102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2113,7 +2113,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -2122,7 +2122,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2132,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fd1e64e-ee7c-4774-b7e2-56898d2a7751 + - f61870f4-9e0e-450d-a881-4d36a0691ff1 status: 200 OK code: 200 - duration: 56.068958ms + duration: 93.337496ms - id: 43 request: proto: HTTP/1.1 @@ -2151,8 +2151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2171,7 +2171,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2181,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8221c0d-42c3-4fa2-97c6-165e7adf145d + - d72c493c-4c02-4fd6-811e-1f5ed3de114a status: 200 OK code: 200 - duration: 64.510792ms + duration: 112.104468ms - id: 44 request: proto: HTTP/1.1 @@ -2200,8 +2200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2211,7 +2211,7 @@ interactions: trailer: {} content_length: 583 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "583" @@ -2220,7 +2220,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2230,10 +2230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 359ab48e-c038-47b0-b3f7-ab5200841a51 + - 810954ec-cd4f-45ef-9fec-b63ba351c571 status: 200 OK code: 200 - duration: 76.285542ms + duration: 90.707668ms - id: 45 request: proto: HTTP/1.1 @@ -2249,7 +2249,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups?name=tf-security-group&page=1 method: GET response: @@ -2260,7 +2260,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_groups":[{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' + body: '{"security_groups":[{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "586" @@ -2269,7 +2269,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Link: - ; rel="last" Server: @@ -2281,12 +2281,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 998d2dfd-e2a1-44cf-bb5d-0fc5b7e45d17 + - 5def58b8-1f15-4ad2-8b9b-592831b45000 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 78.702875ms + duration: 106.138388ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2311,18 +2311,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 583 + content_length: 1536 uncompressed: false - body: '{"security_group":{"creation_date":"2025-09-08T07:27:22.683544+00:00","description":null,"enable_default_security":true,"id":"d9612a17-e907-43de-a7db-b14ac61909a2","inbound_default_policy":"accept","modification_date":"2025-09-08T07:27:22.683544+00:00","name":"tf-security-group","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","organization_default":false,"outbound_default_policy":"accept","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - - "583" + - "1536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2332,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c13f7a5-67a4-48e1-9e32-b1b5608d24c1 + - e6f6d657-e8e2-4acc-aedf-5e3db9c8a346 status: 200 OK code: 200 - duration: 75.178583ms + duration: 112.874662ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2360,18 +2360,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1536 + content_length: 583 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"security_group":{"creation_date":"2025-10-15T15:03:19.681123+00:00","description":null,"enable_default_security":true,"id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:19.681123+00:00","name":"tf-security-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1536" + - "583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2381,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40ea09d9-b331-4462-a938-b30305cfb343 + - 049d68b0-fda3-4702-b523-68cb53cdcaec status: 200 OK code: 200 - duration: 77.663209ms + duration: 112.265119ms - id: 48 request: proto: HTTP/1.1 @@ -2400,8 +2400,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -2420,7 +2420,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2430,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fb1c1e9-0da7-4cb7-9aab-7810273fbc2e + - eb74d1a8-03fb-43c0-b2de-6c4899caa79d status: 200 OK code: 200 - duration: 74.916292ms + duration: 99.780923ms - id: 49 request: proto: HTTP/1.1 @@ -2449,8 +2449,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: DELETE response: proto: HTTP/2.0 @@ -2467,7 +2467,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2477,10 +2477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5233478a-3f59-4424-8cd0-aa376d706043 + - 58e5b5f5-bcef-4cb4-a8a8-66d9d069807f status: 204 No Content code: 204 - duration: 101.466291ms + duration: 150.486542ms - id: 50 request: proto: HTTP/1.1 @@ -2496,8 +2496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2507,7 +2507,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d9612a17-e907-43de-a7db-b14ac61909a2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' headers: Content-Length: - "151" @@ -2516,7 +2516,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2526,10 +2526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5f28e3f-cbf1-4d7d-a9b6-413e890ccff1 + - 1f8e89b0-e8af-40d0-a487-af9cc4215d3b status: 404 Not Found code: 404 - duration: 34.244292ms + duration: 28.854657ms - id: 51 request: proto: HTTP/1.1 @@ -2545,8 +2545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2556,7 +2556,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d9612a17-e907-43de-a7db-b14ac61909a2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' headers: Content-Length: - "151" @@ -2565,7 +2565,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2575,10 +2575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0673c804-d947-4f93-b9e3-c75b0ac96d3b + - 68c05405-0074-4f2c-ba1f-dd55ceea78da status: 404 Not Found code: 404 - duration: 33.675709ms + duration: 34.583685ms - id: 52 request: proto: HTTP/1.1 @@ -2594,8 +2594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d9612a17-e907-43de-a7db-b14ac61909a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/52f7999e-76d3-4bee-9d01-c29e3ecf8dfa method: GET response: proto: HTTP/2.0 @@ -2605,7 +2605,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d9612a17-e907-43de-a7db-b14ac61909a2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"52f7999e-76d3-4bee-9d01-c29e3ecf8dfa","type":"not_found"}' headers: Content-Length: - "151" @@ -2614,7 +2614,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:27:26 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2624,7 +2624,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9158db50-a84c-4124-80af-f928f47727a2 + - 05e524e9-7897-4843-87ea-9b31b3b5674f status: 404 Not Found code: 404 - duration: 31.6135ms + duration: 34.689683ms diff --git a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml index f302f1a5d..4039a3bd2 100644 --- a/internal/services/instance/testdata/data-source-server-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be2178de-5162-44c4-998e-884e7cb7c6ff + - f12083bf-f228-4295-b089-ab5cc75d636a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 56.6927ms + duration: 46.894561ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aae1493-a345-4cdc-869a-847e9ca47e3e + - f4efb7bd-5d91-4f24-9506-07580052c0f5 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 66.512611ms + duration: 89.538683ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdab8266-2b65-4ca6-9e43-f958082f8d3f + - 82ba07ac-817e-4898-a6a0-65145c7dd632 status: 200 OK code: 200 - duration: 45.148164ms + duration: 44.927182ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_server","basic"]}' + body: '{"name":"tf-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_server","basic"]}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf7390ff-1c8a-4057-adcb-ecad352fd913 + - a4a5c89f-4d4b-4bf4-8cab-77636c47f218 status: 201 Created code: 201 - duration: 726.688108ms + duration: 2.022191008s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f1f71d-3cc1-435a-afc5-5d61ac9f4490 + - 867df1e8-9ce3-42a8-9f1d-0839e6622588 status: 200 OK code: 200 - duration: 97.614586ms + duration: 141.20393ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c7a5a02-83b7-460d-9468-332bbb6f3a10 + - 47510240-fb42-48ac-98d2-ef67073bcb53 status: 200 OK code: 200 - duration: 104.069703ms + duration: 152.866807ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e24d5e1-a03b-4644-a4de-3ebf256ff486 + - 17254826-4d39-4d43-9dca-dbb3bdea0ac3 status: 200 OK code: 200 - duration: 91.648333ms + duration: 141.009136ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7d9454-f47a-4795-92ad-73d4e50cfc97 + - e03346ab-8b87-45ad-9cf4-474368b10c17 status: 404 Not Found code: 404 - duration: 26.833066ms + duration: 24.602678ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f29e4156-e178-480c-83cc-71c87611d7c3 + - 7198a7aa-cde6-471f-b871-2364b536b7c6 status: 200 OK code: 200 - duration: 46.34978ms + duration: 80.598032ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8c58789-2e08-4a5d-857f-52ab69f2bb91 + - 3e368f96-47d3-467e-ac8b-a2ae2f2b0e1b status: 200 OK code: 200 - duration: 51.935677ms + duration: 100.323716ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdab0209-56cf-4aa3-acc1-fd7f3327af4a + - 2d68d167-dbf0-43f1-928a-901956c28a65 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.229511ms + duration: 111.891824ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6f9a9e7-7de8-4297-9d27-8b6e9a7111ba + - f0f373af-9c51-40a6-8a20-232c8da5baf2 status: 200 OK code: 200 - duration: 88.229379ms + duration: 151.962222ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9af9e6f2-13e0-4368-8fee-924ee7a0a376 + - 52fd3d0b-7fba-4c67-b15f-be310ba5319c status: 404 Not Found code: 404 - duration: 28.968483ms + duration: 28.594371ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fafd28bf-2dc1-4e99-b75d-a119bca77bce + - 5424ad98-e2bb-42c5-9c67-d20e6a15c2c3 status: 200 OK code: 200 - duration: 37.605462ms + duration: 91.172167ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1582172d-6d56-4ba0-8757-37315566f094 + - fb5cb214-6f0f-41b9-b9a1-1d871767279b status: 200 OK code: 200 - duration: 67.803321ms + duration: 100.95486ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28eb16a5-fde4-4e9a-aa3f-0edc4bdb49ef + - 9848d676-691b-4489-9f0c-7f041acfd965 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.619219ms + duration: 101.40848ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25854809-563b-4e96-8fa2-7663d42571da + - 504023dc-5e6a-4d0c-b01e-23d544e26bba status: 200 OK code: 200 - duration: 101.740046ms + duration: 142.343478ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 270699d5-79af-4699-9fab-423814cb7bd1 + - ceac6757-a05b-4a8d-b69e-72bb0921586d status: 404 Not Found code: 404 - duration: 29.451206ms + duration: 36.660825ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eff716e-4531-4a32-a787-6d2c7cf436eb + - 6772cf64-2c13-4f81-a28a-dac35c667b22 status: 200 OK code: 200 - duration: 38.377412ms + duration: 80.357542ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 689f328f-61c7-42ba-b8c1-38d3f77b0388 + - ef8419bb-cf24-4dfd-92e3-a9076d67e20d status: 200 OK code: 200 - duration: 54.109354ms + duration: 135.160401ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 443054dc-756e-4897-bd7d-f0435529da19 + - be0c7ac0-ae17-450d-bff4-c86d29fc344a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.723864ms + duration: 99.313813ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8357a5e-060b-4145-acae-4ce4056de580 + - 72b98122-c611-49e4-a1e1-8526b5c3c11a status: 200 OK code: 200 - duration: 97.966045ms + duration: 129.541687ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1127,22 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - - "1775" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,12 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7b99d11-827a-42cd-9b8e-8c1e2e8d4aa8 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 123.813817ms + - 9da61a4f-3831-4495-b033-670eb7de219e + status: 404 Not Found + code: 404 + duration: 26.655146ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -1180,20 +1176,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3562 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.287658+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"63d0e0c2-1754-4798-92f9-f8032a755278","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:51","maintenances":[],"modification_date":"2025-10-15T15:04:14.287658+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"85ba8978-803a-42f5-ad60-b33bca13da08","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3562" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca156942-5296-42b5-a490-eb205abec281 - status: 404 Not Found - code: 404 - duration: 27.161194ms + - 0a314dd7-9ca0-4b4e-8e95-0d4d9ce64678 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 198.374371ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edd26db2-8590-4c6a-87fd-537040045a32 + - f820ed42-9d79-4e89-8677-e37eb33a3e58 status: 200 OK code: 200 - duration: 39.504981ms + duration: 92.040917ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1772 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7328691-a344-4d71-a52f-dc749f1b18d9 + - 3cb543f5-86de-41a0-97cc-b6701f9d6a1f status: 200 OK code: 200 - duration: 48.678424ms + duration: 139.81024ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1772" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d33bd53-1d7a-4bca-96a9-c4e4c2b8e49f + - 49be0ff3-200c-416c-ba12-8dd856a8b4e5 status: 200 OK code: 200 - duration: 107.558626ms + duration: 102.793177ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36bbb970-2ff4-4f3c-9eb2-de4744abc441 + - b9e4b6a6-65e1-4ac1-9ace-6cd6c555dd19 status: 404 Not Found code: 404 - duration: 30.530806ms + duration: 24.800217ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -1436,11 +1436,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,12 +1448,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dd03660-8d52-4085-ba8b-443e7d13bdef + - 800b9714-056e-4af7-83ec-9d1883c5314c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.907287ms + duration: 90.080993ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1480,7 +1480,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1489,9 +1489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ca0d2a2-caee-4047-af6f-0e2a29adaa3c + - fede3825-7ad2-49fb-ad08-96939969a511 status: 200 OK code: 200 - duration: 39.558961ms + duration: 91.113259ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -1538,9 +1538,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 067cedb3-9a9d-4319-9e49-22ab145da6e3 + - 3b8496ed-05fa-47b9-ad57-7615da4fc883 status: 200 OK code: 200 - duration: 69.599729ms + duration: 80.829748ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -1587,11 +1587,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,12 +1599,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41686469-1c75-45f6-a2a9-2ce53f343ca3 + - d1071179-2535-4e9d-b592-e3479054f3c1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.199747ms + duration: 96.625624ms - id: 32 request: proto: HTTP/1.1 @@ -1621,7 +1621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1631,7 +1631,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1640,9 +1640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1650,10 +1650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e6f7ebd-f99e-46a0-b43a-bca037e3d86f + - 7a28653e-62ca-4da9-92b5-35160f46a3df status: 200 OK code: 200 - duration: 105.377935ms + duration: 148.368797ms - id: 33 request: proto: HTTP/1.1 @@ -1670,7 +1670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1680,7 +1680,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1689,9 +1689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,10 +1699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fb9d938-115f-4288-87d4-0c286460813b + - 35f24076-00b8-4143-bb7f-a527ef0d661c status: 200 OK code: 200 - duration: 106.376574ms + duration: 134.601344ms - id: 34 request: proto: HTTP/1.1 @@ -1719,7 +1719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1729,7 +1729,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1738,9 +1738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,10 +1748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57c618db-f8a6-4f9c-a17c-13361f4d287f + - 72784b72-79f3-4e6f-b598-8f9f1a516b32 status: 200 OK code: 200 - duration: 89.435282ms + duration: 141.256904ms - id: 35 request: proto: HTTP/1.1 @@ -1768,7 +1768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1776,22 +1776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - - "1775" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,12 +1797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 829f2b52-efbd-40c4-b854-c96e0bbfed64 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 106.098138ms + - c236ac7c-2954-4c3c-add3-37a8c66d3657 + status: 404 Not Found + code: 404 + duration: 24.878053ms - id: 36 request: proto: HTTP/1.1 @@ -1821,7 +1817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -1829,20 +1825,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3562 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.287658+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"63d0e0c2-1754-4798-92f9-f8032a755278","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:51","maintenances":[],"modification_date":"2025-10-15T15:04:14.287658+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"85ba8978-803a-42f5-ad60-b33bca13da08","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3562" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fdf0f14-ff4c-44cb-85c7-283b311abb90 - status: 404 Not Found - code: 404 - duration: 25.331846ms + - bec7b05d-48d6-4689-a75b-d833f0f94cd1 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 166.94168ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1880,7 +1880,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1889,9 +1889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a1312ce-66a2-43da-a02e-4e7dce770ae1 + - a281d234-e62c-46af-ab62-55879c796b02 status: 200 OK code: 200 - duration: 43.302024ms + duration: 95.058987ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -1929,7 +1929,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1938,9 +1938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 238d0254-0b90-4c22-9958-fa9071b28ae3 + - d7a5a058-04ae-4ec1-a711-d72a70c0e014 status: 200 OK code: 200 - duration: 94.669138ms + duration: 135.002117ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -1976,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9e61b18-eeb1-4d1d-870b-b462d9f9db09 - status: 200 OK - code: 200 - duration: 54.862128ms + - cf4d514b-1661-4c86-be68-82cba5166bc5 + status: 404 Not Found + code: 404 + duration: 27.63326ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +2017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -2025,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "143" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2e6ef4d-81f9-4bf3-8852-7800ab87c239 - status: 404 Not Found - code: 404 - duration: 37.66925ms + - e1066f02-37b8-4f0c-9a18-57caee43a230 + status: 200 OK + code: 200 + duration: 110.14383ms - id: 41 request: proto: HTTP/1.1 @@ -2066,7 +2066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2074,22 +2074,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,12 +2095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acaafccb-893e-4d1f-85ad-645d1f26f088 - X-Total-Count: - - "0" + - dc3578c0-c614-4f72-a9b6-b1a6f1b12523 status: 200 OK code: 200 - duration: 46.869643ms + duration: 110.801814ms - id: 42 request: proto: HTTP/1.1 @@ -2119,7 +2115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -2127,20 +2123,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2148,10 +2146,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1af94c40-34f6-4184-a899-af8e015d8d73 + - f02dcadf-6932-4e82-bf2f-49d54493b8d5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 45.013694ms + duration: 109.949345ms - id: 43 request: proto: HTTP/1.1 @@ -2168,7 +2168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -2187,9 +2187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2197,10 +2197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19a11487-580b-4cef-894f-f14af4ec57a5 + - 548220aa-7db7-47d5-9a5c-2ed325cf61fd status: 200 OK code: 200 - duration: 49.052887ms + duration: 95.654333ms - id: 44 request: proto: HTTP/1.1 @@ -2217,7 +2217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -2236,11 +2236,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,12 +2248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b806247-f73f-433c-9dd9-6173151e2374 + - 67f1cc62-a871-4f35-bd33-7ead87bde94f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.505734ms + duration: 87.243103ms - id: 45 request: proto: HTTP/1.1 @@ -2270,7 +2270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -2280,7 +2280,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -2289,9 +2289,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2299,10 +2299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa0c2b71-4a54-4c5a-a456-fd066216839f + - 9bf4e2bc-0187-4f42-b598-46e4e7d4ebf5 status: 200 OK code: 200 - duration: 88.315268ms + duration: 171.554879ms - id: 46 request: proto: HTTP/1.1 @@ -2319,7 +2319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2329,7 +2329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -2338,9 +2338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2348,10 +2348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a267c2f-8d7f-43f7-88e4-c4f65f18af0c + - daa3d556-4b8b-4e40-8d71-47057af3d89b status: 404 Not Found code: 404 - duration: 29.096489ms + duration: 31.625034ms - id: 47 request: proto: HTTP/1.1 @@ -2368,7 +2368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2378,7 +2378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2387,9 +2387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2397,10 +2397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76f38271-825f-4585-bb2c-4a8e3866ec26 + - a725c99b-f711-41cf-9ce4-5d72157ee3f2 status: 200 OK code: 200 - duration: 44.081928ms + duration: 81.843038ms - id: 48 request: proto: HTTP/1.1 @@ -2417,7 +2417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -2436,9 +2436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2446,10 +2446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1d408d3-0b62-4309-9012-2e69eedfce37 + - e6f28810-037a-4e30-9d1f-83361c2b9041 status: 200 OK code: 200 - duration: 54.195233ms + duration: 114.44252ms - id: 49 request: proto: HTTP/1.1 @@ -2466,7 +2466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -2485,11 +2485,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,12 +2497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ff30a43-1c85-4bd5-8cdf-4494c27214ef + - 4f5e7ffb-5770-4080-8fb5-2849ad0a316f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.386359ms + duration: 92.246795ms - id: 50 request: proto: HTTP/1.1 @@ -2519,7 +2519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -2527,22 +2527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1775 + content_length: 1772 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1775" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2550,12 +2548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a1ae6eb-7e27-447a-a8dd-4c25795a378d - X-Total-Count: - - "1" + - 3363d780-b0d9-48d3-afc6-e1aa83d56eb1 status: 200 OK code: 200 - duration: 116.688386ms + duration: 129.986684ms - id: 51 request: proto: HTTP/1.1 @@ -2572,7 +2568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2580,20 +2576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - - "1772" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2601,10 +2597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2947d2d9-0ad3-4e4d-b1be-0a3a584a8eab - status: 200 OK - code: 200 - duration: 128.883517ms + - 5624c47e-6afc-4f31-a9d0-cbf7d36ac429 + status: 404 Not Found + code: 404 + duration: 27.27048ms - id: 52 request: proto: HTTP/1.1 @@ -2621,7 +2617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2629,20 +2625,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3562 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.287658+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"63d0e0c2-1754-4798-92f9-f8032a755278","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:51","maintenances":[],"modification_date":"2025-10-15T15:04:14.287658+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"85ba8978-803a-42f5-ad60-b33bca13da08","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3562" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2650,10 +2648,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2eef02cd-6001-4154-8c7c-ad5b2dc54112 - status: 404 Not Found - code: 404 - duration: 21.992329ms + - 5ad9a249-486a-4b4f-80a2-c7a15a7cd675 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 164.88767ms - id: 53 request: proto: HTTP/1.1 @@ -2670,7 +2670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2680,7 +2680,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2689,9 +2689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2699,10 +2699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 522e2816-3508-4f9b-b1dd-7f67b9fd9c94 + - 7644439c-cd24-4de0-a92a-da77cbe47448 status: 200 OK code: 200 - duration: 34.897285ms + duration: 89.910104ms - id: 54 request: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -2729,7 +2729,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -2738,9 +2738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2748,10 +2748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4701d2d0-f417-475f-b5dd-e66ff0111836 + - bbf5078d-a501-42cf-b755-c16a42467c6a status: 200 OK code: 200 - duration: 98.088692ms + duration: 136.448008ms - id: 55 request: proto: HTTP/1.1 @@ -2768,7 +2768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2776,20 +2776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,10 +2797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218d091b-268c-4147-9fa5-ab69109769df - status: 200 OK - code: 200 - duration: 59.274421ms + - beceee24-2d4e-469e-b3b4-44606f72d925 + status: 404 Not Found + code: 404 + duration: 28.396161ms - id: 56 request: proto: HTTP/1.1 @@ -2817,7 +2817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -2825,20 +2825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 17 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"user_data":[]}' headers: Content-Length: - - "143" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,10 +2846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a9c7d9-c47f-440a-bd3a-f59608f92cf3 - status: 404 Not Found - code: 404 - duration: 32.239772ms + - 0c09579c-ab68-4dd7-9745-ad058065dd6b + status: 200 OK + code: 200 + duration: 102.498205ms - id: 57 request: proto: HTTP/1.1 @@ -2866,7 +2866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -2876,7 +2876,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2885,9 +2885,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2895,10 +2895,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aec62a0-17d7-495f-9137-90ff5e53166c + - 0079f574-13ec-4434-8968-38276e4c537d status: 200 OK code: 200 - duration: 46.783933ms + duration: 104.736362ms - id: 58 request: proto: HTTP/1.1 @@ -2915,7 +2915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -2934,11 +2934,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2946,12 +2946,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fde71926-b302-40b4-9ca1-104ca9bb6345 + - a06049af-8c63-4881-981d-83c9cd82b7ce X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.835012ms + duration: 110.546085ms - id: 59 request: proto: HTTP/1.1 @@ -2968,7 +2968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/user_data method: GET response: proto: HTTP/2.0 @@ -2987,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2997,10 +2997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44f3cf74-0804-46ca-a3e7-37d570aa1c0a + - 05a28e4f-452a-4b9c-897c-1dd445cbae25 status: 200 OK code: 200 - duration: 49.528759ms + duration: 108.835838ms - id: 60 request: proto: HTTP/1.1 @@ -3017,7 +3017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/private_nics method: GET response: proto: HTTP/2.0 @@ -3036,11 +3036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3048,12 +3048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ffb97de-925c-4f7e-814d-f6b0f531547e + - 0f3a07c0-528d-4a3f-b8d9-9c82d7a0d9d0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.345757ms + duration: 95.810867ms - id: 61 request: proto: HTTP/1.1 @@ -3070,7 +3070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3080,7 +3080,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:04:56.336337+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -3089,9 +3089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3099,10 +3099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbff86eb-a5ce-4882-8863-83e389e1c16a + - b6b81b05-3c1b-47f2-8dec-dbd9e44c1d4c status: 200 OK code: 200 - duration: 130.652854ms + duration: 156.381132ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +3119,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1772 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:51.438754+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1772" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac0fed01-6aba-4187-accf-cd7a1c33008c + status: 200 OK + code: 200 + duration: 164.716732ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -3129,7 +3178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.426539Z","id":"38939c5d-42bc-459d-ab9e-c56bfe79dcfb","product_resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.426539Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:51.572123Z","id":"8d20833e-6c6e-4c46-abea-5adcc4db0778","product_resource_id":"af5317ea-c305-4003-827a-564cd7468629","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:51.572123Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3138,9 +3187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,11 +3197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2db8fe3e-9dba-48e0-98b2-8f5a7fbde2d5 + - 1204f80f-48e8-4f36-be5d-ee1bb21660ea status: 200 OK code: 200 - duration: 39.388965ms - - id: 63 + duration: 92.37175ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3170,7 +3219,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/action method: POST response: proto: HTTP/2.0 @@ -3180,7 +3229,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action","href_result":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712","id":"2383e87d-6c8d-4f36-9f89-8fb0036353b8","progress":0,"started_at":"2025-10-08T23:05:01.207976+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/af5317ea-c305-4003-827a-564cd7468629/action","href_result":"/servers/af5317ea-c305-4003-827a-564cd7468629","id":"a761a9ce-d2e2-4d17-90a8-073232d6482a","progress":0,"started_at":"2025-10-15T15:04:58.652158+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -3189,11 +3238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2383e87d-6c8d-4f36-9f89-8fb0036353b8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a761a9ce-d2e2-4d17-90a8-073232d6482a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3201,11 +3250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efd31f01-4f08-42c6-9257-a9f4499935cf + - 699aa9d8-823e-4058-bf73-d87ec2961963 status: 202 Accepted code: 202 - duration: 260.139348ms - - id: 64 + duration: 248.028775ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3221,7 +3270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3231,7 +3280,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:00.990314+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:04:58.459366+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1794" @@ -3240,9 +3289,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3250,11 +3299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a57c4e35-4569-4b95-96d4-e865c0868375 + - 2a8bc006-700d-4caf-abba-3b14251584e4 status: 200 OK code: 200 - duration: 106.09885ms - - id: 65 + duration: 162.656669ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3270,7 +3319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3280,7 +3329,7 @@ interactions: trailer: {} content_length: 1928 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"501","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:03.353595+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"502","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:05:01.095405+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1928" @@ -3289,9 +3338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:05:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3299,11 +3348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 187b4b7a-169a-4d24-b4a3-1ae0fd058354 + - 4256c4fd-f4a3-453e-990d-05e621fbea34 status: 200 OK code: 200 - duration: 103.82754ms - - id: 66 + duration: 140.905623ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3321,7 +3370,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629/action method: POST response: proto: HTTP/2.0 @@ -3331,7 +3380,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712/action","href_result":"/servers/18aa7952-c195-46ea-8b43-d2b513bc1712","id":"c927640e-071b-4307-97ca-1a9108854361","progress":0,"started_at":"2025-10-08T23:05:06.808157+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/af5317ea-c305-4003-827a-564cd7468629/action","href_result":"/servers/af5317ea-c305-4003-827a-564cd7468629","id":"fc938b4b-75e5-40e0-965a-93847178b75c","progress":0,"started_at":"2025-10-15T15:05:04.257016+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3340,11 +3389,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:05:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c927640e-071b-4307-97ca-1a9108854361 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc938b4b-75e5-40e0-965a-93847178b75c Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3352,11 +3401,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083240c7-8008-4e9e-a900-b92ec3fcaa73 + - faa96088-4925-4469-865a-883c8d12ea12 status: 202 Accepted code: 202 - duration: 391.871972ms - - id: 67 + duration: 295.160066ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3372,7 +3421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3382,7 +3431,7 @@ interactions: trailer: {} content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.336337+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"18aa7952-c195-46ea-8b43-d2b513bc1712","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"501","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:95","maintenances":[],"modification_date":"2025-10-08T23:05:06.463075+00:00","name":"tf-server","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"502","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:05:04.015867+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1891" @@ -3391,9 +3440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:05:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3401,11 +3450,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2295fc97-da7c-481a-bdce-05115977f502 + - 356501f3-06a6-40dc-8474-ffd3ff764af1 status: 200 OK code: 200 - duration: 132.734536ms - - id: 68 + duration: 145.567004ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1891 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"502","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:05:04.015867+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1891" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ccb5b8f0-d9f8-45c4-906e-095b30fcc008 + status: 200 OK + code: 200 + duration: 149.274892ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3421,7 +3519,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1891 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:51.438754+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server","id":"af5317ea-c305-4003-827a-564cd7468629","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"502","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:81","maintenances":[],"modification_date":"2025-10-15T15:05:04.015867+00:00","name":"tf-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1891" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26101045-a95b-407f-b12d-fda6e60faf70 + status: 200 OK + code: 200 + duration: 168.544188ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3431,7 +3578,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' headers: Content-Length: - "143" @@ -3440,9 +3587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3450,11 +3597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5f808e2-de06-4f73-bc3b-e321fcba3d0d + - 0425733d-5fc3-45fc-b66b-6cff39ca9f7e status: 404 Not Found code: 404 - duration: 48.938472ms - - id: 69 + duration: 41.212546ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3470,7 +3617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -3480,7 +3627,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","type":"not_found"}' headers: Content-Length: - "143" @@ -3489,9 +3636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3499,11 +3646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 477aeb5f-693a-4575-a112-e9fca36a0233 + - 74be13ab-850c-497f-9cc9-d901e9847485 status: 404 Not Found code: 404 - duration: 33.047787ms - - id: 70 + duration: 28.820841ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3519,7 +3666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: GET response: proto: HTTP/2.0 @@ -3529,7 +3676,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.426539Z","id":"8a2bddda-b9d7-4cac-b344-7d448ba3cbae","last_detached_at":"2025-10-08T23:05:08.043358Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.043358Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:51.572123Z","id":"3b720c53-e502-4adb-a7c8-c13e0b2c84f8","last_detached_at":"2025-10-15T15:05:15.613794Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:15.613794Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3538,9 +3685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3548,11 +3695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b30b646-51fd-49aa-86cf-01b1fc65206e + - 29d31271-2905-4112-a70f-fd082579adf3 status: 200 OK code: 200 - duration: 44.54827ms - - id: 71 + duration: 128.715622ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3568,7 +3715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a2bddda-b9d7-4cac-b344-7d448ba3cbae + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3b720c53-e502-4adb-a7c8-c13e0b2c84f8 method: DELETE response: proto: HTTP/2.0 @@ -3585,9 +3732,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3595,11 +3742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17e1f2e0-3cae-48a0-9e45-2463d1de07a1 + - 5556a0eb-1fb5-44ac-b4a5-c9cae9ab97d1 status: 204 No Content code: 204 - duration: 73.532409ms - - id: 72 + duration: 161.279012ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3615,7 +3762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3625,7 +3772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' headers: Content-Length: - "143" @@ -3634,9 +3781,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3644,11 +3791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4044ac01-1e70-4a27-a35a-4a929dde9103 + - ebadde5e-9198-403a-b761-a1ad084a92c9 status: 404 Not Found code: 404 - duration: 63.817684ms - - id: 73 + duration: 45.926727ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3664,7 +3811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3674,7 +3821,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' headers: Content-Length: - "143" @@ -3683,9 +3830,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3693,11 +3840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a142e4-03c7-4a38-a924-55b6dcfd4730 + - 59f050cc-550d-478b-93b2-8e0ca2f5d08f status: 404 Not Found code: 404 - duration: 51.111226ms - - id: 74 + duration: 43.941905ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3713,7 +3860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/18aa7952-c195-46ea-8b43-d2b513bc1712 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/af5317ea-c305-4003-827a-564cd7468629 method: GET response: proto: HTTP/2.0 @@ -3723,7 +3870,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"18aa7952-c195-46ea-8b43-d2b513bc1712","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"af5317ea-c305-4003-827a-564cd7468629","type":"not_found"}' headers: Content-Length: - "143" @@ -3732,9 +3879,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3742,7 +3889,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cec9b8a-0747-48d7-b4b5-810dcca0dea2 + - fb037688-29a2-4f2f-82a5-398c79fab7d3 status: 404 Not Found code: 404 - duration: 51.99293ms + duration: 52.170304ms diff --git a/internal/services/instance/testdata/data-source-server-type-basic.cassette.yaml b/internal/services/instance/testdata/data-source-server-type-basic.cassette.yaml index f2b78b576..76c3b6b21 100644 --- a/internal/services/instance/testdata/data-source-server-type-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-type-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:57 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 799da526-ba3d-4c00-8cc1-e5980bbb206d + - d93d400e-6c99-4e5d-9128-915cb622b0c5 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 84.581234ms + duration: 31.894937ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17b9c40b-7d0d-4a5f-8737-eb953f85fff6 + - 260bf091-20ed-4d98-9255-d121715d86e4 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.378163ms + duration: 49.630223ms - id: 2 request: proto: HTTP/1.1 @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5464faf0-750f-4564-a6a0-6136b0fca0a7 + - 51b2a2a9-6022-4f1e-bbdc-2110896927de status: 200 OK code: 200 - duration: 27.150743ms + duration: 29.734949ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd05e5a-a7a4-41b2-8780-149662050da4 + - 14b17b6d-2767-4591-a12c-dcf4cb8d8229 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 104.115414ms + duration: 86.728975ms - id: 4 request: proto: HTTP/1.1 @@ -233,22 +233,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -256,12 +256,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07566aa4-3c68-4b2f-8c53-4de9e1ee78e2 + - b641dca3-d150-4933-99a7-6d186f758930 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 92.613817ms + duration: 77.527197ms - id: 5 request: proto: HTTP/1.1 @@ -286,22 +286,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -309,12 +309,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ed1357a-e905-4d20-88c6-07138bf9514e + - 39a59519-7c55-4049-85f3-09051f655e74 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.355651ms + duration: 49.717446ms - id: 6 request: proto: HTTP/1.1 @@ -339,22 +339,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -362,12 +362,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12facfeb-39d1-4347-a98a-36ca62e5af21 + - 82c5c43f-58b2-4f21-aeee-184e3a2835bf X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.671125ms + duration: 52.09295ms - id: 7 request: proto: HTTP/1.1 @@ -392,20 +392,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -413,10 +413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72a3e9d5-6628-4850-b876-84a1a20941e0 + - 02688b92-1772-4f3f-b7ca-9fe29e367dc5 status: 200 OK code: 200 - duration: 19.831008ms + duration: 29.885982ms - id: 8 request: proto: HTTP/1.1 @@ -441,22 +441,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -464,12 +464,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 536c74e6-ec42-4d38-bff2-d29b92cbe912 + - bf3101eb-0bfc-4acc-b54a-f4a506a95452 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 107.329199ms + duration: 92.946611ms - id: 9 request: proto: HTTP/1.1 @@ -494,22 +494,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -517,12 +517,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82eacf11-dcbe-4a59-8d65-37aed4291010 + - fbbfa821-9aac-4a86-8f43-94360d36006a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 104.223117ms + duration: 156.942523ms - id: 10 request: proto: HTTP/1.1 @@ -547,22 +547,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -570,12 +570,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d674d2c7-aaf1-4a4a-bac9-560dee766e9c + - 2fa71790-ba45-451a-a845-3fa8487a750a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 56.603579ms + duration: 58.554733ms - id: 11 request: proto: HTTP/1.1 @@ -600,22 +600,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:58 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -623,12 +623,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3a03a8d-d541-4589-9fd9-837f64270187 + - 766151d3-0876-4cd8-bb12-3f8473f17d93 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.400643ms + duration: 41.379497ms - id: 12 request: proto: HTTP/1.1 @@ -653,20 +653,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -674,10 +674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 343e7e47-d6c4-475e-afe9-09341947224c + - b14794ff-2585-4ddf-a6bf-408880fefb95 status: 200 OK code: 200 - duration: 24.815378ms + duration: 25.108156ms - id: 13 request: proto: HTTP/1.1 @@ -702,22 +702,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -725,12 +725,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9197a316-6ba1-4606-a1a5-7e0b4ea44de7 + - 44cf684e-8815-498f-b7a9-e5e875061f4c X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 112.60148ms + duration: 100.75049ms - id: 14 request: proto: HTTP/1.1 @@ -755,22 +755,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -778,12 +778,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbac9e35-730a-4dfc-8fd3-9bcb907e0cdb + - 12357b41-2470-4f81-b1d0-f6660ff77dd1 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 116.45216ms + duration: 105.210041ms - id: 15 request: proto: HTTP/1.1 @@ -808,22 +808,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -831,12 +831,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c304d4c7-5ede-4ed5-8853-44d506f99615 + - f3b0e193-87f5-411c-a2b2-1ee299cd5cc6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.053222ms + duration: 128.726302ms - id: 16 request: proto: HTTP/1.1 @@ -861,22 +861,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -884,12 +884,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 435ba793-c71b-41b4-bcb7-da8cd6fb95dd + - a0960869-5a7e-4f54-a1b8-8f4112731edd X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.200989ms + duration: 80.523053ms - id: 17 request: proto: HTTP/1.1 @@ -914,20 +914,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -935,10 +935,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60002e79-7f31-4be6-bf0e-c5fb1544c2c1 + - c546a411-7380-4a6f-b763-494298b547ae status: 200 OK code: 200 - duration: 24.404716ms + duration: 33.575719ms - id: 18 request: proto: HTTP/1.1 @@ -963,22 +963,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -986,12 +986,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b599f03e-0e82-4e57-ac19-28ae6b918dbb + - 01cbbcf3-7e25-4b24-80c6-c8b411355359 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 118.843291ms + duration: 82.323869ms - id: 19 request: proto: HTTP/1.1 @@ -1016,22 +1016,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1039,12 +1039,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6a13c1-f48f-4cd6-8b51-f304c08480c6 + - f9a951f0-3a20-44f5-8d2d-7a602d59a738 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 122.345006ms + duration: 91.225255ms - id: 20 request: proto: HTTP/1.1 @@ -1069,22 +1069,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:07:59 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1092,12 +1092,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abb32960-57c1-4ad8-aa23-f0bcad522c6f + - f99ab874-42da-45f7-bf7f-638f5ecd8c5a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 46.372747ms + duration: 64.811091ms - id: 21 request: proto: HTTP/1.1 @@ -1122,22 +1122,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1145,12 +1145,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ec5c779-2311-45f9-913a-58bd6105bdff + - 16b186e7-4f65-4ef1-94f3-d15f9f3093fa X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 40.988407ms + duration: 46.302426ms - id: 22 request: proto: HTTP/1.1 @@ -1175,20 +1175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1196,10 +1196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b061e107-8e77-4800-a1de-ba7c7c4ea974 + - 2de4433b-642b-45ad-925f-60a99ea7e8fc status: 200 OK code: 200 - duration: 48.181734ms + duration: 29.442591ms - id: 23 request: proto: HTTP/1.1 @@ -1224,22 +1224,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1247,12 +1247,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01d16e7a-2af8-40dd-b9ca-9dc1e3971331 + - 71d6e349-365f-4a5c-bec9-066167f7c75f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 116.077718ms + duration: 97.310162ms - id: 24 request: proto: HTTP/1.1 @@ -1277,22 +1277,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1300,12 +1300,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bc3b62b-3935-463b-a906-75a1a1cf2037 + - 4e438842-e20d-4f33-a327-4cf1c6a926b6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 81.16012ms + duration: 152.051417ms - id: 25 request: proto: HTTP/1.1 @@ -1330,22 +1330,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1353,12 +1353,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa3e2c1-eb9b-4628-93d9-a862fd5af155 + - 6a894edd-dcd2-472a-947f-6cb166e621bb X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 37.457637ms + duration: 45.264971ms - id: 26 request: proto: HTTP/1.1 @@ -1383,22 +1383,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1406,12 +1406,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2339af7c-15fe-4658-a5d6-6bc5b4bb41bf + - 889092f9-8470-4a22-8add-47d94e6605b3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 51.772547ms + duration: 36.599437ms - id: 27 request: proto: HTTP/1.1 @@ -1436,20 +1436,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1457,10 +1457,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8275405a-aa63-4b81-bc0f-52a32394fb07 + - 22d6ebc9-1015-41e0-b079-46c05ff7dbb0 status: 200 OK code: 200 - duration: 26.38759ms + duration: 25.954273ms - id: 28 request: proto: HTTP/1.1 @@ -1485,22 +1485,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1508,12 +1508,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 153c3fb8-f5c7-481e-a50d-c1af395a693d + - 03a6c4ef-80a2-4260-a8ba-aa3dcfe75932 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 86.851617ms + duration: 95.339479ms - id: 29 request: proto: HTTP/1.1 @@ -1538,22 +1538,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1561,12 +1561,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 028d33da-1d45-48fe-9560-3adae9835cf5 + - 8c55ee35-cb9f-4bd9-b4f9-6a25ca8ea290 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 102.290779ms + duration: 100.01376ms - id: 30 request: proto: HTTP/1.1 @@ -1591,22 +1591,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1614,12 +1614,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fef8de9-2bdd-441f-9a8b-c882b25bd210 + - 984abd41-4154-45a8-b3a2-a14946140c80 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 43.922236ms + duration: 44.275016ms - id: 31 request: proto: HTTP/1.1 @@ -1644,22 +1644,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1667,12 +1667,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f325b6e-6816-4d15-86fc-b331f7ca71c1 + - caed2c31-0323-49e1-8d7e-8314c485c647 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 59.907382ms + duration: 46.657612ms - id: 32 request: proto: HTTP/1.1 @@ -1697,20 +1697,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:00 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ad6914e-7f1a-4f30-8d41-c72b8ce651be + - d62efc36-f0b5-46a0-824f-4e1618650cf6 status: 200 OK code: 200 - duration: 22.800835ms + duration: 30.33307ms - id: 33 request: proto: HTTP/1.1 @@ -1746,22 +1746,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,12 +1769,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - addf9c11-008f-4155-bebc-1c5149aa3d2e + - d515a456-5b7e-4e55-8ce8-771da90f47ad X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 109.089906ms + duration: 100.172537ms - id: 34 request: proto: HTTP/1.1 @@ -1799,22 +1799,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,12 +1822,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d1a013a-776e-4376-8d19-b778101c7ffa + - b91a72a7-cd7e-4614-ba78-00c62f724bed X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 96.886851ms + duration: 95.264208ms - id: 35 request: proto: HTTP/1.1 @@ -1852,22 +1852,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1875,12 +1875,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 135ab7e7-7e5d-4ee6-ac7c-20727fc24037 + - 56695984-efc7-4e76-a2d0-cf75445ff8d6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 51.344282ms + duration: 53.560522ms - id: 36 request: proto: HTTP/1.1 @@ -1905,22 +1905,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1928,12 +1928,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ba4f520-9327-434f-9253-c4d11dadc6fe + - 370c7b80-afa1-47df-8f37-899a45c05820 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 42.910677ms + duration: 59.963795ms - id: 37 request: proto: HTTP/1.1 @@ -1958,20 +1958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1979,10 +1979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1a5a59e-54d2-4798-9904-b080dbabfab3 + - 6269a46a-f5b3-4236-b810-712db1d746ff status: 200 OK code: 200 - duration: 23.527158ms + duration: 21.063024ms - id: 38 request: proto: HTTP/1.1 @@ -2007,22 +2007,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2030,12 +2030,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f90c2125-ea80-476a-b7e2-846b6107a71c + - f5a0de2a-9572-4c4e-852f-f5e17f4ae1d2 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 89.791358ms + duration: 109.585694ms - id: 39 request: proto: HTTP/1.1 @@ -2060,22 +2060,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2083,12 +2083,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cebef1f3-56a2-4385-b045-bc07dd0b5ebd + - 56a7cc87-6443-4deb-b3a3-477f8325ace6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 100.181979ms + duration: 65.717271ms - id: 40 request: proto: HTTP/1.1 @@ -2113,22 +2113,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,12 +2136,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f780cf0-863b-4003-b838-a0a3d8a0ce40 + - 22b0105e-4f4c-4fb1-948c-99fbba133799 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 54.688171ms + duration: 55.307758ms - id: 41 request: proto: HTTP/1.1 @@ -2166,22 +2166,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,12 +2189,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea7c60ea-db86-407a-970a-d233a052d0e1 + - 7b68c461-666e-431c-887b-b5a2504d898f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.82269ms + duration: 37.154969ms - id: 42 request: proto: HTTP/1.1 @@ -2219,20 +2219,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "63463" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2240,10 +2240,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdaa8715-4c2b-4abe-9d0b-2230710aff72 + - 5eecc2a2-e0aa-4d0c-8169-e45cce9cc5bc status: 200 OK code: 200 - duration: 23.456005ms + duration: 27.05202ms - id: 43 request: proto: HTTP/1.1 @@ -2268,22 +2268,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2345 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:01 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2291,12 +2291,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eed01693-b5fe-4e34-ba82-cf6d49257da0 + - 2a5371cc-8bcc-43bb-8879-cad99490bb36 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 82.671679ms + duration: 94.79095ms - id: 44 request: proto: HTTP/1.1 @@ -2321,22 +2321,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1101 + content_length: 770 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1101" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 17:08:02 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,9 +2344,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8fd109-e936-4730-8c96-d21770e0fe23 + - 9ce65f6e-2928-4b39-8eca-e41581f3cf71 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 84.107755ms + duration: 66.625723ms diff --git a/internal/services/instance/testdata/data-source-server-type-compare-with-pcu.cassette.yaml b/internal/services/instance/testdata/data-source-server-type-compare-with-pcu.cassette.yaml index 2ecebff4b..6f5882368 100644 --- a/internal/services/instance/testdata/data-source-server-type-compare-with-pcu.cassette.yaml +++ b/internal/services/instance/testdata/data-source-server-type-compare-with-pcu.cassette.yaml @@ -17,7 +17,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52652 + content_length: 44614 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020205535,"m3_water_usage":0.0000027409742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028707338,"m3_water_usage":0.0000040101863},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021574702,"m3_water_usage":0.00003193285},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045710946,"m3_water_usage":0.00000654861},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007971816,"m3_water_usage":0.000011625458},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014773259,"m3_water_usage":0.000021779155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028376145,"m3_water_usage":0.000042086547},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019526224,"m3_water_usage":0.000002612155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027348718,"m3_water_usage":0.0000037525479},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042993706,"m3_water_usage":0.0000060333336},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007428368,"m3_water_usage":0.000010594905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013686363,"m3_water_usage":0.000019718047},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029381178,"m3_water_usage":0.000004301603},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049659456,"m3_water_usage":0.0000074585023},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009021601,"m3_water_usage":0.000013772301},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017132912,"m3_water_usage":0.000026399897},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032822818,"m3_water_usage":0.00005082577},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019234924,"m3_water_usage":0.0000024683718},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026218027,"m3_water_usage":0.000003396058},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004018423,"m3_water_usage":0.0000052514306},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006811664,"m3_water_usage":0.000008962175},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012398146,"m3_water_usage":0.000016383665},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009369999,"m3_water_usage":0.0000012365103},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011197594,"m3_water_usage":0.0000015245516},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014375225,"m3_water_usage":0.0000020253767},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020252927,"m3_water_usage":0.000002951769},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002565307,"m3_water_usage":0.0000038029034},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013425496,"m3_water_usage":0.0000016948044},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015147261,"m3_water_usage":0.0000019178467},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018590791,"m3_water_usage":0.0000023639313},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024830173,"m3_water_usage":0.0000031721984},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037956613,"m3_water_usage":0.0000048726347},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064209495,"m3_water_usage":0.000008273507},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011671525,"m3_water_usage":0.000015075252},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022172678,"m3_water_usage":0.000028678742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032673832,"m3_water_usage":0.00004228223},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043174982,"m3_water_usage":0.00005588572},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002925761,"m3_water_usage":0.000004092335},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004681149,"m3_water_usage":0.0000067129076},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081919255,"m3_water_usage":0.000011954054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011702701,"m3_water_usage":0.0000171952},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015213477,"m3_water_usage":0.000022436345},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020882355},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029459714},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02181616},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004661443},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008092387},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149542745},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028678048},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020195376},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028085755},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004386652},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007542804},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013855108},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030036757},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005050296},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009143537},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017330019},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033165332},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619369},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014826814},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020759664},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026210474},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014040038},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001577508},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019245165},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025532662},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038760328},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065215663},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011812633},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022394767},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0329769},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043559033},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030014876},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004772476},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008314452},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011856428},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015398405},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' headers: Content-Length: - - "52652" + - "44614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 177f79ee-d34e-43d1-977a-fe5e0c4e4915 + - 5303c33a-fc4d-4a7f-9977-db07c7b4b997 status: 200 OK code: 200 - duration: 102.209034ms + duration: 65.642556ms - id: 1 request: proto: HTTP/1.1 @@ -66,7 +66,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44609 + content_length: 34583 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002091016},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029487517},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021818941},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046642236},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008095168},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149570545},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02868083},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020223178},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002811356},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043894323},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075455843},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013857889},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030058383},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050524585},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009145699},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017332181},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033167493},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011637288},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014844731},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002077758},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026228393},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014067842},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015802884},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001927297},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025560465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038788132},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006524347},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011815413},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022397546},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03297968},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043561812},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003004268},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004775256},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008317232},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011859208},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015401185},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031537605},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048600766},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04239903},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008272709},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015097974},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028748503},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05604956},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029989358},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045504267},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076534096},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013859374},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026271306},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001770072},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020926998},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027379552},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039071026},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006366761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011286078},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021124711},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.040801976},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060479242},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015651},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049705165},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008493589},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015539734},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022585878},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029632023},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' headers: Content-Length: - - "44609" + - "34583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +95,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e402c7ee-631f-45b6-9689-aac96d370a44 + - 81e3d6c9-b375-4a1d-aaab-e26eaa0242c0 status: 200 OK code: 200 - duration: 41.72565ms + duration: 33.692255ms - id: 2 request: proto: HTTP/1.1 @@ -115,7 +115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -123,20 +123,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35866 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006178838},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007885154},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542411},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011297787},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018123051},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03177358},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05907464},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0060240133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075755045},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010678487},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016884452},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029296383},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076359143},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011793201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020107772},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036736917},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890308},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036364025},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042919926},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055046524},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006618792},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00479515},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051177773},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005763033},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007995594},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115186665},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018564811},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025610955},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0326571},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":33}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "35866" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -144,10 +144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f7f113a-3109-4de9-b6c2-6bcd725f6d9d + - 9a2e3a98-c00a-442e-b640-de9783d1476d status: 200 OK code: 200 - duration: 36.621479ms + duration: 24.736593ms - id: 3 request: proto: HTTP/1.1 @@ -172,20 +172,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73205 + content_length: 73161 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012380391,"m3_water_usage":4.5424537e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012809503,"m3_water_usage":5.7336604e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016490124,"m3_water_usage":8.2754303e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017348346,"m3_water_usage":0.0000010657843},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010690425,"m3_water_usage":0.000009040092},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002470959,"m3_water_usage":0.0000015741383},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026426034,"m3_water_usage":0.0000020506209},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041148523,"m3_water_usage":0.0000030673289},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004458141,"m3_water_usage":0.000004020294},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074026384,"m3_water_usage":0.00000605371},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008089216,"m3_water_usage":0.00000795964},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013978211,"m3_water_usage":0.000012026472},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012146856,"m3_water_usage":4.1635738e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016023054,"m3_water_usage":7.5176706e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002377545,"m3_water_usage":0.0000014225864},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039280243,"m3_water_usage":0.000002764225},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070289825,"m3_water_usage":0.000005447502},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015786653,"m3_water_usage":9.914592e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025140573,"m3_water_usage":0.000001919959},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043848413,"m3_water_usage":0.0000037769585},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008126409,"m3_water_usage":0.0000074909576},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015363814,"m3_water_usage":0.000014675037},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012430849,"m3_water_usage":3.5758745e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016203721,"m3_water_usage":6.304363e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023749464,"m3_water_usage":0.0000011761341},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038840948,"m3_water_usage":0.0000022675297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069023916,"m3_water_usage":0.000004450321},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0006991652,"m3_water_usage":2.216024e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008436193,"m3_water_usage":3.6890387e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011108142,"m3_water_usage":6.413722e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001356296,"m3_water_usage":8.9170584e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092205923,"m3_water_usage":1.465484e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010170526,"m3_water_usage":2.1214908e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012070393,"m3_water_usage":3.4335042e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001551279,"m3_water_usage":5.81076e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002275492,"m3_water_usage":0.0000010812043},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037239185,"m3_water_usage":0.000002081461},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006620771,"m3_water_usage":0.000004081974},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012414476,"m3_water_usage":0.0000080830005},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018208181,"m3_water_usage":0.000012084027},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024001887,"m3_water_usage":0.000016085052},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016756124,"m3_water_usage":8.5170444e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002524159,"m3_water_usage":0.0000016224611},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042212517,"m3_water_usage":0.0000031639745},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005918345,"m3_water_usage":0.0000047054878},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007615438,"m3_water_usage":0.0000062470012},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012352801,"m3_water_usage":4.542541e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012781911,"m3_water_usage":5.7337473e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016462534,"m3_water_usage":8.2755173e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017320756,"m3_water_usage":0.0000010657931},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010687666,"m3_water_usage":0.0000090401},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024682,"m3_water_usage":0.0000015741471},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026398443,"m3_water_usage":0.0000020506297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041120932,"m3_water_usage":0.0000030673377},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004455382,"m3_water_usage":0.0000040203026},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073998794,"m3_water_usage":0.000006053719},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008086457,"m3_water_usage":0.000007959649},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013975452,"m3_water_usage":0.000012026481},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012119266,"m3_water_usage":4.163661e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015995463,"m3_water_usage":7.5177576e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002374786,"m3_water_usage":0.0000014225951},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003925265,"m3_water_usage":0.0000027642338},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007026223,"m3_water_usage":0.000005447511},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015765195,"m3_water_usage":9.914659e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025119113,"m3_water_usage":0.0000019199656},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004382695,"m3_water_usage":0.0000037769653},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008124263,"m3_water_usage":0.0000074909644},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015361669,"m3_water_usage":0.000014675044},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012401965,"m3_water_usage":3.5759658e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016174837,"m3_water_usage":6.3044547e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023720579,"m3_water_usage":0.0000011761433},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038812065,"m3_water_usage":0.0000022675388},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068995035,"m3_water_usage":0.00000445033},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00069738715,"m3_water_usage":2.2160803e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00084184116,"m3_water_usage":3.689095e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011090362,"m3_water_usage":6.413778e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013545179,"m3_water_usage":8.9171147e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00091930013,"m3_water_usage":1.4655713e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010142935,"m3_water_usage":2.121578e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012042803,"m3_water_usage":3.4335915e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015485199,"m3_water_usage":5.8108475e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002272733,"m3_water_usage":0.000001081213},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037211594,"m3_water_usage":0.0000020814696},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066180117,"m3_water_usage":0.0000040819828},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012411717,"m3_water_usage":0.00000808301},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018205423,"m3_water_usage":0.000012084036},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023999127,"m3_water_usage":0.000016085061},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016728533,"m3_water_usage":8.5171314e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025213999,"m3_water_usage":0.0000016224699},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042184927,"m3_water_usage":0.0000031639831},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005915586,"m3_water_usage":0.000004705497},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076126787,"m3_water_usage":0.00000624701},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' headers: Content-Length: - - "73205" + - "73161" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -193,10 +193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f38f0b4-1208-4384-b17d-49d0d835572c + - a9e3d258-619d-4db6-8ebd-de0fca40af7f status: 200 OK code: 200 - duration: 47.660571ms + duration: 38.148606ms - id: 4 request: proto: HTTP/1.1 @@ -221,20 +221,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35711 + content_length: 38016 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009162973,"m3_water_usage":3.0258654e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397537,"m3_water_usage":3.028852e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010655794,"m3_water_usage":3.094552e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021866665,"m3_water_usage":3.0348243e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003880492,"m3_water_usage":3.04677e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007268143,"m3_water_usage":3.070661e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014043445,"m3_water_usage":3.118443e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008916768,"m3_water_usage":3.0255624e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012905127,"m3_water_usage":3.0282454e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020881845,"m3_water_usage":3.033612e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003683528,"m3_water_usage":3.0443452e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006874215,"m3_water_usage":3.0658114e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013497617,"m3_water_usage":2.358556e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023162027,"m3_water_usage":2.365984e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042490847,"m3_water_usage":2.38084e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012337784,"m3_water_usage":3.02688e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019747159,"m3_water_usage":3.030881e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034565907,"m3_water_usage":3.038883e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064203404,"m3_water_usage":3.0548872e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01234784,"m3_water_usage":3.0868954e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827534,"m3_water_usage":3.1189035e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024202839,"m3_water_usage":3.1509117e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013671615,"m3_water_usage":3.029045e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022414823,"m3_water_usage":3.0352112e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039901235,"m3_water_usage":3.047543e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057387645,"m3_water_usage":3.0598752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007487406,"m3_water_usage":3.0722074e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009135382,"m3_water_usage":3.0267373e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013369946,"m3_water_usage":3.0297237e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010653035,"m3_water_usage":3.095424e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021839074,"m3_water_usage":3.0356965e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003877733,"m3_water_usage":3.0476418e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007265384,"m3_water_usage":3.071533e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014040685,"m3_water_usage":3.119315e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008889177,"m3_water_usage":3.0264342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012877536,"m3_water_usage":3.0291176e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020854254,"m3_water_usage":3.034484e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003680769,"m3_water_usage":3.045217e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006871456,"m3_water_usage":3.0666833e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013476157,"m3_water_usage":2.3592342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023140567,"m3_water_usage":2.3666622e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042469385,"m3_water_usage":2.3815183e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute GP1-L Instance - fr-par-3 (1.139€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081127025,"m3_water_usage":2.4112301e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":139000000,"units":1}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-3"},{"description":"Compute GP1-XL Instance - fr-par-3 (2.462€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015590344,"m3_water_usage":2.468703e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":462000000,"units":2}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012310193,"m3_water_usage":3.027752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019719568,"m3_water_usage":3.031753e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034538317,"m3_water_usage":3.039755e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064175813,"m3_water_usage":3.055759e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012345081,"m3_water_usage":3.0877672e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827258,"m3_water_usage":3.1197754e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02420008,"m3_water_usage":3.151784e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013644025,"m3_water_usage":3.029917e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002238723,"m3_water_usage":3.036083e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039873645,"m3_water_usage":3.0484152e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057360055,"m3_water_usage":3.060747e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007484647,"m3_water_usage":3.0730792e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":34}' headers: Content-Length: - - "35711" + - "38016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c643c3ea-838a-4262-95ac-d1c68e97fbd5 + - cc64f9c5-073c-45f2-b706-9ead2bf107d8 status: 200 OK code: 200 - duration: 43.795699ms + duration: 24.664358ms - id: 5 request: proto: HTTP/1.1 @@ -262,7 +262,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -270,20 +270,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34586 + content_length: 52626 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003201853},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039840336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021192005},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055483948},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008677117},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027449448},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031408237},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003861975},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053042774},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008188882},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013958091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025798993},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027401259},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030605793},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036412133},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862754},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073058354},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012191999},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021964325},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173665},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041508976},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040346594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056496467},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008879621},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012109594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015339568},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020177732,"m3_water_usage":0.0000027409822},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028679534,"m3_water_usage":0.000004010194},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021571921,"m3_water_usage":0.000031932857},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004568314,"m3_water_usage":0.0000065486183},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007969036,"m3_water_usage":0.000011625466},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014770479,"m3_water_usage":0.000021779162},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028373364,"m3_water_usage":0.000042086554},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019498421,"m3_water_usage":0.0000026121631},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027320914,"m3_water_usage":0.0000037525558},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00429659,"m3_water_usage":0.0000060333414},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074255876,"m3_water_usage":0.000010594913},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013683583,"m3_water_usage":0.000019718056},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029359553,"m3_water_usage":0.0000043016094},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004963783,"m3_water_usage":0.0000074585087},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009019438,"m3_water_usage":0.000013772307},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01713075,"m3_water_usage":0.000026399905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032820657,"m3_water_usage":0.000050825776},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019205819,"m3_water_usage":0.0000024683802},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026188921,"m3_water_usage":0.0000033960664},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040155128,"m3_water_usage":0.000005251439},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068087536,"m3_water_usage":0.0000089621835},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012395235,"m3_water_usage":0.000016383674},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009352081,"m3_water_usage":0.0000012365155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011179677,"m3_water_usage":0.0000015245569},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014357306,"m3_water_usage":0.000002025382},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020235009,"m3_water_usage":0.0000029517741},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025635152,"m3_water_usage":0.0000038029086},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397692,"m3_water_usage":0.0000016948125},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015119457,"m3_water_usage":0.000001917855},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018562988,"m3_water_usage":0.0000023639393},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024802368,"m3_water_usage":0.0000031722063},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037928808,"m3_water_usage":0.0000048726424},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006418169,"m3_water_usage":0.000008273515},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011668745,"m3_water_usage":0.000015075259},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022169897,"m3_water_usage":0.000028678749},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03267105,"m3_water_usage":0.000042282238},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043172203,"m3_water_usage":0.00005588573},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029229808,"m3_water_usage":0.000004092343},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046783686,"m3_water_usage":0.000006712916},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008189145,"m3_water_usage":0.000011954061},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0116999205,"m3_water_usage":0.000017195207},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0152106965,"m3_water_usage":0.000022436352},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' headers: Content-Length: - - "34586" + - "52626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,10 +291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 592b4677-72d3-4254-ae13-da35e2d626a8 + - 937c717d-1aee-48cb-b133-e37a685184ca status: 200 OK code: 200 - duration: 19.732857ms + duration: 33.550409ms - id: 6 request: proto: HTTP/1.1 @@ -311,7 +311,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -319,20 +319,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56166 + content_length: 34584 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00308996},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004557515},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036843725},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074926247},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133628445},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025103284},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048584163},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029593683},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042963317},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006970258},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012318111},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023013817},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004825288},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008388706},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015515542},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029769212},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057340436},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013684194},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001691289},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002252665},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032910544},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042450805},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019030744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002183744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002745083},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037621811},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0059019574},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01018151},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018740615},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035858825},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052977037},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009525},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004652501},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076825973},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374279},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019802982},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025863174},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031990726},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003981253},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021189224},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055456143},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008674336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493178},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027446669},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031380432},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038591945},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005301497},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008186102},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013955311},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025771188},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027373456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030577988},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036384328},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048599737},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007303055},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012189218},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021961544},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173387},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041506197},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040318794},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056468663},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008876841},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012106814},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015336788},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' headers: Content-Length: - - "56166" + - "34584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -340,10 +340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bc3162b-6b81-4d8b-8cbd-1385dec29e59 + - b84bf7ec-66d8-408c-a9dd-e3b086532937 status: 200 OK code: 200 - duration: 28.976495ms + duration: 15.248073ms - id: 7 request: proto: HTTP/1.1 @@ -360,7 +360,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -368,20 +368,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34573 + content_length: 44600 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003156541},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862857},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.042401813},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008275489},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015100754},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028751282},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.056052342},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003001716},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004553207},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00765619},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013862155},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026274085},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017728525},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020954802},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027407357},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003909883},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063695414},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011288858},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02112749},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04080476},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060482025},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015929},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004973297},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008496369},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015542514},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02258866},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029634804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061760577},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007882374},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011295007},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01812027},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0317708},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.059071857},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006021233},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075727245},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010675707},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016881673},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029293602},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076337517},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011791038},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02010561},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036734756},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890092},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036346107},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004290201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055028605},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066170003},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047923694},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051149973},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057602525},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069294},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009389059},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014308375},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024147008},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043824274},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-1"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.063501544},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-1"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08317881},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007992814},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115158865},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01856203},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025608175},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03265432},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-10 Instance - pl-waw-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":41}' headers: Content-Length: - - "34573" + - "44600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,10 +389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3e80334-c553-4e99-a2fb-b1bfd7bffbe0 + - d508f608-55c1-4f16-831f-88f6aabd4c12 status: 200 OK code: 200 - duration: 21.804629ms + duration: 26.576982ms - id: 8 request: proto: HTTP/1.1 @@ -409,7 +409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 method: GET response: proto: HTTP/2.0 @@ -417,20 +417,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 56175 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030871795},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045547346},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036840945},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007489844},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133600645},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025100503},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048581384},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029565878},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004293551},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069674775},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012315331},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023011036},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004823126},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008386543},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015513379},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02976705},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057338275},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013666276},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016894971},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022508733},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032892625},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042432887},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001900294},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021809635},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027423026},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037594007},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005899177},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01017873},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018737834},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035856046},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052974254},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009246},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046497206},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076798173},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374001},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019800203},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025860395},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' headers: Content-Length: - - "63463" + - "56175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:57 GMT + - Wed, 15 Oct 2025 15:02:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -438,10 +438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 116a10ef-8c0e-4f62-b141-80428668a568 + - a3c07147-6116-49f8-9b26-57e4d93e7c5c status: 200 OK code: 200 - duration: 21.361046ms + duration: 21.134003ms - id: 9 request: proto: HTTP/1.1 @@ -458,7 +458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -466,22 +466,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38914 + content_length: 31954 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "38914" + - "31954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - - ; rel="next",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,12 +489,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a63a5515-17e0-41b8-98a7-f82610ccd53f + - 0a907156-933b-4764-b982-1251507c650a X-Total-Count: - - "65" + - "41" status: 200 OK code: 200 - duration: 62.075065ms + duration: 42.32683ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -519,22 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11877 + content_length: 44614 uncompressed: false - body: '{"servers":{"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020882355},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029459714},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02181616},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004661443},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008092387},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149542745},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028678048},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020195376},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028085755},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004386652},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007542804},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013855108},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030036757},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005050296},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009143537},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017330019},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033165332},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619369},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014826814},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020759664},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026210474},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014040038},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001577508},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019245165},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025532662},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038760328},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065215663},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011812633},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022394767},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0329769},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043559033},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030014876},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004772476},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008314452},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011856428},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015398405},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' headers: Content-Length: - - "11877" + - "44614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,12 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4198cd8c-a50a-488e-8270-ed52bfc207a0 - X-Total-Count: - - "65" + - 2d9f915b-3462-4758-9737-b211266cd785 status: 200 OK code: 200 - duration: 56.805143ms + duration: 20.026569ms - id: 11 request: proto: HTTP/1.1 @@ -564,7 +560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -572,20 +568,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52652 + content_length: 1882 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020205535,"m3_water_usage":0.0000027409742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028707338,"m3_water_usage":0.0000040101863},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021574702,"m3_water_usage":0.00003193285},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045710946,"m3_water_usage":0.00000654861},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007971816,"m3_water_usage":0.000011625458},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014773259,"m3_water_usage":0.000021779155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028376145,"m3_water_usage":0.000042086547},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019526224,"m3_water_usage":0.000002612155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027348718,"m3_water_usage":0.0000037525479},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042993706,"m3_water_usage":0.0000060333336},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007428368,"m3_water_usage":0.000010594905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013686363,"m3_water_usage":0.000019718047},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029381178,"m3_water_usage":0.000004301603},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049659456,"m3_water_usage":0.0000074585023},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009021601,"m3_water_usage":0.000013772301},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017132912,"m3_water_usage":0.000026399897},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032822818,"m3_water_usage":0.00005082577},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019234924,"m3_water_usage":0.0000024683718},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026218027,"m3_water_usage":0.000003396058},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004018423,"m3_water_usage":0.0000052514306},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006811664,"m3_water_usage":0.000008962175},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012398146,"m3_water_usage":0.000016383665},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009369999,"m3_water_usage":0.0000012365103},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011197594,"m3_water_usage":0.0000015245516},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014375225,"m3_water_usage":0.0000020253767},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020252927,"m3_water_usage":0.000002951769},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002565307,"m3_water_usage":0.0000038029034},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013425496,"m3_water_usage":0.0000016948044},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015147261,"m3_water_usage":0.0000019178467},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018590791,"m3_water_usage":0.0000023639313},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024830173,"m3_water_usage":0.0000031721984},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037956613,"m3_water_usage":0.0000048726347},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064209495,"m3_water_usage":0.000008273507},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011671525,"m3_water_usage":0.000015075252},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022172678,"m3_water_usage":0.000028678742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032673832,"m3_water_usage":0.00004228223},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043174982,"m3_water_usage":0.00005588572},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002925761,"m3_water_usage":0.000004092335},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004681149,"m3_water_usage":0.0000067129076},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081919255,"m3_water_usage":0.000011954054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011702701,"m3_water_usage":0.0000171952},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015213477,"m3_water_usage":0.000022436345},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "52652" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +591,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d79c32a0-7231-4f4b-83ee-5d608ab2fed6 + - 5ee2ef84-2772-4a08-9e64-498646309c5c + X-Total-Count: + - "41" status: 200 OK code: 200 - duration: 24.383665ms + duration: 87.382296ms - id: 12 request: proto: HTTP/1.1 @@ -613,7 +613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -621,22 +621,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2293 + content_length: 31954 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"scarce"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2293" + - "31954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="next",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,12 +644,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17affe2b-fb27-40de-865b-a59b95ca6efc + - 93e551b6-0b76-4962-a2fb-29622de6aaa9 X-Total-Count: - - "65" + - "41" status: 200 OK code: 200 - duration: 99.007568ms + duration: 54.103035ms - id: 13 request: proto: HTTP/1.1 @@ -666,7 +666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -674,22 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 648 + content_length: 44614 uncompressed: false - body: '{"servers":{"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020882355},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029459714},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02181616},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004661443},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008092387},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149542745},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028678048},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020195376},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028085755},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004386652},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007542804},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013855108},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030036757},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005050296},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009143537},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017330019},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033165332},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619369},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014826814},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020759664},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026210474},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014040038},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001577508},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019245165},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025532662},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038760328},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065215663},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011812633},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022394767},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0329769},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043559033},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030014876},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004772476},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008314452},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011856428},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015398405},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' headers: Content-Length: - - "648" + - "44614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -697,12 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7ae5f1-3cd3-4567-8944-fe374026ac72 - X-Total-Count: - - "65" + - c2892421-6ef6-4845-b741-472be5c8f8bd status: 200 OK code: 200 - duration: 89.897131ms + duration: 23.672704ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -727,22 +723,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38914 + content_length: 1882 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "38914" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="next",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +746,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b464cad3-aead-4d23-a24c-d9ce37d106a4 + - 067d2e88-db54-49f2-980c-d176ff6a9141 X-Total-Count: - - "65" + - "41" status: 200 OK code: 200 - duration: 62.686574ms + duration: 84.29537ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -780,22 +776,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11877 + content_length: 31954 uncompressed: false - body: '{"servers":{"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "11877" + - "31954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09767271-b488-4040-b861-2d1fa9a5fb09 + - cc8e9aed-e3ca-4fe2-aecd-389439f6d6f9 X-Total-Count: - - "65" + - "41" status: 200 OK code: 200 - duration: 66.733357ms + duration: 55.888351ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 method: GET response: proto: HTTP/2.0 @@ -833,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52652 + content_length: 44614 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020205535,"m3_water_usage":0.0000027409742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028707338,"m3_water_usage":0.0000040101863},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021574702,"m3_water_usage":0.00003193285},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045710946,"m3_water_usage":0.00000654861},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007971816,"m3_water_usage":0.000011625458},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014773259,"m3_water_usage":0.000021779155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028376145,"m3_water_usage":0.000042086547},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019526224,"m3_water_usage":0.000002612155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027348718,"m3_water_usage":0.0000037525479},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042993706,"m3_water_usage":0.0000060333336},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007428368,"m3_water_usage":0.000010594905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013686363,"m3_water_usage":0.000019718047},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029381178,"m3_water_usage":0.000004301603},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049659456,"m3_water_usage":0.0000074585023},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009021601,"m3_water_usage":0.000013772301},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017132912,"m3_water_usage":0.000026399897},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032822818,"m3_water_usage":0.00005082577},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019234924,"m3_water_usage":0.0000024683718},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026218027,"m3_water_usage":0.000003396058},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004018423,"m3_water_usage":0.0000052514306},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006811664,"m3_water_usage":0.000008962175},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012398146,"m3_water_usage":0.000016383665},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009369999,"m3_water_usage":0.0000012365103},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011197594,"m3_water_usage":0.0000015245516},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014375225,"m3_water_usage":0.0000020253767},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020252927,"m3_water_usage":0.000002951769},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002565307,"m3_water_usage":0.0000038029034},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013425496,"m3_water_usage":0.0000016948044},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015147261,"m3_water_usage":0.0000019178467},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018590791,"m3_water_usage":0.0000023639313},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024830173,"m3_water_usage":0.0000031721984},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037956613,"m3_water_usage":0.0000048726347},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064209495,"m3_water_usage":0.000008273507},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011671525,"m3_water_usage":0.000015075252},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022172678,"m3_water_usage":0.000028678742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032673832,"m3_water_usage":0.00004228223},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043174982,"m3_water_usage":0.00005588572},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002925761,"m3_water_usage":0.000004092335},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004681149,"m3_water_usage":0.0000067129076},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081919255,"m3_water_usage":0.000011954054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011702701,"m3_water_usage":0.0000171952},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015213477,"m3_water_usage":0.000022436345},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020882355},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029459714},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02181616},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004661443},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008092387},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149542745},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028678048},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020195376},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028085755},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004386652},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007542804},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013855108},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030036757},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005050296},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009143537},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017330019},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033165332},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619369},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014826814},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020759664},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026210474},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014040038},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001577508},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019245165},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025532662},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038760328},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065215663},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011812633},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022394767},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0329769},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043559033},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030014876},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004772476},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008314452},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011856428},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015398405},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016732465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021159935},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' headers: Content-Length: - - "52652" + - "44614" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd115640-9571-4ac0-af5f-50761b793c39 + - 7a2f9333-dbdb-46ae-a752-f16307a17448 status: 200 OK code: 200 - duration: 23.929131ms + duration: 19.158573ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -882,22 +878,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2293 + content_length: 1882 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"scarce"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "2293" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="next",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -905,12 +901,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba95f0e8-efbd-4e21-ba9e-9e8f10a18403 + - 8dde297a-bddf-4dd9-aa57-95f49d8545e2 X-Total-Count: - - "65" + - "41" status: 200 OK code: 200 - duration: 89.819174ms + duration: 81.372381ms - id: 18 request: proto: HTTP/1.1 @@ -927,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -935,22 +931,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 648 + content_length: 24777 uncompressed: false - body: '{"servers":{"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "648" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:58 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -958,12 +954,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4763f998-be59-4aa8-8b4f-ef70f88a2b0a + - 6d57b9ed-9d29-44ae-8eae-775bc4fd97d7 X-Total-Count: - - "65" + - "32" status: 200 OK code: 200 - duration: 89.758931ms + duration: 89.063838ms - id: 19 request: proto: HTTP/1.1 @@ -980,7 +976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -988,22 +984,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38914 + content_length: 34583 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031537605},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048600766},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04239903},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008272709},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015097974},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028748503},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05604956},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029989358},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045504267},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076534096},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013859374},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026271306},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001770072},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020926998},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027379552},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039071026},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006366761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011286078},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021124711},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.040801976},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060479242},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015651},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049705165},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008493589},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015539734},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022585878},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029632023},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' headers: Content-Length: - - "38914" + - "34583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1011,12 +1005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed8f3caf-5e5c-43c0-8e1c-76d87cd48938 - X-Total-Count: - - "65" + - 387dcc6e-b8b6-43ca-b6f9-d7d8fb87802f status: 200 OK code: 200 - duration: 57.115246ms + duration: 18.205336ms - id: 20 request: proto: HTTP/1.1 @@ -1033,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1041,22 +1033,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 11877 + content_length: 1515 uncompressed: false - body: '{"servers":{"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "11877" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1064,12 +1056,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 159c96e2-cfb2-4d74-82ec-6417731800c9 + - 02e2e573-8f93-4d90-a44b-205c969e62a0 X-Total-Count: - - "65" + - "32" status: 200 OK code: 200 - duration: 60.251448ms + duration: 96.084778ms - id: 21 request: proto: HTTP/1.1 @@ -1086,7 +1078,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1094,20 +1086,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 52652 + content_length: 24777 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020205535,"m3_water_usage":0.0000027409742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028707338,"m3_water_usage":0.0000040101863},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021574702,"m3_water_usage":0.00003193285},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045710946,"m3_water_usage":0.00000654861},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007971816,"m3_water_usage":0.000011625458},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014773259,"m3_water_usage":0.000021779155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028376145,"m3_water_usage":0.000042086547},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019526224,"m3_water_usage":0.000002612155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027348718,"m3_water_usage":0.0000037525479},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042993706,"m3_water_usage":0.0000060333336},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007428368,"m3_water_usage":0.000010594905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013686363,"m3_water_usage":0.000019718047},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029381178,"m3_water_usage":0.000004301603},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049659456,"m3_water_usage":0.0000074585023},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009021601,"m3_water_usage":0.000013772301},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017132912,"m3_water_usage":0.000026399897},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032822818,"m3_water_usage":0.00005082577},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019234924,"m3_water_usage":0.0000024683718},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026218027,"m3_water_usage":0.000003396058},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004018423,"m3_water_usage":0.0000052514306},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006811664,"m3_water_usage":0.000008962175},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012398146,"m3_water_usage":0.000016383665},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009369999,"m3_water_usage":0.0000012365103},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011197594,"m3_water_usage":0.0000015245516},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014375225,"m3_water_usage":0.0000020253767},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020252927,"m3_water_usage":0.000002951769},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002565307,"m3_water_usage":0.0000038029034},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013425496,"m3_water_usage":0.0000016948044},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015147261,"m3_water_usage":0.0000019178467},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018590791,"m3_water_usage":0.0000023639313},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024830173,"m3_water_usage":0.0000031721984},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037956613,"m3_water_usage":0.0000048726347},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064209495,"m3_water_usage":0.000008273507},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011671525,"m3_water_usage":0.000015075252},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022172678,"m3_water_usage":0.000028678742},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032673832,"m3_water_usage":0.00004228223},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043174982,"m3_water_usage":0.00005588572},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002925761,"m3_water_usage":0.000004092335},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004681149,"m3_water_usage":0.0000067129076},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081919255,"m3_water_usage":0.000011954054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011702701,"m3_water_usage":0.0000171952},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015213477,"m3_water_usage":0.000022436345},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016092202,"m3_water_usage":0.0000021269054},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002048067,"m3_water_usage":0.0000027820486},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "52652" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:04 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1115,10 +1109,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2216ca6-ef4a-4c32-9edb-79a43d6c286a + - dd242679-c6cc-47ec-9c8b-5f5c699bc95e + X-Total-Count: + - "32" status: 200 OK code: 200 - duration: 22.010606ms + duration: 150.038425ms - id: 22 request: proto: HTTP/1.1 @@ -1135,7 +1131,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -1143,22 +1139,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2293 + content_length: 34583 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"scarce"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031537605},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048600766},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04239903},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008272709},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015097974},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028748503},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05604956},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029989358},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045504267},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076534096},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013859374},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026271306},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001770072},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020926998},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027379552},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039071026},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006366761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011286078},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021124711},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.040801976},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060479242},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015651},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049705165},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008493589},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015539734},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022585878},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029632023},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' headers: Content-Length: - - "2293" + - "34583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1166,12 +1160,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b7dc10f-2471-49f1-8904-84027252dc20 - X-Total-Count: - - "65" + - b97c889d-2cfa-4181-8ec2-956d8c3f7e71 status: 200 OK code: 200 - duration: 108.634076ms + duration: 23.07278ms - id: 23 request: proto: HTTP/1.1 @@ -1188,7 +1180,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1196,22 +1188,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 648 + content_length: 1515 uncompressed: false - body: '{"servers":{"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "648" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1219,12 +1211,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dce495ea-9c54-445b-987e-8e0fd475bbcc + - 45734a6f-762f-4e2c-af7d-6082396d6577 X-Total-Count: - - "65" + - "32" status: 200 OK code: 200 - duration: 119.726869ms + duration: 87.041769ms - id: 24 request: proto: HTTP/1.1 @@ -1241,7 +1233,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1249,22 +1241,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37334 + content_length: 24777 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "37334" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1272,12 +1264,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6142fec-4056-440b-84ff-29bfa3b22587 + - 207b89c5-9e30-4652-af59-ecd7c13f1c3f X-Total-Count: - - "48" + - "32" status: 200 OK code: 200 - duration: 54.194939ms + duration: 80.25641ms - id: 25 request: proto: HTTP/1.1 @@ -1294,7 +1286,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 method: GET response: proto: HTTP/2.0 @@ -1302,20 +1294,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44609 + content_length: 34583 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002091016},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029487517},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021818941},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046642236},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008095168},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149570545},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02868083},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020223178},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002811356},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043894323},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075455843},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013857889},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030058383},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050524585},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009145699},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017332181},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033167493},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011637288},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014844731},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002077758},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026228393},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014067842},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015802884},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001927297},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025560465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038788132},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006524347},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011815413},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022397546},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03297968},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043561812},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003004268},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004775256},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008317232},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011859208},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015401185},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031537605},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048600766},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04239903},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008272709},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015097974},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028748503},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05604956},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029989358},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045504267},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076534096},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013859374},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026271306},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001770072},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020926998},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027379552},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039071026},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006366761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011286078},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021124711},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.040801976},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060479242},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015651},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049705165},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008493589},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015539734},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022585878},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029632023},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023282124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032089804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' headers: Content-Length: - - "44609" + - "34583" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1323,10 +1315,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59d87087-1269-4845-b047-4a8135295267 + - d96c66b9-e2eb-4347-ab69-870df0bb99a1 status: 200 OK code: 200 - duration: 29.578877ms + duration: 23.064754ms - id: 26 request: proto: HTTP/1.1 @@ -1343,7 +1335,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1351,22 +1343,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 1515 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"scarce"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "2169" + - "1515" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:25:59 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1374,12 +1366,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b439caf-6536-4155-bea7-f933cec6c4f5 + - 74508797-a6b0-4167-bd99-c9d4c5e1666d X-Total-Count: - - "48" + - "32" status: 200 OK code: 200 - duration: 96.399629ms + duration: 89.013264ms - id: 27 request: proto: HTTP/1.1 @@ -1396,7 +1388,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1404,22 +1396,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37334 + content_length: 39263 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "37334" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1427,12 +1419,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c8c2e11-34b6-49ed-a6c6-23882c7ff9a3 + - 948b37a0-4693-433b-ad52-7dee574c8252 X-Total-Count: - - "48" + - "68" status: 200 OK code: 200 - duration: 53.248019ms + duration: 84.983751ms - id: 28 request: proto: HTTP/1.1 @@ -1449,7 +1441,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1457,20 +1449,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44609 + content_length: 14295 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002091016},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029487517},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021818941},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046642236},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008095168},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149570545},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02868083},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020223178},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002811356},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043894323},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075455843},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013857889},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030058383},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050524585},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009145699},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017332181},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033167493},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011637288},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014844731},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002077758},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026228393},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014067842},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015802884},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001927297},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025560465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038788132},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006524347},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011815413},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022397546},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03297968},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043561812},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003004268},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004775256},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008317232},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011859208},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015401185},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "44609" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:04 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1478,10 +1472,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6395c16-dcec-4526-9722-637db3cf0e34 + - 14ca0319-cf9b-47eb-90be-6b6404751456 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 26.91967ms + duration: 42.918651ms - id: 29 request: proto: HTTP/1.1 @@ -1498,7 +1494,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1506,22 +1502,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 63436 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"scarce"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "2169" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1529,12 +1523,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c3896f1-35b0-4ee2-b511-dbfe3b79ff97 - X-Total-Count: - - "48" + - 74672d52-1f09-4abd-85de-b185648a7aad status: 200 OK code: 200 - duration: 98.217144ms + duration: 22.719768ms - id: 30 request: proto: HTTP/1.1 @@ -1551,7 +1543,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1559,22 +1551,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 37334 + content_length: 2345 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":null,"mig_profile":null,"monthly_price":null,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "37334" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1582,12 +1574,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6bdb3f7-ce42-41bb-b98c-efd774a81570 + - dd043940-6a25-48fa-bbd7-3a594fbe3830 X-Total-Count: - - "48" + - "68" status: 200 OK code: 200 - duration: 56.820752ms + duration: 87.672801ms - id: 31 request: proto: HTTP/1.1 @@ -1604,7 +1596,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -1612,20 +1604,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 44609 + content_length: 770 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002091016},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029487517},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021818941},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046642236},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008095168},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0149570545},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02868083},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020223178},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002811356},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043894323},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075455843},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013857889},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030058383},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050524585},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009145699},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017332181},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033167493},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011637288},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014844731},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002077758},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026228393},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014067842},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015802884},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001927297},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025560465},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038788132},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006524347},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011815413},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022397546},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03297968},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043561812},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003004268},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004775256},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008317232},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011859208},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015401185},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001676027},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002118774},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"}],"total_count":41}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "44609" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1633,10 +1627,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac8dbdfe-82b1-472c-b856-298818a2b5ae + - d2f0864b-455d-4891-9e74-d525398451ae + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 29.148828ms + duration: 90.077109ms - id: 32 request: proto: HTTP/1.1 @@ -1653,7 +1649,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-2/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1661,22 +1657,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2169 + content_length: 39263 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"scarce"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2169" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1684,12 +1680,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32221269-6ce5-4bb1-92cc-c269f25a4bf5 + - b5681754-974e-47e6-840e-a581389fb90a X-Total-Count: - - "48" + - "68" status: 200 OK code: 200 - duration: 97.359011ms + duration: 99.982988ms - id: 33 request: proto: HTTP/1.1 @@ -1706,7 +1702,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1714,22 +1710,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31888 + content_length: 14295 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "31888" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1737,12 +1733,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08f46d40-4f92-4e3f-a9dd-13d3022092b8 + - e35b7d19-13b4-4c48-a982-4fd37d941392 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 132.884992ms + duration: 45.868871ms - id: 34 request: proto: HTTP/1.1 @@ -1759,7 +1755,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1767,20 +1763,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35866 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006178838},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007885154},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542411},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011297787},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018123051},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03177358},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05907464},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0060240133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075755045},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010678487},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016884452},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029296383},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076359143},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011793201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020107772},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036736917},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890308},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036364025},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042919926},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055046524},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006618792},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00479515},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051177773},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005763033},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007995594},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115186665},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018564811},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025610955},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0326571},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":33}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "35866" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:00 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1788,10 +1784,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b99a78d-b5ba-4279-a5a5-fcfcc1f2ba19 + - d969a4b5-df72-4ddd-a99d-cf709f4acc5a status: 200 OK code: 200 - duration: 18.639652ms + duration: 22.621795ms - id: 35 request: proto: HTTP/1.1 @@ -1808,7 +1804,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -1816,22 +1812,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 2345 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"scarce"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"scarce"},"POP2-48C-192G":{"availability":"shortage"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"shortage"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"scarce"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"scarce"},"POP2-HC-48C-96G":{"availability":"shortage"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"shortage"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"scarce"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "1798" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1839,12 +1835,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d186cbb-17c2-4dff-b92f-822c2aced6b3 + - 0d9c8fb7-4073-479a-a1c9-57bab506ad2e X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 121.841292ms + duration: 92.420832ms - id: 36 request: proto: HTTP/1.1 @@ -1861,7 +1857,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -1869,22 +1865,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31888 + content_length: 770 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "31888" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1892,12 +1888,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35ae1593-3ef5-4633-b069-c1ea89e461c6 + - 7c094004-1397-44da-9bb8-07c12825f8ab X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 96.726643ms + duration: 73.16094ms - id: 37 request: proto: HTTP/1.1 @@ -1914,7 +1910,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -1922,20 +1918,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35866 + content_length: 39263 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006178838},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007885154},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542411},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011297787},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018123051},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03177358},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05907464},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0060240133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075755045},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010678487},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016884452},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029296383},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076359143},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011793201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020107772},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036736917},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890308},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036364025},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042919926},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055046524},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006618792},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00479515},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051177773},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005763033},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007995594},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115186665},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018564811},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025610955},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0326571},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":33}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "35866" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1943,10 +1941,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae288897-93f6-4e45-a6bf-84006260f780 + - 0b2f0cb7-8bd8-415b-a42e-04f2bcae4613 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 38.108142ms + duration: 101.13133ms - id: 38 request: proto: HTTP/1.1 @@ -1963,7 +1963,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1971,22 +1971,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 14295 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"scarce"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"scarce"},"POP2-48C-192G":{"availability":"shortage"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"shortage"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"scarce"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"scarce"},"POP2-HC-48C-96G":{"availability":"shortage"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"shortage"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"scarce"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1798" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1994,12 +1994,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 612f4d1f-d22a-4660-aed7-a6296879cf66 + - 0e14921c-de79-475e-bf18-8188ddac0a59 X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 146.460279ms + duration: 47.672702ms - id: 39 request: proto: HTTP/1.1 @@ -2016,7 +2016,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2024,22 +2024,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 31888 + content_length: 63436 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "31888" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2047,12 +2045,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8770d6f-55a2-438a-85ad-ce54c3c2baf0 - X-Total-Count: - - "41" + - f79f9d29-7437-4993-acf8-34aa015eece3 status: 200 OK code: 200 - duration: 112.232858ms + duration: 21.374026ms - id: 40 request: proto: HTTP/1.1 @@ -2069,7 +2065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -2077,20 +2073,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35866 + content_length: 2345 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006178838},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007885154},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542411},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011297787},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018123051},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03177358},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05907464},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0060240133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075755045},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010678487},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016884452},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029296383},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076359143},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011793201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020107772},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036736917},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890308},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036364025},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042919926},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055046524},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006618792},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00479515},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051177773},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005763033},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007995594},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115186665},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018564811},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025610955},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0326571},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00535329},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006234058},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":33}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"}}}' headers: Content-Length: - - "35866" + - "2345" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2098,10 +2096,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7933214b-39a0-49bf-83f7-a0403a7ef881 + - 2f3b8776-def2-4002-8384-969a1a995a1f + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 25.00931ms + duration: 112.021934ms - id: 41 request: proto: HTTP/1.1 @@ -2118,7 +2118,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -2126,22 +2126,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 770 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"scarce"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"scarce"},"POP2-48C-192G":{"availability":"shortage"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"shortage"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"scarce"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"scarce"},"POP2-HC-48C-96G":{"availability":"shortage"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"shortage"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"scarce"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"scarce"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "1798" + - "770" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:01 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - - ; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2149,12 +2149,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6c3de40-3041-4fe3-8640-43d6e77e4d68 + - 20400e2c-1302-4a7e-a45a-816679f6b0db X-Total-Count: - - "41" + - "68" status: 200 OK code: 200 - duration: 99.02403ms + duration: 99.158914ms - id: 42 request: proto: HTTP/1.1 @@ -2179,22 +2179,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40221 + content_length: 40272 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "40221" + - "40272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2202,12 +2202,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5c6b236-a077-44b3-b799-a4a044036497 + - d1dd618d-e6df-45e7-ae96-246e77dc662f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 59.59212ms + duration: 43.257726ms - id: 43 request: proto: HTTP/1.1 @@ -2232,22 +2232,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19491 + content_length: 14060 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' headers: Content-Length: - - "19491" + - "14060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2255,12 +2255,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b677c160-3c68-4b2a-a613-295089f26843 + - 92da10a8-99df-4f55-9a99-6a399be5d1f4 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 52.899885ms + duration: 49.567584ms - id: 44 request: proto: HTTP/1.1 @@ -2285,20 +2285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73205 + content_length: 73161 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012380391,"m3_water_usage":4.5424537e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012809503,"m3_water_usage":5.7336604e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016490124,"m3_water_usage":8.2754303e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017348346,"m3_water_usage":0.0000010657843},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010690425,"m3_water_usage":0.000009040092},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002470959,"m3_water_usage":0.0000015741383},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026426034,"m3_water_usage":0.0000020506209},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041148523,"m3_water_usage":0.0000030673289},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004458141,"m3_water_usage":0.000004020294},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074026384,"m3_water_usage":0.00000605371},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008089216,"m3_water_usage":0.00000795964},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013978211,"m3_water_usage":0.000012026472},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012146856,"m3_water_usage":4.1635738e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016023054,"m3_water_usage":7.5176706e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002377545,"m3_water_usage":0.0000014225864},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039280243,"m3_water_usage":0.000002764225},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070289825,"m3_water_usage":0.000005447502},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015786653,"m3_water_usage":9.914592e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025140573,"m3_water_usage":0.000001919959},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043848413,"m3_water_usage":0.0000037769585},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008126409,"m3_water_usage":0.0000074909576},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015363814,"m3_water_usage":0.000014675037},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012430849,"m3_water_usage":3.5758745e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016203721,"m3_water_usage":6.304363e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023749464,"m3_water_usage":0.0000011761341},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038840948,"m3_water_usage":0.0000022675297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069023916,"m3_water_usage":0.000004450321},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0006991652,"m3_water_usage":2.216024e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008436193,"m3_water_usage":3.6890387e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011108142,"m3_water_usage":6.413722e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001356296,"m3_water_usage":8.9170584e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092205923,"m3_water_usage":1.465484e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010170526,"m3_water_usage":2.1214908e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012070393,"m3_water_usage":3.4335042e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001551279,"m3_water_usage":5.81076e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002275492,"m3_water_usage":0.0000010812043},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037239185,"m3_water_usage":0.000002081461},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006620771,"m3_water_usage":0.000004081974},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012414476,"m3_water_usage":0.0000080830005},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018208181,"m3_water_usage":0.000012084027},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024001887,"m3_water_usage":0.000016085052},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016756124,"m3_water_usage":8.5170444e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002524159,"m3_water_usage":0.0000016224611},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042212517,"m3_water_usage":0.0000031639745},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005918345,"m3_water_usage":0.0000047054878},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007615438,"m3_water_usage":0.0000062470012},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012352801,"m3_water_usage":4.542541e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012781911,"m3_water_usage":5.7337473e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016462534,"m3_water_usage":8.2755173e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017320756,"m3_water_usage":0.0000010657931},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010687666,"m3_water_usage":0.0000090401},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024682,"m3_water_usage":0.0000015741471},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026398443,"m3_water_usage":0.0000020506297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041120932,"m3_water_usage":0.0000030673377},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004455382,"m3_water_usage":0.0000040203026},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073998794,"m3_water_usage":0.000006053719},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008086457,"m3_water_usage":0.000007959649},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013975452,"m3_water_usage":0.000012026481},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012119266,"m3_water_usage":4.163661e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015995463,"m3_water_usage":7.5177576e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002374786,"m3_water_usage":0.0000014225951},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003925265,"m3_water_usage":0.0000027642338},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007026223,"m3_water_usage":0.000005447511},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015765195,"m3_water_usage":9.914659e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025119113,"m3_water_usage":0.0000019199656},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004382695,"m3_water_usage":0.0000037769653},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008124263,"m3_water_usage":0.0000074909644},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015361669,"m3_water_usage":0.000014675044},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012401965,"m3_water_usage":3.5759658e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016174837,"m3_water_usage":6.3044547e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023720579,"m3_water_usage":0.0000011761433},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038812065,"m3_water_usage":0.0000022675388},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068995035,"m3_water_usage":0.00000445033},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00069738715,"m3_water_usage":2.2160803e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00084184116,"m3_water_usage":3.689095e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011090362,"m3_water_usage":6.413778e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013545179,"m3_water_usage":8.9171147e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00091930013,"m3_water_usage":1.4655713e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010142935,"m3_water_usage":2.121578e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012042803,"m3_water_usage":3.4335915e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015485199,"m3_water_usage":5.8108475e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002272733,"m3_water_usage":0.000001081213},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037211594,"m3_water_usage":0.0000020814696},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066180117,"m3_water_usage":0.0000040819828},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012411717,"m3_water_usage":0.00000808301},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018205423,"m3_water_usage":0.000012084036},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023999127,"m3_water_usage":0.000016085061},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016728533,"m3_water_usage":8.5171314e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025213999,"m3_water_usage":0.0000016224699},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042184927,"m3_water_usage":0.0000031639831},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005915586,"m3_water_usage":0.000004705497},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076126787,"m3_water_usage":0.00000624701},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' headers: Content-Length: - - "73205" + - "73161" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,10 +2306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9a1e8a3-ee79-49d1-aa7d-d9708f3309eb + - f3be39f9-9953-4716-a414-79854852ac3a status: 200 OK code: 200 - duration: 67.585418ms + duration: 28.157151ms - id: 45 request: proto: HTTP/1.1 @@ -2334,22 +2334,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2254 + content_length: 2305 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"available"},"H100-2-M":{"availability":"available"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"shortage"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"shortage"},"H100-2-M":{"availability":"shortage"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"shortage"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"}}}' headers: Content-Length: - - "2254" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2357,12 +2357,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d396deaa-2ffb-433d-8e54-a97fe05da95f + - 0d45d232-7ef2-4e08-8751-ca2c4fcb103a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 87.13432ms + duration: 85.935256ms - id: 46 request: proto: HTTP/1.1 @@ -2387,22 +2387,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1190 + content_length: 848 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' headers: Content-Length: - - "1190" + - "848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,12 +2410,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6437eeb1-904f-416f-b2af-71c8629b2283 + - ac38fdc0-bd4b-4a20-b9dd-4f032a9bd42c X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 75.621447ms + duration: 94.995139ms - id: 47 request: proto: HTTP/1.1 @@ -2440,22 +2440,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40221 + content_length: 40272 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "40221" + - "40272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2463,12 +2463,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ef5eea0-97ca-44ac-b816-62924100f8ec + - 3d8a33d5-1092-4d7f-84ca-b9cb64fe0a34 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.216636ms + duration: 42.347882ms - id: 48 request: proto: HTTP/1.1 @@ -2493,22 +2493,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19491 + content_length: 14060 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' headers: Content-Length: - - "19491" + - "14060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2516,12 +2516,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f21b006-d408-4fd3-a071-c36621cab2c9 + - 3b94126d-0070-43ee-b9af-e02bdde215d0 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.854542ms + duration: 39.564123ms - id: 49 request: proto: HTTP/1.1 @@ -2546,20 +2546,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73205 + content_length: 73161 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012380391,"m3_water_usage":4.5424537e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012809503,"m3_water_usage":5.7336604e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016490124,"m3_water_usage":8.2754303e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017348346,"m3_water_usage":0.0000010657843},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010690425,"m3_water_usage":0.000009040092},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002470959,"m3_water_usage":0.0000015741383},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026426034,"m3_water_usage":0.0000020506209},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041148523,"m3_water_usage":0.0000030673289},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004458141,"m3_water_usage":0.000004020294},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074026384,"m3_water_usage":0.00000605371},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008089216,"m3_water_usage":0.00000795964},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013978211,"m3_water_usage":0.000012026472},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012146856,"m3_water_usage":4.1635738e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016023054,"m3_water_usage":7.5176706e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002377545,"m3_water_usage":0.0000014225864},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039280243,"m3_water_usage":0.000002764225},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070289825,"m3_water_usage":0.000005447502},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015786653,"m3_water_usage":9.914592e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025140573,"m3_water_usage":0.000001919959},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043848413,"m3_water_usage":0.0000037769585},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008126409,"m3_water_usage":0.0000074909576},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015363814,"m3_water_usage":0.000014675037},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012430849,"m3_water_usage":3.5758745e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016203721,"m3_water_usage":6.304363e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023749464,"m3_water_usage":0.0000011761341},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038840948,"m3_water_usage":0.0000022675297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069023916,"m3_water_usage":0.000004450321},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0006991652,"m3_water_usage":2.216024e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008436193,"m3_water_usage":3.6890387e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011108142,"m3_water_usage":6.413722e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001356296,"m3_water_usage":8.9170584e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092205923,"m3_water_usage":1.465484e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010170526,"m3_water_usage":2.1214908e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012070393,"m3_water_usage":3.4335042e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001551279,"m3_water_usage":5.81076e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002275492,"m3_water_usage":0.0000010812043},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037239185,"m3_water_usage":0.000002081461},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006620771,"m3_water_usage":0.000004081974},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012414476,"m3_water_usage":0.0000080830005},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018208181,"m3_water_usage":0.000012084027},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024001887,"m3_water_usage":0.000016085052},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016756124,"m3_water_usage":8.5170444e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002524159,"m3_water_usage":0.0000016224611},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042212517,"m3_water_usage":0.0000031639745},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005918345,"m3_water_usage":0.0000047054878},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007615438,"m3_water_usage":0.0000062470012},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012352801,"m3_water_usage":4.542541e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012781911,"m3_water_usage":5.7337473e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016462534,"m3_water_usage":8.2755173e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017320756,"m3_water_usage":0.0000010657931},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010687666,"m3_water_usage":0.0000090401},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024682,"m3_water_usage":0.0000015741471},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026398443,"m3_water_usage":0.0000020506297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041120932,"m3_water_usage":0.0000030673377},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004455382,"m3_water_usage":0.0000040203026},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073998794,"m3_water_usage":0.000006053719},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008086457,"m3_water_usage":0.000007959649},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013975452,"m3_water_usage":0.000012026481},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012119266,"m3_water_usage":4.163661e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015995463,"m3_water_usage":7.5177576e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002374786,"m3_water_usage":0.0000014225951},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003925265,"m3_water_usage":0.0000027642338},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007026223,"m3_water_usage":0.000005447511},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015765195,"m3_water_usage":9.914659e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025119113,"m3_water_usage":0.0000019199656},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004382695,"m3_water_usage":0.0000037769653},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008124263,"m3_water_usage":0.0000074909644},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015361669,"m3_water_usage":0.000014675044},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012401965,"m3_water_usage":3.5759658e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016174837,"m3_water_usage":6.3044547e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023720579,"m3_water_usage":0.0000011761433},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038812065,"m3_water_usage":0.0000022675388},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068995035,"m3_water_usage":0.00000445033},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00069738715,"m3_water_usage":2.2160803e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00084184116,"m3_water_usage":3.689095e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011090362,"m3_water_usage":6.413778e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013545179,"m3_water_usage":8.9171147e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00091930013,"m3_water_usage":1.4655713e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010142935,"m3_water_usage":2.121578e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012042803,"m3_water_usage":3.4335915e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015485199,"m3_water_usage":5.8108475e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002272733,"m3_water_usage":0.000001081213},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037211594,"m3_water_usage":0.0000020814696},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066180117,"m3_water_usage":0.0000040819828},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012411717,"m3_water_usage":0.00000808301},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018205423,"m3_water_usage":0.000012084036},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023999127,"m3_water_usage":0.000016085061},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016728533,"m3_water_usage":8.5171314e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025213999,"m3_water_usage":0.0000016224699},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042184927,"m3_water_usage":0.0000031639831},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005915586,"m3_water_usage":0.000004705497},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076126787,"m3_water_usage":0.00000624701},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' headers: Content-Length: - - "73205" + - "73161" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2567,10 +2567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac470e57-dc77-41d7-9e97-04c8f8c0b465 + - 04752761-d266-4eeb-8174-9e962ba56181 status: 200 OK code: 200 - duration: 22.61906ms + duration: 22.610253ms - id: 50 request: proto: HTTP/1.1 @@ -2595,22 +2595,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2254 + content_length: 2305 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"available"},"H100-2-M":{"availability":"available"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"shortage"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"shortage"},"H100-2-M":{"availability":"shortage"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"shortage"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"}}}' headers: Content-Length: - - "2254" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2618,12 +2618,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74665ab5-4718-4012-8816-076ea29e5149 + - e3c1de31-1537-424f-8c40-637c26f4e755 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 82.139424ms + duration: 78.51674ms - id: 51 request: proto: HTTP/1.1 @@ -2648,22 +2648,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1190 + content_length: 848 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' headers: Content-Length: - - "1190" + - "848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2671,12 +2671,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faff5835-19d6-4ece-877f-f1a03abfa2d2 + - a780274f-867e-4bcb-a076-b00a35d797a8 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 104.421451ms + duration: 93.887583ms - id: 52 request: proto: HTTP/1.1 @@ -2701,22 +2701,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40221 + content_length: 40272 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "40221" + - "40272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,12 +2724,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18b7aa6a-2963-43a7-ad8a-7b5ad5a6917a + - c93861ba-e1e7-4586-8912-afc149cfd45e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.16705ms + duration: 47.717758ms - id: 53 request: proto: HTTP/1.1 @@ -2754,22 +2754,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19491 + content_length: 14060 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' headers: Content-Length: - - "19491" + - "14060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,12 +2777,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b21c55-b77a-42c5-8baa-ab6851df777a + - 60af2a66-ce35-433a-9d7d-1529e3b0097a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 42.700281ms + duration: 34.301509ms - id: 54 request: proto: HTTP/1.1 @@ -2807,20 +2807,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 73205 + content_length: 73161 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012380391,"m3_water_usage":4.5424537e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012809503,"m3_water_usage":5.7336604e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016490124,"m3_water_usage":8.2754303e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017348346,"m3_water_usage":0.0000010657843},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010690425,"m3_water_usage":0.000009040092},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002470959,"m3_water_usage":0.0000015741383},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026426034,"m3_water_usage":0.0000020506209},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041148523,"m3_water_usage":0.0000030673289},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004458141,"m3_water_usage":0.000004020294},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074026384,"m3_water_usage":0.00000605371},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008089216,"m3_water_usage":0.00000795964},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013978211,"m3_water_usage":0.000012026472},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012146856,"m3_water_usage":4.1635738e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016023054,"m3_water_usage":7.5176706e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002377545,"m3_water_usage":0.0000014225864},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039280243,"m3_water_usage":0.000002764225},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070289825,"m3_water_usage":0.000005447502},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015786653,"m3_water_usage":9.914592e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025140573,"m3_water_usage":0.000001919959},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0043848413,"m3_water_usage":0.0000037769585},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008126409,"m3_water_usage":0.0000074909576},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015363814,"m3_water_usage":0.000014675037},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012430849,"m3_water_usage":3.5758745e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016203721,"m3_water_usage":6.304363e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023749464,"m3_water_usage":0.0000011761341},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038840948,"m3_water_usage":0.0000022675297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069023916,"m3_water_usage":0.000004450321},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0006991652,"m3_water_usage":2.216024e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008436193,"m3_water_usage":3.6890387e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011108142,"m3_water_usage":6.413722e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001356296,"m3_water_usage":8.9170584e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092205923,"m3_water_usage":1.465484e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010170526,"m3_water_usage":2.1214908e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012070393,"m3_water_usage":3.4335042e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001551279,"m3_water_usage":5.81076e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002275492,"m3_water_usage":0.0000010812043},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037239185,"m3_water_usage":0.000002081461},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006620771,"m3_water_usage":0.000004081974},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012414476,"m3_water_usage":0.0000080830005},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018208181,"m3_water_usage":0.000012084027},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024001887,"m3_water_usage":0.000016085052},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016756124,"m3_water_usage":8.5170444e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002524159,"m3_water_usage":0.0000016224611},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042212517,"m3_water_usage":0.0000031639745},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005918345,"m3_water_usage":0.0000047054878},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007615438,"m3_water_usage":0.0000062470012},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010392024,"m3_water_usage":2.736369e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012513391,"m3_water_usage":4.6632607e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012352801,"m3_water_usage":4.542541e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012781911,"m3_water_usage":5.7337473e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016462534,"m3_water_usage":8.2755173e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017320756,"m3_water_usage":0.0000010657931},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010687666,"m3_water_usage":0.0000090401},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024682,"m3_water_usage":0.0000015741471},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026398443,"m3_water_usage":0.0000020506297},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041120932,"m3_water_usage":0.0000030673377},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004455382,"m3_water_usage":0.0000040203026},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073998794,"m3_water_usage":0.000006053719},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008086457,"m3_water_usage":0.000007959649},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013975452,"m3_water_usage":0.000012026481},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012119266,"m3_water_usage":4.163661e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015995463,"m3_water_usage":7.5177576e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002374786,"m3_water_usage":0.0000014225951},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003925265,"m3_water_usage":0.0000027642338},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007026223,"m3_water_usage":0.000005447511},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015765195,"m3_water_usage":9.914659e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025119113,"m3_water_usage":0.0000019199656},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004382695,"m3_water_usage":0.0000037769653},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008124263,"m3_water_usage":0.0000074909644},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015361669,"m3_water_usage":0.000014675044},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012401965,"m3_water_usage":3.5759658e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016174837,"m3_water_usage":6.3044547e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023720579,"m3_water_usage":0.0000011761433},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038812065,"m3_water_usage":0.0000022675388},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068995035,"m3_water_usage":0.00000445033},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00069738715,"m3_water_usage":2.2160803e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00084184116,"m3_water_usage":3.689095e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011090362,"m3_water_usage":6.413778e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013545179,"m3_water_usage":8.9171147e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00091930013,"m3_water_usage":1.4655713e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010142935,"m3_water_usage":2.121578e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012042803,"m3_water_usage":3.4335915e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015485199,"m3_water_usage":5.8108475e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002272733,"m3_water_usage":0.000001081213},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037211594,"m3_water_usage":0.0000020814696},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066180117,"m3_water_usage":0.0000040819828},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012411717,"m3_water_usage":0.00000808301},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018205423,"m3_water_usage":0.000012084036},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023999127,"m3_water_usage":0.000016085061},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016728533,"m3_water_usage":8.5171314e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025213999,"m3_water_usage":0.0000016224699},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042184927,"m3_water_usage":0.0000031639831},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005915586,"m3_water_usage":0.000004705497},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076126787,"m3_water_usage":0.00000624701},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010364434,"m3_water_usage":2.736456e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00124858,"m3_water_usage":4.663348e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"}],"total_count":66}' headers: Content-Length: - - "73205" + - "73161" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,10 +2828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30965236-e862-4781-ae96-ded1fbab40de + - 243ca78c-5eff-407a-a4d8-8148322f1bc7 status: 200 OK code: 200 - duration: 26.110389ms + duration: 26.173192ms - id: 55 request: proto: HTTP/1.1 @@ -2856,22 +2856,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2254 + content_length: 2305 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"available"},"H100-2-M":{"availability":"available"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"GPU-3070-S":{"availability":"shortage"},"H100-1-80G":{"availability":"available"},"H100-1-M":{"availability":"available"},"H100-2-80G":{"availability":"shortage"},"H100-2-M":{"availability":"shortage"},"H100-SXM-2-80G":{"availability":"available"},"H100-SXM-4-80G":{"availability":"available"},"H100-SXM-8-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"shortage"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"}}}' headers: Content-Length: - - "2254" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,12 +2879,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd1af393-537c-4d67-be53-6be8305f2ddc + - 84aa5ac0-4bce-4c16-8d85-1f1e27bd975d X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 87.031226ms + duration: 79.326048ms - id: 56 request: proto: HTTP/1.1 @@ -2909,22 +2909,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1190 + content_length: 848 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"}}}' headers: Content-Length: - - "1190" + - "848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2932,12 +2932,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38aefa40-766d-42a7-8c08-4499b770c400 + - c737d9a9-3fd0-4805-8742-48900c0530ba X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 95.610385ms + duration: 96.87877ms - id: 57 request: proto: HTTP/1.1 @@ -2962,22 +2962,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30282 + content_length: 24905 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":5.29,"mig_profile":null,"monthly_price":3861.7,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.76,"mig_profile":null,"monthly_price":1284.8,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.88,"mig_profile":null,"monthly_price":642.4,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.44,"mig_profile":null,"monthly_price":321.2,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.221,"mig_profile":null,"monthly_price":161.33,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30282" + - "24905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,12 +2985,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af274816-e264-492e-b073-017f235b57cb + - 7bceff63-a0ff-412b-9dca-53961654f210 X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 41.280103ms + duration: 28.088162ms - id: 58 request: proto: HTTP/1.1 @@ -3015,20 +3015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35711 + content_length: 38016 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009162973,"m3_water_usage":3.0258654e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397537,"m3_water_usage":3.028852e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010655794,"m3_water_usage":3.094552e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021866665,"m3_water_usage":3.0348243e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003880492,"m3_water_usage":3.04677e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007268143,"m3_water_usage":3.070661e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014043445,"m3_water_usage":3.118443e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008916768,"m3_water_usage":3.0255624e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012905127,"m3_water_usage":3.0282454e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020881845,"m3_water_usage":3.033612e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003683528,"m3_water_usage":3.0443452e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006874215,"m3_water_usage":3.0658114e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013497617,"m3_water_usage":2.358556e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023162027,"m3_water_usage":2.365984e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042490847,"m3_water_usage":2.38084e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012337784,"m3_water_usage":3.02688e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019747159,"m3_water_usage":3.030881e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034565907,"m3_water_usage":3.038883e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064203404,"m3_water_usage":3.0548872e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01234784,"m3_water_usage":3.0868954e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827534,"m3_water_usage":3.1189035e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024202839,"m3_water_usage":3.1509117e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013671615,"m3_water_usage":3.029045e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022414823,"m3_water_usage":3.0352112e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039901235,"m3_water_usage":3.047543e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057387645,"m3_water_usage":3.0598752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007487406,"m3_water_usage":3.0722074e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009135382,"m3_water_usage":3.0267373e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013369946,"m3_water_usage":3.0297237e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010653035,"m3_water_usage":3.095424e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021839074,"m3_water_usage":3.0356965e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003877733,"m3_water_usage":3.0476418e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007265384,"m3_water_usage":3.071533e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014040685,"m3_water_usage":3.119315e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008889177,"m3_water_usage":3.0264342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012877536,"m3_water_usage":3.0291176e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020854254,"m3_water_usage":3.034484e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003680769,"m3_water_usage":3.045217e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006871456,"m3_water_usage":3.0666833e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013476157,"m3_water_usage":2.3592342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023140567,"m3_water_usage":2.3666622e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042469385,"m3_water_usage":2.3815183e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute GP1-L Instance - fr-par-3 (1.139€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081127025,"m3_water_usage":2.4112301e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":139000000,"units":1}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-3"},{"description":"Compute GP1-XL Instance - fr-par-3 (2.462€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015590344,"m3_water_usage":2.468703e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":462000000,"units":2}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012310193,"m3_water_usage":3.027752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019719568,"m3_water_usage":3.031753e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034538317,"m3_water_usage":3.039755e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064175813,"m3_water_usage":3.055759e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012345081,"m3_water_usage":3.0877672e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827258,"m3_water_usage":3.1197754e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02420008,"m3_water_usage":3.151784e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013644025,"m3_water_usage":3.029917e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002238723,"m3_water_usage":3.036083e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039873645,"m3_water_usage":3.0484152e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057360055,"m3_water_usage":3.060747e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007484647,"m3_water_usage":3.0730792e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":34}' headers: Content-Length: - - "35711" + - "38016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3036,10 +3036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f15b44e6-a223-4e33-a4ee-43df62c117e7 + - f0bf7b97-c09c-4018-a803-b7b4c59cf8a0 status: 200 OK code: 200 - duration: 19.784444ms + duration: 17.256978ms - id: 59 request: proto: HTTP/1.1 @@ -3064,22 +3064,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1494 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"scarce"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1786" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3087,12 +3087,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94e7455a-8aac-40c1-a245-a2c8529820fd + - 198b8b83-5acf-4a00-a1aa-75f2dba8488c X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 63.247107ms + duration: 56.762973ms - id: 60 request: proto: HTTP/1.1 @@ -3117,22 +3117,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30282 + content_length: 24905 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":5.29,"mig_profile":null,"monthly_price":3861.7,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.76,"mig_profile":null,"monthly_price":1284.8,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.88,"mig_profile":null,"monthly_price":642.4,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.44,"mig_profile":null,"monthly_price":321.2,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.221,"mig_profile":null,"monthly_price":161.33,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30282" + - "24905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3140,12 +3140,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c074558e-22de-4852-9c21-a2b99aad729e + - 543dd861-0dc3-4c47-b3e5-719988fd2cb9 X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 42.83781ms + duration: 42.616605ms - id: 61 request: proto: HTTP/1.1 @@ -3170,20 +3170,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35711 + content_length: 38016 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009162973,"m3_water_usage":3.0258654e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397537,"m3_water_usage":3.028852e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010655794,"m3_water_usage":3.094552e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021866665,"m3_water_usage":3.0348243e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003880492,"m3_water_usage":3.04677e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007268143,"m3_water_usage":3.070661e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014043445,"m3_water_usage":3.118443e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008916768,"m3_water_usage":3.0255624e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012905127,"m3_water_usage":3.0282454e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020881845,"m3_water_usage":3.033612e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003683528,"m3_water_usage":3.0443452e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006874215,"m3_water_usage":3.0658114e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013497617,"m3_water_usage":2.358556e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023162027,"m3_water_usage":2.365984e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042490847,"m3_water_usage":2.38084e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012337784,"m3_water_usage":3.02688e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019747159,"m3_water_usage":3.030881e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034565907,"m3_water_usage":3.038883e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064203404,"m3_water_usage":3.0548872e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01234784,"m3_water_usage":3.0868954e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827534,"m3_water_usage":3.1189035e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024202839,"m3_water_usage":3.1509117e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013671615,"m3_water_usage":3.029045e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022414823,"m3_water_usage":3.0352112e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039901235,"m3_water_usage":3.047543e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057387645,"m3_water_usage":3.0598752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007487406,"m3_water_usage":3.0722074e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009135382,"m3_water_usage":3.0267373e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013369946,"m3_water_usage":3.0297237e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010653035,"m3_water_usage":3.095424e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021839074,"m3_water_usage":3.0356965e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003877733,"m3_water_usage":3.0476418e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007265384,"m3_water_usage":3.071533e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014040685,"m3_water_usage":3.119315e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008889177,"m3_water_usage":3.0264342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012877536,"m3_water_usage":3.0291176e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020854254,"m3_water_usage":3.034484e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003680769,"m3_water_usage":3.045217e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006871456,"m3_water_usage":3.0666833e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013476157,"m3_water_usage":2.3592342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023140567,"m3_water_usage":2.3666622e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042469385,"m3_water_usage":2.3815183e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute GP1-L Instance - fr-par-3 (1.139€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081127025,"m3_water_usage":2.4112301e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":139000000,"units":1}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-3"},{"description":"Compute GP1-XL Instance - fr-par-3 (2.462€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015590344,"m3_water_usage":2.468703e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":462000000,"units":2}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012310193,"m3_water_usage":3.027752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019719568,"m3_water_usage":3.031753e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034538317,"m3_water_usage":3.039755e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064175813,"m3_water_usage":3.055759e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012345081,"m3_water_usage":3.0877672e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827258,"m3_water_usage":3.1197754e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02420008,"m3_water_usage":3.151784e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013644025,"m3_water_usage":3.029917e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002238723,"m3_water_usage":3.036083e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039873645,"m3_water_usage":3.0484152e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057360055,"m3_water_usage":3.060747e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007484647,"m3_water_usage":3.0730792e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":34}' headers: Content-Length: - - "35711" + - "38016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3191,10 +3191,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4909f4ef-f536-4afb-9985-ffca746ed317 + - 215b63b1-5b68-429a-b022-f3192bbf99b3 status: 200 OK code: 200 - duration: 28.066826ms + duration: 24.862375ms - id: 62 request: proto: HTTP/1.1 @@ -3219,22 +3219,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1494 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"scarce"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1786" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3242,12 +3242,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95643501-1358-4fe3-bdac-0691ff73fda8 + - 6cb32674-1cd7-4ccd-a46e-e37be34b6c2c X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 77.098703ms + duration: 66.915715ms - id: 63 request: proto: HTTP/1.1 @@ -3272,22 +3272,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30282 + content_length: 24905 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":5.29,"mig_profile":null,"monthly_price":3861.7,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.76,"mig_profile":null,"monthly_price":1284.8,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.88,"mig_profile":null,"monthly_price":642.4,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.44,"mig_profile":null,"monthly_price":321.2,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.221,"mig_profile":null,"monthly_price":161.33,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.5944,"mig_profile":null,"monthly_price":433.912,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2982,"mig_profile":null,"monthly_price":217.686,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1476,"mig_profile":null,"monthly_price":107.748,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.885,"mig_profile":null,"monthly_price":646.05,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1103,"mig_profile":null,"monthly_price":80.4825,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1291.1,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.655,"mig_profile":null,"monthly_price":1938.15,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2205,"mig_profile":null,"monthly_price":160.965,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.525,"mig_profile":null,"monthly_price":2573.25,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.435,"mig_profile":null,"monthly_price":317.55,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6384,"mig_profile":null,"monthly_price":466.032,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0798,"mig_profile":null,"monthly_price":58.254,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.2768,"mig_profile":null,"monthly_price":932.064,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.905,"mig_profile":null,"monthly_price":1390.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1596,"mig_profile":null,"monthly_price":116.508,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.5536,"mig_profile":null,"monthly_price":1864.128,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3192,"mig_profile":null,"monthly_price":233.016,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.236,"mig_profile":null,"monthly_price":902.28,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1545,"mig_profile":null,"monthly_price":112.785,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.472,"mig_profile":null,"monthly_price":1804.56,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.705,"mig_profile":null,"monthly_price":2704.65,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.309,"mig_profile":null,"monthly_price":225.57,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":4.944,"mig_profile":null,"monthly_price":3609.12,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.618,"mig_profile":null,"monthly_price":451.14,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.0896,"mig_profile":null,"monthly_price":795.408,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3831,"mig_profile":null,"monthly_price":279.663,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6786,"mig_profile":null,"monthly_price":495.378,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.315,"mig_profile":null,"monthly_price":959.95,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.658,"mig_profile":null,"monthly_price":480.34,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.329,"mig_profile":null,"monthly_price":240.17,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.164,"mig_profile":null,"monthly_price":119.72,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.082,"mig_profile":null,"monthly_price":59.86,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30282" + - "24905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,12 +3295,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0f74346-d375-4e78-8330-053893a8db49 + - 1580bdf3-ba9f-4d67-acdc-be41a0dbf3d9 X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 45.460046ms + duration: 55.206436ms - id: 64 request: proto: HTTP/1.1 @@ -3325,20 +3325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 35711 + content_length: 38016 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009162973,"m3_water_usage":3.0258654e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397537,"m3_water_usage":3.028852e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010655794,"m3_water_usage":3.094552e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021866665,"m3_water_usage":3.0348243e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003880492,"m3_water_usage":3.04677e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007268143,"m3_water_usage":3.070661e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014043445,"m3_water_usage":3.118443e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008916768,"m3_water_usage":3.0255624e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012905127,"m3_water_usage":3.0282454e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020881845,"m3_water_usage":3.033612e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003683528,"m3_water_usage":3.0443452e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006874215,"m3_water_usage":3.0658114e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013497617,"m3_water_usage":2.358556e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023162027,"m3_water_usage":2.365984e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042490847,"m3_water_usage":2.38084e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012337784,"m3_water_usage":3.02688e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019747159,"m3_water_usage":3.030881e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034565907,"m3_water_usage":3.038883e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064203404,"m3_water_usage":3.0548872e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01234784,"m3_water_usage":3.0868954e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827534,"m3_water_usage":3.1189035e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024202839,"m3_water_usage":3.1509117e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013671615,"m3_water_usage":3.029045e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022414823,"m3_water_usage":3.0352112e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039901235,"m3_water_usage":3.047543e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057387645,"m3_water_usage":3.0598752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007487406,"m3_water_usage":3.0722074e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007114211,"m3_water_usage":3.0244205e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00093000126,"m3_water_usage":3.025962e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009135382,"m3_water_usage":3.0267373e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013369946,"m3_water_usage":3.0297237e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010653035,"m3_water_usage":3.095424e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021839074,"m3_water_usage":3.0356965e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003877733,"m3_water_usage":3.0476418e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007265384,"m3_water_usage":3.071533e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014040685,"m3_water_usage":3.119315e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0008889177,"m3_water_usage":3.0264342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012877536,"m3_water_usage":3.0291176e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020854254,"m3_water_usage":3.034484e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003680769,"m3_water_usage":3.045217e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006871456,"m3_water_usage":3.0666833e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013476157,"m3_water_usage":2.3592342e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023140567,"m3_water_usage":2.3666622e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042469385,"m3_water_usage":2.3815183e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute GP1-L Instance - fr-par-3 (1.139€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0081127025,"m3_water_usage":2.4112301e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":139000000,"units":1}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-3"},{"description":"Compute GP1-XL Instance - fr-par-3 (2.462€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015590344,"m3_water_usage":2.468703e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":462000000,"units":2}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012310193,"m3_water_usage":3.027752e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019719568,"m3_water_usage":3.031753e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034538317,"m3_water_usage":3.039755e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064175813,"m3_water_usage":3.055759e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012345081,"m3_water_usage":3.0877672e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01827258,"m3_water_usage":3.1197754e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02420008,"m3_water_usage":3.151784e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013644025,"m3_water_usage":3.029917e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002238723,"m3_water_usage":3.036083e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039873645,"m3_water_usage":3.0484152e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057360055,"m3_water_usage":3.060747e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007484647,"m3_water_usage":3.0730792e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00070866203,"m3_water_usage":3.0252924e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00092724216,"m3_water_usage":3.026834e-8},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"}],"total_count":34}' headers: Content-Length: - - "35711" + - "38016" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3346,10 +3346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06e652fc-f663-459a-b3a1-3e580aefe2ea + - 174a6d6b-add9-420d-8181-749e415cf7a6 status: 200 OK code: 200 - duration: 21.043549ms + duration: 23.447714ms - id: 65 request: proto: HTTP/1.1 @@ -3374,22 +3374,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1786 + content_length: 1494 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XS":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"scarce"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1786" + - "1494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3397,12 +3397,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e889bd9-7f08-4d6c-86a5-ee5f34235a18 + - cdd83e47-6f50-44a5-a024-eb470f92814d X-Total-Count: - - "39" + - "32" status: 200 OK code: 200 - duration: 68.807114ms + duration: 77.434502ms - id: 66 request: proto: HTTP/1.1 @@ -3419,7 +3419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -3427,22 +3427,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 39006 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}}}}' headers: Content-Length: - - "30157" + - "39006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3450,12 +3450,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8724184a-7629-4338-b535-2716bf571c69 + - dae4d033-2d15-48b7-b1a5-ca207f992c5d X-Total-Count: - - "39" + - "58" status: 200 OK code: 200 - duration: 51.91264ms + duration: 67.367522ms - id: 67 request: proto: HTTP/1.1 @@ -3472,7 +3472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3480,20 +3480,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34586 + content_length: 6405 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003201853},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039840336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021192005},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055483948},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008677117},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027449448},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031408237},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003861975},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053042774},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008188882},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013958091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025798993},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027401259},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030605793},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036412133},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862754},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073058354},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012191999},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021964325},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173665},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041508976},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040346594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056496467},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008879621},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012109594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015339568},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' + body: '{"servers":{"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "34586" + - "6405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3501,10 +3503,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf07f40f-6520-465f-8cd1-41b5ecce2fbf + - 62d26016-2160-4ff4-b48e-7b82de5c0cd1 + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 25.897269ms + duration: 66.606535ms - id: 68 request: proto: HTTP/1.1 @@ -3521,7 +3525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -3529,22 +3533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 52626 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020177732,"m3_water_usage":0.0000027409822},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028679534,"m3_water_usage":0.000004010194},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021571921,"m3_water_usage":0.000031932857},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004568314,"m3_water_usage":0.0000065486183},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007969036,"m3_water_usage":0.000011625466},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014770479,"m3_water_usage":0.000021779162},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028373364,"m3_water_usage":0.000042086554},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019498421,"m3_water_usage":0.0000026121631},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027320914,"m3_water_usage":0.0000037525558},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00429659,"m3_water_usage":0.0000060333414},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074255876,"m3_water_usage":0.000010594913},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013683583,"m3_water_usage":0.000019718056},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029359553,"m3_water_usage":0.0000043016094},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004963783,"m3_water_usage":0.0000074585087},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009019438,"m3_water_usage":0.000013772307},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01713075,"m3_water_usage":0.000026399905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032820657,"m3_water_usage":0.000050825776},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019205819,"m3_water_usage":0.0000024683802},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026188921,"m3_water_usage":0.0000033960664},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040155128,"m3_water_usage":0.000005251439},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068087536,"m3_water_usage":0.0000089621835},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012395235,"m3_water_usage":0.000016383674},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009352081,"m3_water_usage":0.0000012365155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011179677,"m3_water_usage":0.0000015245569},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014357306,"m3_water_usage":0.000002025382},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020235009,"m3_water_usage":0.0000029517741},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025635152,"m3_water_usage":0.0000038029086},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397692,"m3_water_usage":0.0000016948125},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015119457,"m3_water_usage":0.000001917855},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018562988,"m3_water_usage":0.0000023639393},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024802368,"m3_water_usage":0.0000031722063},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037928808,"m3_water_usage":0.0000048726424},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006418169,"m3_water_usage":0.000008273515},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011668745,"m3_water_usage":0.000015075259},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022169897,"m3_water_usage":0.000028678749},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03267105,"m3_water_usage":0.000042282238},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043172203,"m3_water_usage":0.00005588573},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029229808,"m3_water_usage":0.000004092343},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046783686,"m3_water_usage":0.000006712916},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008189145,"m3_water_usage":0.000011954061},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0116999205,"m3_water_usage":0.000017195207},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0152106965,"m3_water_usage":0.000022436352},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' headers: Content-Length: - - "1798" + - "52626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:04 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3552,12 +3554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 776e6357-506a-4f2c-addd-86d1169cf02d - X-Total-Count: - - "39" + - e3cab58f-2aa0-42fe-adca-90a1d41111c2 status: 200 OK code: 200 - duration: 78.313616ms + duration: 24.305331ms - id: 69 request: proto: HTTP/1.1 @@ -3574,7 +3574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -3582,22 +3582,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 2304 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"}}}' headers: Content-Length: - - "30157" + - "2304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3605,12 +3605,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a7236f9-4c3c-4ed4-858f-94a75f3302c8 + - 35d3091c-ca43-4e5e-9445-0114f20bbc8d X-Total-Count: - - "39" + - "58" status: 200 OK code: 200 - duration: 57.76172ms + duration: 88.782765ms - id: 70 request: proto: HTTP/1.1 @@ -3627,7 +3627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3635,20 +3635,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34586 + content_length: 347 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003201853},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039840336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021192005},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055483948},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008677117},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027449448},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031408237},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003861975},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053042774},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008188882},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013958091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025798993},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027401259},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030605793},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036412133},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862754},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073058354},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012191999},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021964325},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173665},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041508976},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040346594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056496467},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008879621},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012109594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015339568},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' + body: '{"servers":{"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "34586" + - "347" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3656,10 +3658,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58c03784-a3ed-4325-ad48-1d41fdc6ad91 + - ee2317f3-206c-4ad5-8ef5-4e427adfbb1a + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 26.632731ms + duration: 89.351531ms - id: 71 request: proto: HTTP/1.1 @@ -3676,7 +3680,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -3684,22 +3688,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 39006 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}}}}' headers: Content-Length: - - "1798" + - "39006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3707,12 +3711,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40143178-1fc2-4ef7-9ee5-c8ce2b869f94 + - db70220d-de2b-4b6a-99ab-968ee15d3330 X-Total-Count: - - "39" + - "58" status: 200 OK code: 200 - duration: 68.782568ms + duration: 71.587342ms - id: 72 request: proto: HTTP/1.1 @@ -3729,7 +3733,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3737,22 +3741,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 6405 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "30157" + - "6405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - - ; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3760,12 +3764,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd722638-5a56-4684-8437-4e6a2336f296 + - 7a1b31e8-77c4-44b6-8ba0-87885973aafa X-Total-Count: - - "39" + - "58" status: 200 OK code: 200 - duration: 56.093756ms + duration: 66.658532ms - id: 73 request: proto: HTTP/1.1 @@ -3782,7 +3786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -3790,20 +3794,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34586 + content_length: 52626 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003201853},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039840336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021192005},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055483948},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008677117},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027449448},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031408237},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003861975},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053042774},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008188882},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013958091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025798993},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027401259},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030605793},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036412133},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862754},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073058354},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012191999},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021964325},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173665},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041508976},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040346594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056496467},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008879621},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012109594},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015339568},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028234194},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032271661},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020177732,"m3_water_usage":0.0000027409822},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028679534,"m3_water_usage":0.000004010194},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021571921,"m3_water_usage":0.000031932857},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004568314,"m3_water_usage":0.0000065486183},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007969036,"m3_water_usage":0.000011625466},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014770479,"m3_water_usage":0.000021779162},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028373364,"m3_water_usage":0.000042086554},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019498421,"m3_water_usage":0.0000026121631},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027320914,"m3_water_usage":0.0000037525558},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00429659,"m3_water_usage":0.0000060333414},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074255876,"m3_water_usage":0.000010594913},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013683583,"m3_water_usage":0.000019718056},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029359553,"m3_water_usage":0.0000043016094},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004963783,"m3_water_usage":0.0000074585087},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009019438,"m3_water_usage":0.000013772307},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01713075,"m3_water_usage":0.000026399905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032820657,"m3_water_usage":0.000050825776},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019205819,"m3_water_usage":0.0000024683802},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026188921,"m3_water_usage":0.0000033960664},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040155128,"m3_water_usage":0.000005251439},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068087536,"m3_water_usage":0.0000089621835},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012395235,"m3_water_usage":0.000016383674},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009352081,"m3_water_usage":0.0000012365155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011179677,"m3_water_usage":0.0000015245569},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014357306,"m3_water_usage":0.000002025382},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020235009,"m3_water_usage":0.0000029517741},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025635152,"m3_water_usage":0.0000038029086},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397692,"m3_water_usage":0.0000016948125},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015119457,"m3_water_usage":0.000001917855},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018562988,"m3_water_usage":0.0000023639393},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024802368,"m3_water_usage":0.0000031722063},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037928808,"m3_water_usage":0.0000048726424},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006418169,"m3_water_usage":0.000008273515},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011668745,"m3_water_usage":0.000015075259},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022169897,"m3_water_usage":0.000028678749},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03267105,"m3_water_usage":0.000042282238},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043172203,"m3_water_usage":0.00005588573},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029229808,"m3_water_usage":0.000004092343},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046783686,"m3_water_usage":0.000006712916},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008189145,"m3_water_usage":0.000011954061},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0116999205,"m3_water_usage":0.000017195207},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0152106965,"m3_water_usage":0.000022436352},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' headers: Content-Length: - - "34586" + - "52626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3811,10 +3815,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b841a4fa-1e21-4d2a-835b-3034b8ae62f0 + - c47eb5cb-928b-4d7e-8307-7c46faaa9097 status: 200 OK code: 200 - duration: 30.838844ms + duration: 25.338518ms - id: 74 request: proto: HTTP/1.1 @@ -3831,7 +3835,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -3839,22 +3843,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 2304 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"}}}' headers: Content-Length: - - "1798" + - "2304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3862,12 +3866,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd3daa18-8e32-4d12-a654-95cb11e807e4 + - dc6d074d-a84d-410d-a3fa-c8d0e05d335f X-Total-Count: - - "39" + - "58" status: 200 OK code: 200 - duration: 84.669208ms + duration: 106.756919ms - id: 75 request: proto: HTTP/1.1 @@ -3884,7 +3888,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -3892,22 +3896,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39719 + content_length: 347 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "39719" + - "347" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:05 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3915,12 +3919,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 934230f0-ad91-4e07-b0bd-bee8e3251de3 + - 66e978c0-b6c3-43fd-abfe-bd5fc1a01fff X-Total-Count: - - "59" + - "58" status: 200 OK code: 200 - duration: 116.712526ms + duration: 89.699173ms - id: 76 request: proto: HTTP/1.1 @@ -3937,7 +3941,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -3945,22 +3949,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6964 + content_length: 39006 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}}}}' headers: Content-Length: - - "6964" + - "39006" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3968,12 +3972,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1468807f-6b1b-4172-a092-4b9bb17c825d + - a191c8c9-d154-4596-9b78-ebad08c05a9e X-Total-Count: - - "59" + - "58" status: 200 OK code: 200 - duration: 84.844968ms + duration: 65.312941ms - id: 77 request: proto: HTTP/1.1 @@ -3990,7 +3994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3998,20 +4002,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56166 + content_length: 6405 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00308996},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004557515},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036843725},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074926247},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133628445},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025103284},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048584163},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029593683},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042963317},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006970258},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012318111},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023013817},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004825288},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008388706},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015515542},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029769212},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057340436},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013684194},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001691289},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002252665},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032910544},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042450805},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019030744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002183744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002745083},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037621811},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0059019574},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01018151},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018740615},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035858825},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052977037},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009525},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004652501},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076825973},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374279},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019802982},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025863174},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' + body: '{"servers":{"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "56166" + - "6405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4019,10 +4025,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccfd3240-2270-41b5-aa78-3f95c2128e14 + - a84ff0d3-aae6-47a9-8517-fa682b9afaed + X-Total-Count: + - "58" status: 200 OK code: 200 - duration: 25.734042ms + duration: 53.475492ms - id: 78 request: proto: HTTP/1.1 @@ -4039,7 +4047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-1 method: GET response: proto: HTTP/2.0 @@ -4047,22 +4055,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2263 + content_length: 52626 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020177732,"m3_water_usage":0.0000027409822},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0028679534,"m3_water_usage":0.000004010194},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021571921,"m3_water_usage":0.000031932857},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004568314,"m3_water_usage":0.0000065486183},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007969036,"m3_water_usage":0.000011625466},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014770479,"m3_water_usage":0.000021779162},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028373364,"m3_water_usage":0.000042086554},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019498421,"m3_water_usage":0.0000026121631},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027320914,"m3_water_usage":0.0000037525558},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00429659,"m3_water_usage":0.0000060333414},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074255876,"m3_water_usage":0.000010594913},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013683583,"m3_water_usage":0.000019718056},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029359553,"m3_water_usage":0.0000043016094},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004963783,"m3_water_usage":0.0000074585087},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009019438,"m3_water_usage":0.000013772307},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01713075,"m3_water_usage":0.000026399905},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032820657,"m3_water_usage":0.000050825776},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019205819,"m3_water_usage":0.0000024683802},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0026188921,"m3_water_usage":0.0000033960664},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040155128,"m3_water_usage":0.000005251439},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068087536,"m3_water_usage":0.0000089621835},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012395235,"m3_water_usage":0.000016383674},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0009352081,"m3_water_usage":0.0000012365155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011179677,"m3_water_usage":0.0000015245569},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0014357306,"m3_water_usage":0.000002025382},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020235009,"m3_water_usage":0.0000029517741},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025635152,"m3_water_usage":0.0000038029086},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013397692,"m3_water_usage":0.0000016948125},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0015119457,"m3_water_usage":0.000001917855},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018562988,"m3_water_usage":0.0000023639393},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0024802368,"m3_water_usage":0.0000031722063},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037928808,"m3_water_usage":0.0000048726424},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006418169,"m3_water_usage":0.000008273515},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011668745,"m3_water_usage":0.000015075259},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022169897,"m3_water_usage":0.000028678749},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03267105,"m3_water_usage":0.000042282238},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043172203,"m3_water_usage":0.00005588573},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029229808,"m3_water_usage":0.000004092343},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046783686,"m3_water_usage":0.000006712916},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008189145,"m3_water_usage":0.000011954061},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0116999205,"m3_water_usage":0.000017195207},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0152106965,"m3_water_usage":0.000022436352},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016064397,"m3_water_usage":0.0000021269134},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020452868,"m3_water_usage":0.0000027820565},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"}],"total_count":47}' headers: Content-Length: - - "2263" + - "52626" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4070,12 +4076,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64360102-8b34-4223-8d17-fca9fb358311 - X-Total-Count: - - "59" + - a6a191f7-bd9e-45bc-963c-73cb8e22b7b5 status: 200 OK code: 200 - duration: 119.350832ms + duration: 23.110121ms - id: 79 request: proto: HTTP/1.1 @@ -4092,7 +4096,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4100,22 +4104,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400 + content_length: 2304 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' + body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"}}}' headers: Content-Length: - - "400" + - "2304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4123,12 +4127,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bd69cf4-df05-436f-ae3b-b4a6cc737ebc + - 58f0983a-1d14-4fa9-846e-097d1c1a6683 X-Total-Count: - - "59" + - "58" status: 200 OK code: 200 - duration: 118.180924ms + duration: 93.636554ms - id: 80 request: proto: HTTP/1.1 @@ -4145,7 +4149,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -4153,22 +4157,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39719 + content_length: 347 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' headers: Content-Length: - - "39719" + - "347" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4176,12 +4180,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90976687-69d8-4ab7-8912-32c870ad9c56 + - fa887bfe-6145-48d6-8bcf-014f768be87d X-Total-Count: - - "59" + - "58" status: 200 OK code: 200 - duration: 81.644655ms + duration: 68.240669ms - id: 81 request: proto: HTTP/1.1 @@ -4198,7 +4202,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4206,22 +4210,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6964 + content_length: 24777 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "6964" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4229,12 +4233,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25461c73-ac84-416d-993c-dc17a79c6650 + - e1b72913-2cd5-407b-96b2-2366bf97c355 X-Total-Count: - - "59" + - "32" status: 200 OK code: 200 - duration: 80.006927ms + duration: 94.703855ms - id: 82 request: proto: HTTP/1.1 @@ -4251,7 +4255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -4259,20 +4263,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56166 + content_length: 34584 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00308996},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004557515},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036843725},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074926247},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133628445},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025103284},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048584163},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029593683},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042963317},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006970258},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012318111},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023013817},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004825288},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008388706},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015515542},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029769212},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057340436},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013684194},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001691289},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002252665},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032910544},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042450805},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019030744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002183744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002745083},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037621811},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0059019574},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01018151},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018740615},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035858825},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052977037},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009525},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004652501},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076825973},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374279},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019802982},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025863174},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031990726},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003981253},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021189224},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055456143},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008674336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493178},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027446669},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031380432},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038591945},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005301497},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008186102},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013955311},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025771188},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027373456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030577988},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036384328},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048599737},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007303055},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012189218},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021961544},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173387},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041506197},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040318794},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056468663},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008876841},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012106814},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015336788},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' headers: Content-Length: - - "56166" + - "34584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4280,10 +4284,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4fd8320-a8ff-4355-b15f-9348d431252e + - 9acf64df-7d7a-4cc4-be48-52781e06018a status: 200 OK code: 200 - duration: 25.426144ms + duration: 21.182136ms - id: 83 request: proto: HTTP/1.1 @@ -4300,7 +4304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4308,22 +4312,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2263 + content_length: 1509 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "2263" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:06 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Link: - - ; rel="next",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4331,12 +4335,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74004a35-372a-40bf-8516-5d6d83a9c682 + - e966e4e4-5416-49e7-ad96-944db17c8987 X-Total-Count: - - "59" + - "32" status: 200 OK code: 200 - duration: 127.379267ms + duration: 81.083163ms - id: 84 request: proto: HTTP/1.1 @@ -4353,7 +4357,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4361,22 +4365,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400 + content_length: 24777 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "400" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4384,12 +4388,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a78c82ef-8aa8-41bd-92ba-0a15657ab064 + - c7b54f38-9fe8-4818-9123-3531acdf6d01 X-Total-Count: - - "59" + - "32" status: 200 OK code: 200 - duration: 125.206575ms + duration: 59.43327ms - id: 85 request: proto: HTTP/1.1 @@ -4406,7 +4410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -4414,22 +4418,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39719 + content_length: 34584 uncompressed: false - body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031990726},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003981253},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021189224},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055456143},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008674336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493178},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027446669},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031380432},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038591945},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005301497},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008186102},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013955311},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025771188},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027373456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030577988},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036384328},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048599737},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007303055},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012189218},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021961544},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173387},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041506197},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040318794},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056468663},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008876841},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012106814},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015336788},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' headers: Content-Length: - - "39719" + - "34584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4437,12 +4439,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c93b6d9d-0081-4dc1-9c27-3c7aa2453c86 - X-Total-Count: - - "59" + - 5c11b78a-1220-4e52-afe9-5fb3e0bd8eb0 status: 200 OK code: 200 - duration: 112.825452ms + duration: 19.89268ms - id: 86 request: proto: HTTP/1.1 @@ -4459,7 +4459,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4467,22 +4467,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 6964 + content_length: 1509 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "6964" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4490,12 +4490,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e064be60-eb1c-4b87-8eea-5605718a112e + - fa767142-7e7b-47d2-ab39-063d7e0fd59f X-Total-Count: - - "59" + - "32" status: 200 OK code: 200 - duration: 114.77753ms + duration: 107.837766ms - id: 87 request: proto: HTTP/1.1 @@ -4512,7 +4512,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4520,20 +4520,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 56166 + content_length: 24777 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00308996},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004557515},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036843725},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0074926247},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133628445},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025103284},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048584163},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029593683},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042963317},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006970258},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012318111},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023013817},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004825288},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008388706},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015515542},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029769212},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057340436},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013684194},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001691289},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002252665},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032910544},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042450805},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019030744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002183744},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002745083},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037621811},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0059019574},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01018151},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018740615},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035858825},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052977037},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009525},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004652501},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076825973},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374279},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019802982},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025863174},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002379929},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003137453},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' + body: '{"servers":{"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "56166" + - "24777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT + - Wed, 15 Oct 2025 15:04:10 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4541,10 +4543,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26622df9-a382-434e-b02f-2df72eac1f19 + - cc3a26b7-1bf6-4b3d-93e9-e7218aac9e1b + X-Total-Count: + - "32" status: 200 OK code: 200 - duration: 18.859395ms + duration: 71.658977ms - id: 88 request: proto: HTTP/1.1 @@ -4561,7 +4565,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=nl-ams-3 method: GET response: proto: HTTP/2.0 @@ -4569,22 +4573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2263 + content_length: 34584 uncompressed: false - body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"}}}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031990726},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003981253},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021189224},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055456143},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008674336},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01493178},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027446669},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031380432},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038591945},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005301497},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008186102},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013955311},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0025771188},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027373456},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030577988},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036384328},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048599737},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007303055},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012189218},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021961544},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03173387},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.041506197},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040318794},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056468663},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008876841},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012106814},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015336788},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002820639},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032243857},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"}],"total_count":32}' headers: Content-Length: - - "2263" + - "34584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4592,12 +4594,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a5bd7cb-38e5-49e7-8890-bff42e11e20b - X-Total-Count: - - "59" + - cc832dc9-dbf6-4352-b358-69b0b9c8a55c status: 200 OK code: 200 - duration: 133.795904ms + duration: 27.371299ms - id: 89 request: proto: HTTP/1.1 @@ -4614,7 +4614,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/nl-ams-3/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4622,22 +4622,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 400 + content_length: 1509 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' + body: '{"servers":{"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"scarce"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"scarce"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "400" + - "1509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4645,12 +4645,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63f59cb0-a71c-4783-a7e2-e06a707d00fc + - 9a8fe6c7-80d0-4c65-acd3-f4da76525f53 X-Total-Count: - - "59" + - "32" status: 200 OK code: 200 - duration: 133.904648ms + duration: 65.730594ms - id: 90 request: proto: HTTP/1.1 @@ -4667,7 +4667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4675,22 +4675,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 26508 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30157" + - "26508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:07 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4698,12 +4698,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96b78cfb-ad0b-48a5-985a-c4294f8d6349 + - 443cd53d-04f2-4231-ae6b-7ebf9d0920db X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 79.233965ms + duration: 112.79623ms - id: 91 request: proto: HTTP/1.1 @@ -4720,7 +4720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -4728,20 +4728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34573 + content_length: 44600 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003156541},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862857},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.042401813},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008275489},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015100754},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028751282},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.056052342},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003001716},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004553207},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00765619},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013862155},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026274085},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017728525},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020954802},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027407357},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003909883},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063695414},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011288858},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02112749},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04080476},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060482025},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015929},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004973297},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008496369},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015542514},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02258866},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029634804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061760577},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007882374},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011295007},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01812027},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0317708},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.059071857},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006021233},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075727245},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010675707},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016881673},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029293602},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076337517},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011791038},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02010561},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036734756},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890092},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036346107},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004290201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055028605},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066170003},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047923694},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051149973},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057602525},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069294},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009389059},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014308375},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024147008},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043824274},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-1"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.063501544},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-1"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08317881},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007992814},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115158865},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01856203},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025608175},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03265432},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-10 Instance - pl-waw-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":41}' headers: Content-Length: - - "34573" + - "44600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4749,10 +4749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64eec947-d40d-432f-8c3d-1eb9329efb79 + - e248eb4e-0fb7-48b8-aaf8-29304d87152d status: 200 OK code: 200 - duration: 20.507161ms + duration: 24.391483ms - id: 92 request: proto: HTTP/1.1 @@ -4769,7 +4769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4777,22 +4777,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1531 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1801" + - "1531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4800,12 +4800,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60994575-ce73-4cff-966c-a0ac4113fa0e + - c2ed9ef6-534b-480d-ab81-ed047804d66c X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 93.628362ms + duration: 97.763361ms - id: 93 request: proto: HTTP/1.1 @@ -4822,7 +4822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4830,22 +4830,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 26508 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30157" + - "26508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4853,12 +4853,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49a12b1e-1e33-40ea-8fa8-2315809a8ddb + - a71952c1-329e-4bca-8d8c-16fc3bd80072 X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 82.022725ms + duration: 114.096899ms - id: 94 request: proto: HTTP/1.1 @@ -4875,7 +4875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -4883,20 +4883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34573 + content_length: 44600 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003156541},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862857},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.042401813},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008275489},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015100754},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028751282},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.056052342},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003001716},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004553207},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00765619},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013862155},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026274085},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017728525},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020954802},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027407357},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003909883},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063695414},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011288858},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02112749},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04080476},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060482025},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015929},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004973297},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008496369},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015542514},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02258866},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029634804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061760577},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007882374},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011295007},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01812027},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0317708},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.059071857},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006021233},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075727245},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010675707},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016881673},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029293602},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076337517},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011791038},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02010561},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036734756},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890092},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036346107},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004290201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055028605},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066170003},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047923694},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051149973},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057602525},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069294},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009389059},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014308375},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024147008},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043824274},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-1"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.063501544},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-1"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08317881},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007992814},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115158865},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01856203},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025608175},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03265432},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-10 Instance - pl-waw-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":41}' headers: Content-Length: - - "34573" + - "44600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4904,10 +4904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa6dfaf-b227-468b-afa2-4d7bd6bd6925 + - bd13363c-3331-428b-acb5-206791068d28 status: 200 OK code: 200 - duration: 22.685405ms + duration: 22.364142ms - id: 95 request: proto: HTTP/1.1 @@ -4924,7 +4924,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -4932,22 +4932,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1531 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1801" + - "1531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4955,12 +4955,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a05d2aa-25da-452c-a700-157f8ecc0169 + - 9f9d3cc3-ee4d-4232-b104-6921459c2d8a X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 126.306992ms + duration: 88.139622ms - id: 96 request: proto: HTTP/1.1 @@ -4977,7 +4977,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4985,22 +4985,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 30157 + content_length: 26508 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "30157" + - "26508" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5008,12 +5008,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98227743-e652-4c10-b1e9-6f4ae062fc05 + - 2dcc0944-392e-4de5-b33d-f07340adf346 X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 88.345876ms + duration: 73.798478ms - id: 97 request: proto: HTTP/1.1 @@ -5030,7 +5030,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-3 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-1 method: GET response: proto: HTTP/2.0 @@ -5038,20 +5038,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 34573 + content_length: 44600 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003156541},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004862857},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.042401813},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008275489},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015100754},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.028751282},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.056052342},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003001716},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004553207},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00765619},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013862155},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026274085},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017728525},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020954802},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027407357},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003909883},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063695414},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011288858},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02112749},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04080476},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060482025},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08015929},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004973297},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008496369},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015542514},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02258866},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029634804},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023309928},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003211761},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"}],"total_count":32}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061760577},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007882374},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04542133},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011295007},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01812027},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0317708},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.059071857},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006021233},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075727245},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010675707},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016881673},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029293602},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076337517},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011791038},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02010561},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036734756},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06890092},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036346107},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004290201},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055028605},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066170003},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047923694},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051149973},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057602525},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069294},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009389059},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014308375},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024147008},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.043824274},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-1"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.063501544},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-1"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08317881},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007992814},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0115158865},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01856203},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025608175},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03265432},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HN-10 Instance - pl-waw-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053505097},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062312777},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"}],"total_count":41}' headers: Content-Length: - - "34573" + - "44600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5059,10 +5059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3491c266-1f95-4028-b7c3-cac75e2e9503 + - 42914081-98a1-4f68-8c26-c65c1face2e8 status: 200 OK code: 200 - duration: 22.785873ms + duration: 22.966422ms - id: 98 request: proto: HTTP/1.1 @@ -5079,7 +5079,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/pl-waw-3/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-1/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5087,22 +5087,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1801 + content_length: 1531 uncompressed: false - body: '{"servers":{"ENT1-2XL":{"availability":"shortage"},"ENT1-L":{"availability":"shortage"},"ENT1-M":{"availability":"shortage"},"ENT1-S":{"availability":"shortage"},"ENT1-XL":{"availability":"shortage"},"ENT1-XS":{"availability":"shortage"},"ENT1-XXS":{"availability":"shortage"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"}}}' headers: Content-Length: - - "1801" + - "1531" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:08 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5110,12 +5110,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97916f26-4226-4992-b71b-74df9972bfae + - a82c2899-6b5f-40b5-b2b1-0cd91b21bb83 X-Total-Count: - - "39" + - "34" status: 200 OK code: 200 - duration: 107.580036ms + duration: 94.088152ms - id: 99 request: proto: HTTP/1.1 @@ -5132,7 +5132,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5140,22 +5140,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39728 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5163,12 +5163,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4086fa2-28f6-4102-bdad-ea6dcc228dec + - 3776186c-160b-4c9b-9ef7-1eca529bd9f2 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 48.432641ms + duration: 76.928315ms - id: 100 request: proto: HTTP/1.1 @@ -5185,7 +5185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -5193,22 +5193,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1575 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "1575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5216,12 +5216,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7231c585-45b6-4093-a7ca-62050101dfc1 + - 0b05a3b0-8477-47d2-9f09-bb34c93966f8 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 44.050437ms + duration: 80.146699ms - id: 101 request: proto: HTTP/1.1 @@ -5238,7 +5238,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 method: GET response: proto: HTTP/2.0 @@ -5246,20 +5246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 56175 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030871795},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045547346},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036840945},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007489844},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133600645},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025100503},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048581384},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029565878},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004293551},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069674775},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012315331},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023011036},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004823126},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008386543},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015513379},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02976705},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057338275},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013666276},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016894971},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022508733},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032892625},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042432887},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001900294},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021809635},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027423026},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037594007},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005899177},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01017873},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018737834},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035856046},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052974254},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009246},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046497206},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076798173},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374001},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019800203},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025860395},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' headers: Content-Length: - - "63463" + - "56175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5267,10 +5267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f262886-a18f-4d5c-8cc7-d99c329021c4 + - 5a7a910e-1031-486c-9b66-d79eabd05f2e status: 200 OK code: 200 - duration: 26.957421ms + duration: 27.114628ms - id: 102 request: proto: HTTP/1.1 @@ -5287,7 +5287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5295,22 +5295,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2275 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5318,12 +5318,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9da8add-3783-417a-8726-326308a39517 + - 713eea90-7c5b-4df4-8437-545665d9e274 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 98.529741ms + duration: 109.983921ms - id: 103 request: proto: HTTP/1.1 @@ -5340,7 +5340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -5348,22 +5348,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 102 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' headers: Content-Length: - - "1104" + - "102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5371,12 +5371,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f577e6a-8b11-420e-9262-66522f359e51 + - bd554b46-ac14-4847-ad39-6bc9dfcab75a X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 95.88965ms + duration: 108.011944ms - id: 104 request: proto: HTTP/1.1 @@ -5393,7 +5393,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5401,22 +5401,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39728 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5424,12 +5424,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13328da2-2f62-4d55-ade3-bbc6596a2d2e + - b2cf2831-a871-4442-9d63-9cddf20301b5 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 45.659471ms + duration: 81.76874ms - id: 105 request: proto: HTTP/1.1 @@ -5446,7 +5446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -5454,22 +5454,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1575 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "1575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5477,12 +5477,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da286cd-aeb3-49bf-8a5b-e888a645d877 + - ad64ed3b-939a-4321-9254-7bfbff3a487c X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 42.915154ms + duration: 101.515757ms - id: 106 request: proto: HTTP/1.1 @@ -5499,7 +5499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 method: GET response: proto: HTTP/2.0 @@ -5507,20 +5507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 56175 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030871795},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045547346},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036840945},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007489844},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133600645},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025100503},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048581384},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029565878},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004293551},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069674775},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012315331},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023011036},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004823126},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008386543},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015513379},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02976705},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057338275},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013666276},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016894971},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022508733},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032892625},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042432887},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001900294},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021809635},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027423026},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037594007},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005899177},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01017873},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018737834},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035856046},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052974254},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009246},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046497206},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076798173},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374001},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019800203},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025860395},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' headers: Content-Length: - - "63463" + - "56175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:09 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5528,10 +5528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13007b46-3112-4fae-a477-c8f15b9a648c + - c34f0bce-7193-4d64-a33e-b27e6a43acc0 status: 200 OK code: 200 - duration: 23.564637ms + duration: 18.374504ms - id: 107 request: proto: HTTP/1.1 @@ -5548,7 +5548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5556,22 +5556,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2275 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5579,12 +5579,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5f24461-d4e1-4edb-92b8-5e2e83348025 + - c9dae60a-d5e8-4983-b84b-2f9c361102ba X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 122.919848ms + duration: 107.496829ms - id: 108 request: proto: HTTP/1.1 @@ -5601,7 +5601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -5609,22 +5609,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 102 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' headers: Content-Length: - - "1104" + - "102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5632,12 +5632,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e2797ee-8764-4a8c-9084-1319e333b3f5 + - 664c4d68-312c-4f1e-8f8e-8598fbe524c8 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 151.525857ms + duration: 104.644852ms - id: 109 request: proto: HTTP/1.1 @@ -5654,7 +5654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -5662,22 +5662,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39728 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5685,12 +5685,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e24b54-d669-4191-b45b-dea1066093c3 + - 7255d12a-d028-464e-a23f-4a52f72350b6 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 50.669966ms + duration: 76.685181ms - id: 110 request: proto: HTTP/1.1 @@ -5707,7 +5707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -5715,22 +5715,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1575 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "1575" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5738,12 +5738,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfc14007-3067-4084-ba25-20e23f74243e + - 50fac3ca-c5c2-4028-a356-8ca32052c48a X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 47.88859ms + duration: 144.973ms - id: 111 request: proto: HTTP/1.1 @@ -5760,7 +5760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=pl-waw-2 method: GET response: proto: HTTP/2.0 @@ -5768,20 +5768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 63463 + content_length: 56175 uncompressed: false - body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007378328,"m3_water_usage":4.8522846e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00078493694,"m3_water_usage":5.281119e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011619462,"m3_water_usage":6.1961565e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012561545,"m3_water_usage":7.053825e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01049244,"m3_water_usage":3.576133e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.002010173,"m3_water_usage":8.8838995e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021985895,"m3_water_usage":1.0599236e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037066264,"m3_water_usage":1.4259385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040834597,"m3_water_usage":1.769006e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070995335,"m3_water_usage":2.5010357e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078532,"m3_water_usage":3.1871707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013885347,"m3_water_usage":4.6512304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071314565,"m3_water_usage":4.7158878e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011125718,"m3_water_usage":5.9233628e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0019114242,"m3_water_usage":8.338312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003509129,"m3_water_usage":1.3168211e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067045386,"m3_water_usage":2.282801e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012120791,"m3_water_usage":6.071365e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021801542,"m3_water_usage":9.4139644e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041163047,"m3_water_usage":1.6099163e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007988605,"m3_water_usage":2.9469558e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01547889,"m3_water_usage":5.533225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007153025,"m3_water_usage":4.6549697e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011021938,"m3_water_usage":5.6372258e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018759767,"m3_water_usage":7.601738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034235422,"m3_water_usage":1.1530762e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065186736,"m3_water_usage":1.938881e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00028824044,"m3_water_usage":2.5659624e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0003743061,"m3_water_usage":2.8709472e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005239452,"m3_water_usage":3.4012327e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000800731,"m3_water_usage":4.3821185e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010550246,"m3_water_usage":5.2833197e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00041102196,"m3_water_usage":3.7445755e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005083245,"m3_water_usage":3.980738e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007029295,"m3_water_usage":4.4530626e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010555371,"m3_water_usage":5.3088748e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017973548,"m3_water_usage":7.109337e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00328099,"m3_water_usage":1.0710261e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006248261,"m3_water_usage":1.7912107e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012182802,"m3_water_usage":3.2315802e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018117344,"m3_water_usage":4.6719498e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024051884,"m3_water_usage":6.1123194e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011893966,"m3_water_usage":6.283137e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020650737,"m3_water_usage":9.057862e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038164281,"m3_water_usage":1.4607309e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055677826,"m3_water_usage":2.0156757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073191365,"m3_water_usage":2.5706206e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00053263875,"m3_water_usage":4.202094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.000751558,"m3_water_usage":4.895775e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0030871795},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0045547346},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036840945},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007489844},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0133600645},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025100503},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048581384},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0029565878},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004293551},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0069674775},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012315331},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023011036},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004823126},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008386543},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015513379},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02976705},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.057338275},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0013666276},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0016894971},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0022508733},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0032892625},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042432887},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001900294},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021809635},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0027423026},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037594007},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005899177},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01017873},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018737834},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035856046},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.052974254},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07009246},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046497206},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076798173},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01374001},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019800203},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025860395},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0023771485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031346728},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"}],"total_count":52}' headers: Content-Length: - - "63463" + - "56175" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5789,10 +5789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a69754ba-3698-4686-b4e0-5453ea63c03f + - b9dd40a2-b7a6-48d9-b757-a0b9d02efb1e status: 200 OK code: 200 - duration: 30.297868ms + duration: 26.122348ms - id: 112 request: proto: HTTP/1.1 @@ -5809,7 +5809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=1 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=1 method: GET response: proto: HTTP/2.0 @@ -5817,22 +5817,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2305 + content_length: 2275 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"availability":"available"},"COPARM1-2C-8G":{"availability":"available"},"COPARM1-32C-128G":{"availability":"available"},"COPARM1-4C-16G":{"availability":"available"},"COPARM1-8C-32G":{"availability":"available"},"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"ENT1-2XL":{"availability":"available"},"ENT1-L":{"availability":"available"},"ENT1-M":{"availability":"available"},"ENT1-S":{"availability":"available"},"ENT1-XL":{"availability":"available"},"ENT1-XS":{"availability":"available"},"ENT1-XXS":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"available"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-16C-64G-WIN":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-2C-8G-WIN":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-32C-128G-WIN":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-4C-16G-WIN":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-8C-32G-WIN":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"}}}' + body: '{"servers":{"DEV1-L":{"availability":"available"},"DEV1-M":{"availability":"available"},"DEV1-S":{"availability":"available"},"DEV1-XL":{"availability":"available"},"GP1-L":{"availability":"available"},"GP1-M":{"availability":"available"},"GP1-S":{"availability":"available"},"GP1-XL":{"availability":"available"},"GP1-XS":{"availability":"available"},"H100-1-80G":{"availability":"available"},"H100-2-80G":{"availability":"available"},"L4-1-24G":{"availability":"available"},"L4-2-24G":{"availability":"available"},"L4-4-24G":{"availability":"available"},"L4-8-24G":{"availability":"scarce"},"L40S-1-48G":{"availability":"available"},"L40S-2-48G":{"availability":"available"},"L40S-4-48G":{"availability":"available"},"L40S-8-48G":{"availability":"scarce"},"PLAY2-MICRO":{"availability":"available"},"PLAY2-NANO":{"availability":"available"},"PLAY2-PICO":{"availability":"available"},"POP2-16C-64G":{"availability":"available"},"POP2-2C-8G":{"availability":"available"},"POP2-32C-128G":{"availability":"available"},"POP2-48C-192G":{"availability":"available"},"POP2-4C-16G":{"availability":"available"},"POP2-64C-256G":{"availability":"available"},"POP2-8C-32G":{"availability":"available"},"POP2-HC-16C-32G":{"availability":"available"},"POP2-HC-2C-4G":{"availability":"available"},"POP2-HC-32C-64G":{"availability":"available"},"POP2-HC-48C-96G":{"availability":"available"},"POP2-HC-4C-8G":{"availability":"available"},"POP2-HC-64C-128G":{"availability":"available"},"POP2-HC-8C-16G":{"availability":"available"},"POP2-HM-16C-128G":{"availability":"available"},"POP2-HM-2C-16G":{"availability":"available"},"POP2-HM-32C-256G":{"availability":"available"},"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"available"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"}}}' headers: Content-Length: - - "2305" + - "2275" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5840,12 +5840,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fbbe4a1-4359-403f-bb97-3c074345f1e6 + - 849e53fd-6a5a-4606-9a49-d5fdc9c1fa6a X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 124.296345ms + duration: 111.511064ms - id: 113 request: proto: HTTP/1.1 @@ -5862,7 +5862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers/availability?page=2 + url: https://api.scaleway.com/instance/v1/zones/pl-waw-2/products/servers/availability?page=2 method: GET response: proto: HTTP/2.0 @@ -5870,22 +5870,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1104 + content_length: 102 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"availability":"available"},"POP2-HM-4C-32G":{"availability":"available"},"POP2-HM-64C-512G":{"availability":"available"},"POP2-HM-8C-64G":{"availability":"available"},"POP2-HN-10":{"availability":"available"},"POP2-HN-3":{"availability":"available"},"POP2-HN-5":{"availability":"available"},"PRO2-L":{"availability":"shortage"},"PRO2-M":{"availability":"available"},"PRO2-S":{"availability":"available"},"PRO2-XS":{"availability":"available"},"PRO2-XXS":{"availability":"available"},"RENDER-S":{"availability":"available"},"STARDUST1-S":{"availability":"shortage"},"START1-L":{"availability":"available"},"START1-M":{"availability":"available"},"START1-S":{"availability":"available"},"START1-XS":{"availability":"available"},"VC1L":{"availability":"available"},"VC1M":{"availability":"available"},"VC1S":{"availability":"available"},"X64-120GB":{"availability":"available"},"X64-15GB":{"availability":"available"},"X64-30GB":{"availability":"available"},"X64-60GB":{"availability":"available"}}}' + body: '{"servers":{"PRO2-XXS":{"availability":"available"},"STARDUST1-S":{"availability":"available"}}}' headers: Content-Length: - - "1104" + - "102" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 29 Sep 2025 23:26:10 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5893,9 +5893,9 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6893dbb7-202d-4823-a25a-778bf1774e68 + - 3f364a43-ce03-4da6-ace6-608396429133 X-Total-Count: - - "75" + - "52" status: 200 OK code: 200 - duration: 140.011512ms + duration: 115.763766ms diff --git a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml index a31b8d46d..6ae5905e3 100644 --- a/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:22:16 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c754d7d3-cef3-4812-85f8-9c64ef1f915c + - 2989da85-ac21-4fd2-8978-e39baeffe821 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 54.687633ms + duration: 73.100678ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:22:16 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c76e3834-8d16-4296-bac2-d467d8341f8d + - b7ba2020-340e-4173-b11f-f38212d08ee3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.921313ms + duration: 68.559458ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:22:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d371eb1-b0ec-4a3f-b3e8-899c2b35aa2e + - d2687d2a-27a4-4f96-b18e-e8c043abc2e5 status: 200 OK code: 200 - duration: 61.448989ms + duration: 50.09751ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1470fb6b-40df-4fc6-b0c7-80cd0759324c + - 75ef70e5-a2ae-462d-8014-a09ca99c86ab status: 201 Created code: 201 - duration: 724.461263ms + duration: 1.185729003s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ee454b3-78c8-415f-80fa-b48fd3f0d9bf + - 9cd5d5e6-de07-4ed9-abed-67254312da2e status: 200 OK code: 200 - duration: 105.973184ms + duration: 167.450259ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f4d3dfa-7dda-48a6-bc7f-be4b2e0c49d7 + - da71e881-4701-48dc-87ec-c22b914afacd status: 200 OK code: 200 - duration: 101.642881ms + duration: 140.639369ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 640a625a-e6c3-44a6-96af-06751d9d1269 + - 01daca00-f608-4a4a-9e3a-f0d626b52440 status: 200 OK code: 200 - duration: 88.690545ms + duration: 136.784097ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2f7a0bd-16f8-47e5-a968-3cc3b1fda520 + - 588f6450-05cd-4616-8684-2b3270a41056 status: 404 Not Found code: 404 - duration: 30.038258ms + duration: 24.808709ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba621e4b-a062-4e91-a288-508879b46e28 + - 45584e7b-eefc-4d05-83b7-3c271700daf6 status: 200 OK code: 200 - duration: 36.007797ms + duration: 79.211566ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97aac4c5-5e31-40db-8b6e-13916d3bccff + - dd6bc459-abd4-43ea-a376-b7a0491c7372 status: 200 OK code: 200 - duration: 54.69683ms + duration: 95.608135ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:18 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5119cdda-d42b-4534-92ab-71cce470b384 + - c7da2164-f22f-4878-9fd1-2971caaca407 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.699488ms + duration: 95.089711ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be7ded3a-43bb-4e4b-a131-742ac8770174 + - e3cd40f8-fea4-427e-a477-52a21665d4cb status: 200 OK code: 200 - duration: 98.748409ms + duration: 148.362005ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - "143" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9a3fcb1-e804-498e-bbb4-ac2c3f700b94 + - 6ce757a3-dcdd-4a7c-b817-9e6e8bf57bfd status: 404 Not Found code: 404 - duration: 31.596736ms + duration: 26.380702ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f70fc37-7bf1-4448-8e43-afa5a56e557a + - 6e710015-270a-431e-85c7-9947b39ab3ca status: 200 OK code: 200 - duration: 56.037754ms + duration: 83.453614ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3e97735-edb7-4aee-9241-3dab5f32f64f + - 8c5959ec-6bdf-4a75-b074-a34eb0099459 status: 200 OK code: 200 - duration: 47.457709ms + duration: 103.217287ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa1340bc-7427-42ea-a799-388e7fafe41f + - d4292cf9-0186-44d8-ac9a-ddb6e538bec5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.890454ms + duration: 100.48236ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e887aa5d-500b-42be-973c-dc8a48bb07d7 + - bf49d502-0507-4bb0-aefc-bd802e16cc8f status: 200 OK code: 200 - duration: 100.844932ms + duration: 135.244716ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 184db4f4-8c54-4d05-8b65-ed711b6c231b + - 875190d8-7bb9-4f5b-8c76-adb7d3c4fafa status: 404 Not Found code: 404 - duration: 24.300669ms + duration: 27.871432ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63e47a4c-0e10-41b4-a4a7-c2e487c2f461 + - 02140f0e-c5a3-4284-ade9-26102d2a5cea status: 200 OK code: 200 - duration: 38.794961ms + duration: 86.663644ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fb803ad-f908-4ab2-8951-932d141ff5d2 + - eff0c6bd-b750-4dd0-aece-14a9721ee87f status: 200 OK code: 200 - duration: 47.723601ms + duration: 85.716736ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:20 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64873f88-ad7f-4c21-a364-1386ad33212f + - a4c63f2e-413c-4b4d-9db3-0b007cc06385 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.139187ms + duration: 108.500281ms - id: 21 request: proto: HTTP/1.1 @@ -1078,22 +1078,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:20 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,12 +1101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccbe8ac0-9068-4c0d-9ce0-477a371a8393 + - 88859355-cd4c-4593-b629-9d25fe5eb828 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 40.612959ms + duration: 44.511979ms - id: 22 request: proto: HTTP/1.1 @@ -1131,22 +1131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:20 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1154,12 +1154,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 650ee53b-feba-4c54-8aef-997f33e73c42 + - 1b9def4a-d005-4612-a73a-02a5436d209b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.728072ms + duration: 130.582239ms - id: 23 request: proto: HTTP/1.1 @@ -1195,9 +1195,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:22:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1205,10 +1205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 212e7959-457e-4ad7-b23e-3bbab8e6875a + - b9254ab0-58b5-4377-bd4d-07084cc697f0 status: 200 OK code: 200 - duration: 51.547746ms + duration: 49.727064ms - id: 24 request: proto: HTTP/1.1 @@ -1220,7 +1220,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: @@ -1237,7 +1237,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1246,11 +1246,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1258,10 +1258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 589cbaf6-a683-4f65-90c8-481c68af1aa6 + - ded93174-1cc8-48d1-9856-7f958b50ac05 status: 201 Created code: 201 - duration: 822.362794ms + duration: 1.12061457s - id: 25 request: proto: HTTP/1.1 @@ -1278,7 +1278,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -1288,7 +1288,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1297,9 +1297,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1307,10 +1307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 464ee411-4845-4d8d-bd96-f4087052d9da + - a1a41934-8e51-4e18-a04c-f59bfd91217f status: 200 OK code: 200 - duration: 84.216727ms + duration: 134.145681ms - id: 26 request: proto: HTTP/1.1 @@ -1327,7 +1327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -1337,7 +1337,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1346,9 +1346,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05ceac9e-4098-4fdb-8359-256686d8e92f + - fd9fbcbe-fa65-40b8-96ca-54b22d18bbd2 status: 200 OK code: 200 - duration: 102.081092ms + duration: 145.651945ms - id: 27 request: proto: HTTP/1.1 @@ -1376,7 +1376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -1386,7 +1386,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1395,9 +1395,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83010200-24f4-470c-891e-1e57ef8215db + - ae445d60-72d3-41d3-a88e-6d40c764fdb3 status: 200 OK code: 200 - duration: 88.663384ms + duration: 144.173598ms - id: 28 request: proto: HTTP/1.1 @@ -1425,7 +1425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -1435,7 +1435,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' headers: Content-Length: - "143" @@ -1444,9 +1444,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22b070ea-b444-4435-a89e-2e5008d82110 + - d35c3f9b-d519-4dfb-8308-92ea25961314 status: 404 Not Found code: 404 - duration: 29.479373ms + duration: 35.045438ms - id: 29 request: proto: HTTP/1.1 @@ -1474,7 +1474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -1484,7 +1484,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:21.219735Z","id":"3d755d8f-9aa2-4bde-a6f4-d6a89447bf0e","product_resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:21.219735Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1493,9 +1493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 389a73e3-182d-4c9d-83e0-1f1f56e32da1 + - 70ab96e5-0154-4689-bfb9-eac2586434bf status: 200 OK code: 200 - duration: 52.976262ms + duration: 85.108102ms - id: 30 request: proto: HTTP/1.1 @@ -1523,7 +1523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data method: GET response: proto: HTTP/2.0 @@ -1542,9 +1542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,10 +1552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7bb6c6d-b24e-4856-bd7e-5bc4f2d85726 + - 828aca4c-61b9-49df-a74a-b8bfd6ad8128 status: 200 OK code: 200 - duration: 61.126191ms + duration: 118.789788ms - id: 31 request: proto: HTTP/1.1 @@ -1572,7 +1572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -1591,11 +1591,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,12 +1603,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f10b100f-eedc-4e00-aa7f-71566cd4cdf0 + - 79033d9a-dbd3-4d7b-8b5e-e8ed8732183e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 64.838688ms + duration: 109.736403ms - id: 32 request: proto: HTTP/1.1 @@ -1625,7 +1625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -1635,7 +1635,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1644,9 +1644,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1654,10 +1654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e558a14d-49d1-4eba-b636-bd1538fb3392 + - 353b16df-23de-48b9-8fbc-4d85a1958429 status: 200 OK code: 200 - duration: 98.87439ms + duration: 135.249976ms - id: 33 request: proto: HTTP/1.1 @@ -1674,7 +1674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -1684,7 +1684,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -1693,9 +1693,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1703,10 +1703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afc6bf61-292a-48e4-be89-c701d33eaea3 + - 1e3aa5f1-f1aa-480b-bb16-8cd03970fdd7 status: 200 OK code: 200 - duration: 121.516757ms + duration: 155.732048ms - id: 34 request: proto: HTTP/1.1 @@ -1723,7 +1723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -1733,7 +1733,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' headers: Content-Length: - "143" @@ -1742,9 +1742,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1752,10 +1752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e654e905-f534-4eab-8bbe-2b8dd6a38b68 + - 4f88fa22-2944-4f48-9705-22de3e2a4b80 status: 404 Not Found code: 404 - duration: 24.526166ms + duration: 29.250132ms - id: 35 request: proto: HTTP/1.1 @@ -1772,7 +1772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -1782,7 +1782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - "143" @@ -1791,9 +1791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,10 +1801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d81fb66a-f04f-4b4b-9714-372984782cb3 + - d5b87afa-28eb-4dff-acf8-0165bcf29ba2 status: 404 Not Found code: 404 - duration: 26.222158ms + duration: 30.970283ms - id: 36 request: proto: HTTP/1.1 @@ -1821,7 +1821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -1831,7 +1831,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:21.219735Z","id":"3d755d8f-9aa2-4bde-a6f4-d6a89447bf0e","product_resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:21.219735Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1840,9 +1840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 858b5730-dffa-4455-a90c-21732afa2559 + - be939623-461d-456d-bd56-e20ac7468866 status: 200 OK code: 200 - duration: 32.455505ms + duration: 82.335234ms - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -1880,7 +1880,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1889,9 +1889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c2ee84a-bacc-47e4-8be7-a0ff747723e4 + - f2514e8f-d42a-4e56-97c7-81f247a39189 status: 200 OK code: 200 - duration: 38.761047ms + duration: 80.094355ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -1938,9 +1938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5a0e65b-f2eb-430f-bf50-b08af672173e + - d258f029-b50f-4e41-9a07-e0a6f49de0ce status: 200 OK code: 200 - duration: 52.08996ms + duration: 88.60987ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data method: GET response: proto: HTTP/2.0 @@ -1987,9 +1987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07f69583-a1db-41f4-b701-4890855bfafc + - 67b20630-d57e-430d-9562-a6cf3619a6d2 status: 200 OK code: 200 - duration: 50.889456ms + duration: 110.524172ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +2017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -2036,11 +2036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,12 +2048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8aa7a51-5eaa-45af-b979-fe1ef7793557 + - a157f5b0-9b84-48eb-a2cc-f92116713177 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.275877ms + duration: 98.321392ms - id: 41 request: proto: HTTP/1.1 @@ -2070,7 +2070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -2089,11 +2089,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,12 +2101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e7b52ee-310d-42a3-b49e-90824bd571c3 + - 0ba77eee-d7aa-4391-90d8-1cd8a852185f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.861795ms + duration: 131.208295ms - id: 42 request: proto: HTTP/1.1 @@ -2123,7 +2123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2131,20 +2131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 15 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[]}' headers: Content-Length: - - "1797" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2152,10 +2154,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b1aa839-d6aa-49d6-817f-ecb54447a36d + - 33233bfd-9dc9-492f-9ca0-b79fb6de10ac + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 71.682296ms + duration: 121.812376ms - id: 43 request: proto: HTTP/1.1 @@ -2172,7 +2176,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -2182,7 +2186,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -2191,9 +2195,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2201,10 +2205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27bec14a-23d7-4885-8a75-86f81408806e + - 9fa60814-d777-461f-b544-fabe035ecb5a status: 200 OK code: 200 - duration: 86.806373ms + duration: 172.22099ms - id: 44 request: proto: HTTP/1.1 @@ -2221,7 +2225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -2229,22 +2233,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 3587 uncompressed: false - body: '{"servers":[]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "15" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2252,12 +2256,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04dc98ba-5efb-4782-898b-b650f80ca4b1 + - 7519f542-936b-4c09-af4c-77fa95b011cf X-Total-Count: - - "0" + - "2" status: 200 OK code: 200 - duration: 93.019714ms + duration: 175.813399ms - id: 45 request: proto: HTTP/1.1 @@ -2274,7 +2278,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -2282,20 +2286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1797 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2303,10 +2307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92559f70-9499-4668-9a4d-5b571697a33a - status: 404 Not Found - code: 404 - duration: 29.931551ms + - 6136ece3-324f-438b-bf0e-7041d13300fb + status: 200 OK + code: 200 + duration: 175.013536ms - id: 46 request: proto: HTTP/1.1 @@ -2323,7 +2327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -2331,20 +2335,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3587 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2352,10 +2358,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0d780d9-9917-4ef6-beff-39d5714f86bf - status: 404 Not Found - code: 404 - duration: 33.298498ms + - 2cb5e530-3bd7-4055-b2e1-71c307e2b229 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 186.18467ms - id: 47 request: proto: HTTP/1.1 @@ -2372,7 +2380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -2380,22 +2388,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' headers: Content-Length: - - "3587" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2403,12 +2409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f88e7fda-6b3c-4a33-8ff7-c894ab6bbcf0 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 126.379817ms + - 9934638f-a48d-4fef-a507-b1c5cb025dcd + status: 404 Not Found + code: 404 + duration: 29.370338ms - id: 48 request: proto: HTTP/1.1 @@ -2425,7 +2429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -2433,22 +2437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - - "3587" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2456,12 +2458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4102ae8c-fbc1-469c-9342-118b275e2128 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 134.781221ms + - 95ca757c-a9a6-4ec7-9d1f-d5752a4293e5 + status: 404 Not Found + code: 404 + duration: 34.752978ms - id: 49 request: proto: HTTP/1.1 @@ -2478,7 +2478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -2486,20 +2486,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2507,10 +2509,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0f64d32-0cea-4947-bb67-b25dfa3572aa + - 4b69dcf3-fcd2-47e8-a121-b578aa732c3a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 45.128844ms + duration: 93.902792ms - id: 50 request: proto: HTTP/1.1 @@ -2527,7 +2531,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -2537,7 +2541,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2546,9 +2550,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2556,10 +2560,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef901471-3be0-467f-bf1e-4838e3e709bf + - 1705624b-38b2-48ab-ad9f-bff54c05b416 status: 200 OK code: 200 - duration: 38.495244ms + duration: 81.706433ms - id: 51 request: proto: HTTP/1.1 @@ -2576,7 +2580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -2595,11 +2599,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2607,12 +2611,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d88c3b12-ae8f-4125-95a8-9e63f1dfcffb + - fe14c2e7-2035-4193-8415-c12e253d9795 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.748932ms + duration: 116.424385ms - id: 52 request: proto: HTTP/1.1 @@ -2629,7 +2633,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -2637,20 +2641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:21.219735Z","id":"3d755d8f-9aa2-4bde-a6f4-d6a89447bf0e","product_resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:21.219735Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2658,10 +2662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20e92911-1261-4437-a629-dae361373785 + - 101fef04-5d5d-4ad8-9173-12419d5cdc45 status: 200 OK code: 200 - duration: 48.778866ms + duration: 104.095518ms - id: 53 request: proto: HTTP/1.1 @@ -2678,7 +2682,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -2697,11 +2701,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2709,12 +2713,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75a2ee32-226d-4441-bc77-7d5a141a27ce + - 97c191af-fd2a-4340-9eeb-632ae85b074c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 74.643462ms + duration: 110.846619ms - id: 54 request: proto: HTTP/1.1 @@ -2731,7 +2735,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -2750,9 +2754,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2760,10 +2764,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f823e621-abdf-40be-b5a5-50026ce54d2a + - 401311b4-9631-47d6-a778-90e8be6eb10e status: 200 OK code: 200 - duration: 56.415223ms + duration: 99.844263ms - id: 55 request: proto: HTTP/1.1 @@ -2780,7 +2784,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data method: GET response: proto: HTTP/2.0 @@ -2788,22 +2792,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2811,12 +2813,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a33e63e-0a6c-4032-a7b7-8bde1252e3c2 - X-Total-Count: - - "0" + - 16b6fe6b-e538-4864-aeb0-3620075c4225 status: 200 OK code: 200 - duration: 45.002991ms + duration: 100.465679ms - id: 56 request: proto: HTTP/1.1 @@ -2833,7 +2833,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -2852,11 +2852,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2864,12 +2864,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95529e58-5be2-4844-a0ba-3e1faa81b967 + - ae534cab-cbb9-49a0-a1f2-f15183780997 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.348279ms + duration: 107.253038ms - id: 57 request: proto: HTTP/1.1 @@ -2886,7 +2886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -2905,11 +2905,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2917,12 +2917,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e94c42e5-a408-4fbe-a18e-d14fd203d552 + - ae1d98f2-973c-4829-a4a2-acbd3d2673ea X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.746088ms + duration: 93.76369ms - id: 58 request: proto: HTTP/1.1 @@ -2939,7 +2939,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -2958,11 +2958,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:22:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2970,12 +2970,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be2a8a05-e1d9-4893-8b3f-72a404d31591 + - e97e82de-2c32-4c5f-a4c0-39a91eae9cb8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.775268ms + duration: 112.164444ms - id: 59 request: proto: HTTP/1.1 @@ -3011,11 +3011,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3023,12 +3023,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cb74498-2f18-44d2-bae9-1c3a8e473053 + - 816e6a8f-872d-4596-a328-425bd10861a6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 112.630054ms + duration: 129.516567ms - id: 60 request: proto: HTTP/1.1 @@ -3055,7 +3055,7 @@ interactions: trailer: {} content_length: 3587 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3587" @@ -3064,11 +3064,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3076,12 +3076,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa6f854e-8e4d-4ee1-a9c6-21faea4b3e97 + - 3924be30-9484-4217-845e-c0da90655ae2 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 121.950861ms + duration: 174.080133ms - id: 61 request: proto: HTTP/1.1 @@ -3108,7 +3108,7 @@ interactions: trailer: {} content_length: 3587 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3587" @@ -3117,11 +3117,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3129,12 +3129,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec51e8b-6ff6-42b9-850c-c675603cbefc + - c2220117-c049-4519-b9de-217bffca52a8 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 142.562565ms + duration: 194.92158ms - id: 62 request: proto: HTTP/1.1 @@ -3151,7 +3151,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -3170,11 +3170,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3182,12 +3182,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e47d4c18-8c98-4eb2-bb8c-b09d8cb3626e + - f435723b-18a4-4761-9aae-5e15c963ee9c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.002392ms + duration: 104.76221ms - id: 63 request: proto: HTTP/1.1 @@ -3204,7 +3204,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -3223,11 +3223,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3235,12 +3235,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad25cf8c-2619-4b13-a2c4-f8f8ae378994 + - aed8ca69-f217-46c3-a90c-c92905b5fa58 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 45.023699ms + duration: 103.215575ms - id: 64 request: proto: HTTP/1.1 @@ -3257,7 +3257,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -3276,11 +3276,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3288,12 +3288,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06678164-b91e-4eb4-b573-e1a286793adb + - e3c95246-262b-466f-bddf-944bdcc77556 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.890045ms + duration: 87.125102ms - id: 65 request: proto: HTTP/1.1 @@ -3310,7 +3310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -3329,11 +3329,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3341,12 +3341,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d064ab1-b167-4946-9e93-d3c0ddcbc8ef + - 3423babf-90c2-43ee-a777-0f482201c2b0 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.065652ms + duration: 116.164487ms - id: 66 request: proto: HTTP/1.1 @@ -3363,7 +3363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3371,20 +3371,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1797 + content_length: 15 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":[]}' headers: Content-Length: - - "1797" + - "15" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3392,10 +3394,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0383cd9-3baa-4d25-a4eb-0aa8abae66c6 + - 7544b510-1958-443c-9d0d-f62bfe7f0f81 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 92.263583ms + duration: 136.034329ms - id: 67 request: proto: HTTP/1.1 @@ -3412,7 +3416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -3420,22 +3424,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 15 + content_length: 1797 uncompressed: false - body: '{"servers":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "15" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3443,12 +3445,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88276aa5-a35b-44bb-b00c-c6663acc62fe - X-Total-Count: - - "0" + - b2a6af9b-59a8-4e44-b770-ae1ad3167ac1 status: 200 OK code: 200 - duration: 93.741191ms + duration: 147.75754ms - id: 68 request: proto: HTTP/1.1 @@ -3465,7 +3465,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -3475,7 +3475,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -3484,9 +3484,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3494,10 +3494,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9abc45cb-e3e6-4fde-b03a-12eaac91f3c8 + - c0a92ae3-b2fc-4c22-960f-dbd71c9201fe status: 200 OK code: 200 - duration: 95.203821ms + duration: 168.160604ms - id: 69 request: proto: HTTP/1.1 @@ -3514,7 +3514,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -3522,22 +3522,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3587 + content_length: 143 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - - "3587" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3545,12 +3543,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 130353df-1fc0-495c-b716-340b743b4b75 - X-Total-Count: - - "2" - status: 200 OK - code: 200 - duration: 129.166228ms + - 82cf534b-1698-457a-ba3e-960f3c5eeee5 + status: 404 Not Found + code: 404 + duration: 29.821746ms - id: 70 request: proto: HTTP/1.1 @@ -3567,7 +3563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3575,20 +3571,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 3587 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "3587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3596,10 +3594,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02fcd3ab-3f87-48d1-ab32-4b517ae34f83 - status: 404 Not Found - code: 404 - duration: 34.424874ms + - 887ceea3-f1f0-451d-9c04-b35bd8cf37b5 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 183.355395ms - id: 71 request: proto: HTTP/1.1 @@ -3616,7 +3616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test method: GET response: proto: HTTP/2.0 @@ -3626,7 +3626,7 @@ interactions: trailer: {} content_length: 3587 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - "3587" @@ -3635,11 +3635,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3647,12 +3647,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f05bbcd-88c1-42bb-8ce4-923be1c22023 + - af0343c7-4d6b-4668-a35d-bce96a9ea84d X-Total-Count: - "2" status: 200 OK code: 200 - duration: 132.021367ms + duration: 186.497367ms - id: 72 request: proto: HTTP/1.1 @@ -3669,7 +3669,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -3679,7 +3679,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' headers: Content-Length: - "143" @@ -3688,9 +3688,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3698,10 +3698,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73225d2b-06b2-4421-935f-a31a9d7ad9e7 + - 1146cca3-dcb8-457b-b22e-b6b96eabf6d4 status: 404 Not Found code: 404 - duration: 43.229475ms + duration: 31.316784ms - id: 73 request: proto: HTTP/1.1 @@ -3718,7 +3718,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -3728,7 +3728,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3737,9 +3737,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3747,10 +3747,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c79f70-f4a8-4038-8b75-ac26b70e42be + - 4a0fa9aa-1123-46fb-b478-685e8fd56b9e status: 200 OK code: 200 - duration: 41.059576ms + duration: 79.933102ms - id: 74 request: proto: HTTP/1.1 @@ -3767,7 +3767,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -3775,20 +3775,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "701" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3796,10 +3798,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbe89413-5a8a-4737-bdf0-a7ee76dd978d + - 6b977481-0257-4f74-b630-7f812f7d8b78 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 37.400938ms + duration: 94.819754ms - id: 75 request: proto: HTTP/1.1 @@ -3816,7 +3820,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -3835,11 +3839,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3847,12 +3851,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a98543b-4b7e-47f5-8271-ca59932760e2 + - 2f06aeaa-ccba-40c3-abb4-8acacae8f5d7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.68824ms + duration: 91.56433ms - id: 76 request: proto: HTTP/1.1 @@ -3869,7 +3873,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -3877,22 +3881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 701 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:21.219735Z","id":"3d755d8f-9aa2-4bde-a6f4-d6a89447bf0e","product_resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:21.219735Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3900,12 +3902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceae605e-9bab-4c2f-95a8-3aee1ddaa774 - X-Total-Count: - - "0" + - 1ed51320-1fdb-4654-aab3-6bd6199f18eb status: 200 OK code: 200 - duration: 51.233383ms + duration: 95.337086ms - id: 77 request: proto: HTTP/1.1 @@ -3922,7 +3922,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/user_data method: GET response: proto: HTTP/2.0 @@ -3941,9 +3941,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3951,10 +3951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7cebf7b-992c-4584-a827-5cc175dcf9ac + - 135a0f30-167c-49ef-a25f-d79b8a903111 status: 200 OK code: 200 - duration: 52.162513ms + duration: 92.28883ms - id: 78 request: proto: HTTP/1.1 @@ -3971,7 +3971,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -3979,20 +3979,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4000,10 +4002,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81f5d7c-052f-43bf-8848-e2dfe06b9424 + - 475858ac-d3ae-4ed0-ba85-c2601d64cbdf + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 56.952086ms + duration: 90.104578ms - id: 79 request: proto: HTTP/1.1 @@ -4020,7 +4024,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -4039,11 +4043,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4051,12 +4055,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea6904ad-d3a5-45a1-a07e-9ef14947a4c1 + - 17579a0e-ad9e-4128-baac-8b9a4b1de5a3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 76.03541ms + duration: 104.382196ms - id: 80 request: proto: HTTP/1.1 @@ -4073,7 +4077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/user_data method: GET response: proto: HTTP/2.0 @@ -4081,22 +4085,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:22:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4104,12 +4106,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d7170c5-2d4a-4117-bb0d-4afdb284da1c - X-Total-Count: - - "0" + - 08c9d529-a1e8-4974-877d-c6a0bfdba8f1 status: 200 OK code: 200 - duration: 76.22993ms + duration: 101.793143ms - id: 81 request: proto: HTTP/1.1 @@ -4126,7 +4126,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/private_nics method: GET response: proto: HTTP/2.0 @@ -4145,11 +4145,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4157,12 +4157,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6de428c-bcd1-4945-a0cc-31a0f1795b79 + - a375e91e-d8a7-4946-b6c8-ac03686d27b1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.839789ms + duration: 97.922162ms - id: 82 request: proto: HTTP/1.1 @@ -4179,7 +4179,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/private_nics method: GET response: proto: HTTP/2.0 @@ -4198,11 +4198,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:22:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4210,12 +4210,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f55df4e0-aadb-4757-9960-7fdd238db71b + - 09f84208-685e-461d-b8d6-7880fe6b0b65 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.040834ms + duration: 99.411409ms - id: 83 request: proto: HTTP/1.1 @@ -4232,7 +4232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -4242,7 +4242,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:27.358954+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -4251,9 +4251,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4261,10 +4261,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a70dc480-2d1e-4485-8f6c-bdce2e8b6d2b + - 95cf289c-1edc-4495-8e4d-390cecfd66f6 status: 200 OK code: 200 - duration: 104.047334ms + duration: 134.8364ms - id: 84 request: proto: HTTP/1.1 @@ -4281,7 +4281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -4291,7 +4291,7 @@ interactions: trailer: {} content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:29.754500+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1797" @@ -4300,9 +4300,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4310,10 +4310,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 805332ab-6482-4647-a842-2ac091a6c784 + - a72cc3d3-d419-45f8-853f-3ebebd6365ec status: 200 OK code: 200 - duration: 106.115986ms + duration: 138.502757ms - id: 85 request: proto: HTTP/1.1 @@ -4330,7 +4330,105 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1797 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:17.528092+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1797" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:22:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83ed442d-46df-4bfa-b5fd-2b5426a67e02 + status: 200 OK + code: 200 + duration: 137.527014ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1797 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:21.088218+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1797" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:22:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15629e26-429f-42ca-bc24-b6b2bb645dd7 + status: 200 OK + code: 200 + duration: 145.811905ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -4340,7 +4438,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.463469Z","id":"8f1dbf1b-6e62-4ec0-965e-7fab155c6c47","product_resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.463469Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:17.680134Z","id":"affa20ba-d034-4c48-a7cb-76cf503908f4","product_resource_id":"bc70c806-5370-4c18-9970-3fa871114605","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:17.680134Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4349,9 +4447,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4359,11 +4457,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47434cc-2818-441c-9a6b-bf6bc38bab8d + - ec9dc231-8199-4210-9ab4-17e6a76fe2c0 status: 200 OK code: 200 - duration: 45.311903ms - - id: 86 + duration: 85.389391ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4379,7 +4477,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -4389,7 +4487,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.849778Z","id":"604796b8-acb7-4d84-bd26-f570bffebdb6","product_resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.849778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:22:21.219735Z","id":"3d755d8f-9aa2-4bde-a6f4-d6a89447bf0e","product_resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:21.219735Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4398,9 +4496,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4408,11 +4506,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a924d8df-a973-4842-bc12-121d5b56a1c5 + - 1e32fcd1-31a6-4e81-a844-58a08667a6df status: 200 OK code: 200 - duration: 46.345357ms - - id: 87 + duration: 100.883394ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4430,7 +4528,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/action method: POST response: proto: HTTP/2.0 @@ -4440,7 +4538,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action","href_result":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d","id":"db7b59ee-f8d0-4411-97e9-a6321ab36cc7","progress":0,"started_at":"2025-10-08T23:04:33.237453+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/bc70c806-5370-4c18-9970-3fa871114605/action","href_result":"/servers/bc70c806-5370-4c18-9970-3fa871114605","id":"20bcf587-09ce-46bf-a802-3d7881a20b22","progress":0,"started_at":"2025-10-15T15:22:25.692798+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -4449,11 +4547,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/db7b59ee-f8d0-4411-97e9-a6321ab36cc7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/20bcf587-09ce-46bf-a802-3d7881a20b22 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4461,11 +4559,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c2d6742-abb3-498a-8f13-8c5809d3fa89 + - 1ef996f5-aea2-408b-92de-78ed9b2517d7 status: 202 Accepted code: 202 - duration: 191.734057ms - - id: 88 + duration: 252.510413ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4483,7 +4581,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/action method: POST response: proto: HTTP/2.0 @@ -4493,7 +4591,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action","href_result":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db","id":"abed8912-121a-4c67-866d-9f485d412e6b","progress":0,"started_at":"2025-10-08T23:04:33.271494+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/action","href_result":"/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2","id":"87a79f39-4ec5-4ed9-83ec-121d9a545bf4","progress":0,"started_at":"2025-10-15T15:22:25.703922+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -4502,11 +4600,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/abed8912-121a-4c67-866d-9f485d412e6b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87a79f39-4ec5-4ed9-83ec-121d9a545bf4 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4514,11 +4612,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 474bb32f-aa1b-444d-83d4-a2b2b10ae9af + - 26391ae8-ede5-4dc9-b6e2-56b0049b0167 status: 202 Accepted code: 202 - duration: 212.48518ms - - id: 89 + duration: 231.629391ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4534,7 +4632,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -4544,7 +4642,7 @@ interactions: trailer: {} content_length: 1819 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:33.100506+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:25.494109+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1819" @@ -4553,9 +4651,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4563,11 +4661,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6139b5a-176a-45dd-98e2-18ae10da271c + - 75d68580-3a35-4492-8123-5812dd1a48ac status: 200 OK code: 200 - duration: 108.771224ms - - id: 90 + duration: 157.113574ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4583,7 +4681,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -4593,7 +4691,7 @@ interactions: trailer: {} content_length: 1819 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:33.107921+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:25.520019+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1819" @@ -4602,9 +4700,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:22:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4612,11 +4710,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f694c793-65a5-4351-831c-f6a58be41e99 + - 2f0b3306-29d7-426c-8c80-c76ccb0dd7bb status: 200 OK code: 200 - duration: 121.96669ms - - id: 91 + duration: 159.939984ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4632,7 +4730,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -4642,7 +4740,7 @@ interactions: trailer: {} content_length: 1952 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"104","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:36.702071+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"604","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:28.101191+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1952" @@ -4651,9 +4749,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4661,11 +4759,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be834ea4-f612-49fe-a9cd-0526e3e57344 + - 875ad6d4-da0f-425c-a983-c3c668eae3b2 status: 200 OK code: 200 - duration: 106.111334ms - - id: 92 + duration: 150.166897ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4681,7 +4779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -4689,20 +4787,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1953 + content_length: 1954 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"203","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:35.773014+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1601","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:28.992424+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1953" + - "1954" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4710,11 +4808,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2827c238-1b95-4da4-a3ea-6202be573243 + - 5ce985a7-5c2d-4dee-ad15-fbfaa2e8ddb6 status: 200 OK code: 200 - duration: 98.804287ms - - id: 93 + duration: 153.337823ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4732,7 +4830,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605/action method: POST response: proto: HTTP/2.0 @@ -4742,7 +4840,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d/action","href_result":"/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d","id":"0658fb03-e189-411e-8d0c-082ef9d8bb32","progress":0,"started_at":"2025-10-08T23:04:38.667306+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/bc70c806-5370-4c18-9970-3fa871114605/action","href_result":"/servers/bc70c806-5370-4c18-9970-3fa871114605","id":"32ddaa59-7904-4a9e-986b-f33421f082c2","progress":0,"started_at":"2025-10-15T15:22:31.282982+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4751,11 +4849,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0658fb03-e189-411e-8d0c-082ef9d8bb32 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/32ddaa59-7904-4a9e-986b-f33421f082c2 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4763,11 +4861,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 063d3a3c-272a-4fd2-8688-b04cac471993 + - e00bd6c8-4757-47f1-98fb-b90dd131ac25 status: 202 Accepted code: 202 - duration: 205.589289ms - - id: 94 + duration: 283.203507ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4785,7 +4883,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/action method: POST response: proto: HTTP/2.0 @@ -4795,7 +4893,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db/action","href_result":"/servers/090be45e-64dc-4b0b-a454-ae8d996737db","id":"29f5a8ee-26b6-4b60-8b22-d6112064855b","progress":0,"started_at":"2025-10-08T23:04:38.684232+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2/action","href_result":"/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2","id":"1d813114-891e-4731-a2fa-4d07760a5c2b","progress":0,"started_at":"2025-10-15T15:22:31.298569+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4804,11 +4902,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/29f5a8ee-26b6-4b60-8b22-d6112064855b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d813114-891e-4731-a2fa-4d07760a5c2b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4816,11 +4914,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8b1c5d-8d20-4d83-aaeb-2b83dfc43530 + - d98e0bdb-2130-4401-b271-84e332dc6a0f status: 202 Accepted code: 202 - duration: 205.49218ms - - id: 95 + duration: 286.22936ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4836,7 +4934,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -4846,7 +4944,7 @@ interactions: trailer: {} content_length: 1915 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.358954+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"104","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:65","maintenances":[],"modification_date":"2025-10-08T23:04:38.512670+00:00","name":"tf-server-datasource0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:17.528092+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource0","id":"bc70c806-5370-4c18-9970-3fa871114605","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"604","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:ff","maintenances":[],"modification_date":"2025-10-15T15:22:31.059911+00:00","name":"tf-server-datasource0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1915" @@ -4855,9 +4953,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4865,11 +4963,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 363b7e95-2af5-4aa3-8fe4-600ebc444fff + - b13b8f72-cdf4-4c65-ad3a-e82f075732b5 status: 200 OK code: 200 - duration: 117.147319ms - - id: 96 + duration: 138.074063ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4885,7 +4983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -4893,20 +4991,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1916 + content_length: 1917 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.754500+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"090be45e-64dc-4b0b-a454-ae8d996737db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"203","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7f","maintenances":[],"modification_date":"2025-10-08T23:04:38.534558+00:00","name":"tf-server-datasource1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"927f9e26-6967-479b-835c-a282193126c5","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:22:21.088218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource1","id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1601","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b8:01","maintenances":[],"modification_date":"2025-10-15T15:22:31.064072+00:00","name":"tf-server-datasource1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"29923df1-2b67-4d29-82bf-99beafe37b15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1916" + - "1917" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:22:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4914,11 +5012,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d79355a5-abe8-40d3-b625-12d3cb60aaf5 + - 4e50aff9-7462-4ff2-9401-1ab04f2a3f8e status: 200 OK code: 200 - duration: 108.372423ms - - id: 97 + duration: 162.238722ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4934,7 +5032,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -4944,7 +5042,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","type":"not_found"}' headers: Content-Length: - "143" @@ -4953,9 +5051,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4963,11 +5061,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dc654b6-9d8e-4fbb-bd78-da256cf16a55 + - ed869de9-a6a2-41ab-89a7-3f9e81a81e67 status: 404 Not Found code: 404 - duration: 59.310833ms - - id: 98 + duration: 67.657024ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4983,7 +5081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -4993,7 +5091,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc70c806-5370-4c18-9970-3fa871114605","type":"not_found"}' headers: Content-Length: - "143" @@ -5002,9 +5100,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5012,11 +5110,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a744e7e-aa1b-49df-9a21-0c00b4bf22bb + - ce0b8295-0be8-4ea6-addb-c7c96d8e07f2 status: 404 Not Found code: 404 - duration: 46.375921ms - - id: 99 + duration: 105.162072ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5032,7 +5130,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -5042,7 +5140,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","type":"not_found"}' headers: Content-Length: - "143" @@ -5051,9 +5149,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5061,11 +5159,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be14218-0ebb-4bb5-8eae-948505c90f33 + - 0d672692-c8c9-40bf-bd51-512d0181aa9b status: 404 Not Found code: 404 - duration: 25.978996ms - - id: 100 + duration: 26.995116ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5081,7 +5179,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -5091,7 +5189,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"927f9e26-6967-479b-835c-a282193126c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"29923df1-2b67-4d29-82bf-99beafe37b15","type":"not_found"}' headers: Content-Length: - "143" @@ -5100,9 +5198,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5110,11 +5208,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d13eaa9-cc1b-42cf-9871-790deb10a7a5 + - fb04050f-a5ce-4875-9727-960ffc386b78 status: 404 Not Found code: 404 - duration: 29.730786ms - - id: 101 + duration: 30.246674ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5130,7 +5228,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: GET response: proto: HTTP/2.0 @@ -5140,7 +5238,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.463469Z","id":"3ace264a-5e3a-4f72-8985-917a8e6b5c35","last_detached_at":"2025-10-08T23:04:39.823346Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:39.823346Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:21.219735Z","id":"29923df1-2b67-4d29-82bf-99beafe37b15","last_detached_at":"2025-10-15T15:22:32.768911Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:32.768911Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -5149,9 +5247,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5159,11 +5257,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7964c65e-ddd7-48d5-bf33-14f8efd00e72 + - 6ec48ea6-d9f6-45c0-897b-8515aede383c status: 200 OK code: 200 - duration: 45.770019ms - - id: 102 + duration: 188.056287ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +5277,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: GET response: proto: HTTP/2.0 @@ -5189,7 +5287,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.849778Z","id":"927f9e26-6967-479b-835c-a282193126c5","last_detached_at":"2025-10-08T23:04:39.921043Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:39.921043Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:22:17.680134Z","id":"6c6011ff-a2ec-477b-95ba-8517d5c14db1","last_detached_at":"2025-10-15T15:22:33.344028Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:22:33.344028Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -5198,9 +5296,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5208,11 +5306,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c4d5457-cae6-4a29-a00a-83fe365a3175 + - 10634a0e-08fd-4cdd-a99a-a2587c849b2e status: 200 OK code: 200 - duration: 44.124601ms - - id: 103 + duration: 189.826853ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5228,7 +5326,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3ace264a-5e3a-4f72-8985-917a8e6b5c35 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6c6011ff-a2ec-477b-95ba-8517d5c14db1 method: DELETE response: proto: HTTP/2.0 @@ -5245,9 +5343,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5255,11 +5353,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ce5ee76-50ff-4a5b-b9f3-e3f848a009b5 + - d5a2cffe-480e-4614-afed-0a55ebb727e5 status: 204 No Content code: 204 - duration: 71.733476ms - - id: 104 + duration: 271.706703ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5275,7 +5373,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/927f9e26-6967-479b-835c-a282193126c5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/29923df1-2b67-4d29-82bf-99beafe37b15 method: DELETE response: proto: HTTP/2.0 @@ -5292,9 +5390,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:22:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5302,11 +5400,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58ca593f-75a3-4b71-9f2c-d222b24ab2c7 + - 1b6716b0-7207-474d-b10e-3f9dc93ac0e1 status: 204 No Content code: 204 - duration: 73.477307ms - - id: 105 + duration: 271.604962ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5322,7 +5420,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d9dff28d-5855-4593-a8b7-20980a92ab4d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bc70c806-5370-4c18-9970-3fa871114605 method: GET response: proto: HTTP/2.0 @@ -5332,7 +5430,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d9dff28d-5855-4593-a8b7-20980a92ab4d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bc70c806-5370-4c18-9970-3fa871114605","type":"not_found"}' headers: Content-Length: - "143" @@ -5341,9 +5439,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:22:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5351,11 +5449,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b26a6ce9-6fd1-4b5c-8530-0ff6be6cc681 + - 01c0d27f-1ca0-4e7e-8a7a-9e1363c7d7e4 status: 404 Not Found code: 404 - duration: 54.139012ms - - id: 106 + duration: 47.74367ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5371,7 +5469,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/090be45e-64dc-4b0b-a454-ae8d996737db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/83e198b8-3546-4459-9871-8a7fd9ed70b2 method: GET response: proto: HTTP/2.0 @@ -5381,7 +5479,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"090be45e-64dc-4b0b-a454-ae8d996737db","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"83e198b8-3546-4459-9871-8a7fd9ed70b2","type":"not_found"}' headers: Content-Length: - "143" @@ -5390,9 +5488,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:22:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5400,7 +5498,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7d096e-6bf7-4333-aaea-37cc022634d2 + - 87070ae3-de5c-4afc-a2ec-32d031b1d8ab status: 404 Not Found code: 404 - duration: 45.864884ms + duration: 206.997917ms diff --git a/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml index 5e4ebb7fa..666a448bb 100644 --- a/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml +++ b/internal/services/instance/testdata/data-source-servers-private-ips.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private_network_instance_servers","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance_servers","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffbfd544-d53a-433c-b583-ac53ca490eb7 + - 379e1de4-4e9c-4751-b971-391d88ea9bc0 status: 200 OK code: 200 - duration: 742.648993ms + duration: 569.253448ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5424d38-7b93-41c7-a6ba-7b243eaf0df8 + - 46916858-4727-4013-852e-501c61370971 status: 200 OK code: 200 - duration: 31.050563ms + duration: 22.698336ms - id: 2 request: proto: HTTP/1.1 @@ -125,22 +125,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,12 +148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62d36984-8e7a-4d02-ac3d-510935f9e96c + - c5714219-7659-4cac-b1a5-e61f2ba1cc93 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.131982ms + duration: 37.670921ms - id: 3 request: proto: HTTP/1.1 @@ -178,22 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b9ac23-08ea-4a1a-9ddb-f15a25d802c7 + - 1e5b2635-cdd5-45d6-b0f6-4fdf6bfafe23 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.890429ms + duration: 53.17949ms - id: 4 request: proto: HTTP/1.1 @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,22 +252,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39b6d325-8a4d-48bb-90fc-0d6680be4b5e + - 1058d76e-8583-4ebd-ac66-4049934ffbad status: 200 OK code: 200 - duration: 56.537171ms + duration: 46.978146ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 314 + content_length: 320 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource-private-ips-0","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","private-ips"]}' form: {} headers: Content-Type: @@ -282,22 +282,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93a740a7-954a-4f05-99e4-fc39b98a354e + - 56319397-3b04-48c5-b30a-c4df1d3285c0 status: 201 Created code: 201 - duration: 509.361494ms + duration: 1.618884977s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 629f64b6-15c7-4d82-98ff-4f83ba9d57be + - 7cda5bef-27fd-4b02-ae95-5a026dced2b7 status: 200 OK code: 200 - duration: 95.224489ms + duration: 167.229227ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5023ce69-d7dc-42f4-9515-032bdc53f15d + - f82e8861-fa96-4936-9702-2ca8a03d78f1 status: 200 OK code: 200 - duration: 125.900669ms + duration: 173.379707ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a090cd0-ceee-4e15-b533-918fff5adf19 + - f9dbc9d3-ed54-4f6a-9dc9-ed7336405a66 status: 200 OK code: 200 - duration: 23.14488ms + duration: 31.573463ms - id: 9 request: proto: HTTP/1.1 @@ -472,7 +472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -480,20 +480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,10 +501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56b0cad6-f2fa-42dc-a9f7-68afb034aedc + - 3eb0e44c-a9d8-402d-9d03-a3894ba061c3 status: 200 OK code: 200 - duration: 102.566709ms + duration: 126.511567ms - id: 10 request: proto: HTTP/1.1 @@ -516,14 +516,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38"}' + body: '{"private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: POST response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f9edd48-44f1-4da8-b87c-e34e33b65b94 + - 051ff2a9-09bf-42aa-b6b2-328eb25c4c48 status: 201 Created code: 201 - duration: 468.18913ms + duration: 620.694856ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics/af4dfcf8-aceb-45fb-b64f-36b88cfce003 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc9f9d07-6353-412c-8faa-6b747b6f7a7a + - 0cfccbcb-2e0d-43cb-a827-f0f411e6b9b1 status: 200 OK code: 200 - duration: 65.364671ms + duration: 95.882896ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics/af4dfcf8-aceb-45fb-b64f-36b88cfce003 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9068d028-b13e-4198-8c98-27c6ad1d0c55 + - 23e9c7f8-fda6-44a0-9394-f7c6d065f0a4 status: 200 OK code: 200 - duration: 59.298064ms + duration: 90.150802ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fddc400-09c2-4c85-8012-5c5a2b125c67 + - eff09ba4-eb03-4317-a77c-4fa40c51f707 status: 200 OK code: 200 - duration: 105.929697ms + duration: 138.091343ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -729,7 +729,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - "143" @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9095b340-0a28-4f9b-889f-863a30959add + - 9358b89d-50a6-4bf2-80e3-94af3f8c5163 status: 404 Not Found code: 404 - duration: 30.241385ms + duration: 26.902938ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -778,7 +778,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3037eed8-50df-4f0a-988f-101bb591aad7 + - 1da3ddd5-98d9-4b5c-b423-c6d08d6cf7cf status: 200 OK code: 200 - duration: 53.800932ms + duration: 92.210152ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -836,9 +836,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -846,10 +846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6135451-e4af-4c07-a9d2-bbdbc2333fa3 + - 6f828a5e-62df-413e-b12c-7c0fff5c204c status: 200 OK code: 200 - duration: 71.678616ms + duration: 94.696252ms - id: 17 request: proto: HTTP/1.1 @@ -866,7 +866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -876,7 +876,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -885,11 +885,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -897,12 +897,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a8c88eb-0015-4777-b95c-dd4315aaa79a + - 87c6f3f5-e789-44a3-81c5-04e5c3731bea X-Total-Count: - "1" status: 200 OK code: 200 - duration: 78.94739ms + duration: 93.637077ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd2d6fcd-0b5d-48c0-b0a9-f79a75b94219 + - 5d9414ff-2552-4018-9548-444bcd001491 status: 200 OK code: 200 - duration: 38.081385ms + duration: 25.542929ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57f5e4ff-e079-4663-94a1-c8f945a955c1 + - 923264c1-77cf-40a7-86f2-7450c5bb8f0e status: 200 OK code: 200 - duration: 24.968918ms + duration: 28.38717ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b56a6c74-21ab-44ef-aeb7-b18dee7cddf2 + - 239780a3-bb68-412d-ba74-c50a10fb773c status: 200 OK code: 200 - duration: 99.197328ms + duration: 139.841303ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +1066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -1076,7 +1076,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - "143" @@ -1085,9 +1085,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67216e64-327f-46ac-b74d-1e972274761a + - c60c5137-c96b-4cf5-9370-baffcad8b465 status: 404 Not Found code: 404 - duration: 26.292951ms + duration: 55.230907ms - id: 22 request: proto: HTTP/1.1 @@ -1115,7 +1115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -1125,7 +1125,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1134,9 +1134,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1144,10 +1144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b19277af-8af1-44c6-8ea9-74f41334c689 + - f46f58a8-f224-42ae-8f4e-b14541ebfe25 status: 200 OK code: 200 - duration: 37.515387ms + duration: 118.377702ms - id: 23 request: proto: HTTP/1.1 @@ -1164,7 +1164,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -1183,9 +1183,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1193,10 +1193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1b251e0-84b1-4f23-af0c-0acc9092921c + - 088b0c8b-0ffd-4861-a015-38ddcd193c10 status: 200 OK code: 200 - duration: 54.745712ms + duration: 107.20532ms - id: 24 request: proto: HTTP/1.1 @@ -1213,7 +1213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -1223,7 +1223,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1232,11 +1232,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,12 +1244,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb27677a-6671-4987-b1e9-2eaa9aedc752 + - f868e63f-46c3-4fe0-920e-22768b605522 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 52.137972ms + duration: 92.06451ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3fc7e0b-2e22-41b0-ae8d-4f30becd49f0 + - a4084558-23d9-4fce-975e-e78cb3f42325 status: 200 OK code: 200 - duration: 27.663248ms + duration: 23.631727ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -1323,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ef3061e-3209-4cfa-9ac0-488bf09d1623 + - e2eb01d0-2986-42ce-a51f-b83476abb44f status: 200 OK code: 200 - duration: 32.867609ms + duration: 33.844329ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09c0287a-c0f2-4e1f-a4b3-768ce495dfda + - c8dfce6c-a0a7-4be7-a272-a8bd06bf7b16 status: 200 OK code: 200 - duration: 86.43089ms + duration: 150.78639ms - id: 28 request: proto: HTTP/1.1 @@ -1413,7 +1413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -1423,7 +1423,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - "143" @@ -1432,9 +1432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4ad3be4-bc01-489d-b50c-cf47802bea37 + - 41249e97-6fbd-413b-b352-7b98d27c38d6 status: 404 Not Found code: 404 - duration: 28.742128ms + duration: 35.774417ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -1472,7 +1472,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1481,9 +1481,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65662635-2140-4abf-89f1-0e5dda5e4e08 + - f5826dec-b610-4806-9453-c30407ea0e3b status: 200 OK code: 200 - duration: 46.292595ms + duration: 91.806476ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -1530,9 +1530,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91f72b4a-c8ee-4ebd-ad7d-3348225d1658 + - 74fbec7a-042f-416f-ac68-ea8c3e10a2c7 status: 200 OK code: 200 - duration: 56.771564ms + duration: 109.39744ms - id: 31 request: proto: HTTP/1.1 @@ -1560,7 +1560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -1570,7 +1570,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1579,11 +1579,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,12 +1591,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddff22e2-b9a9-45f9-917b-0e35027110d3 + - 16d89d2e-c28e-46d8-93ce-a88e6d518f83 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 53.22246ms + duration: 155.030446ms - id: 32 request: proto: HTTP/1.1 @@ -1613,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1621,20 +1621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,10 +1642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c17c2be5-ad29-4497-af36-c6e25b3495ea + - 84c2e08c-b869-475b-8974-979b418c146c status: 200 OK code: 200 - duration: 31.523508ms + duration: 23.514286ms - id: 33 request: proto: HTTP/1.1 @@ -1670,22 +1670,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,12 +1693,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb19d537-ce31-4f68-a592-32346b61da97 + - ce334c28-3682-4532-bb64-29adede1b09f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.089618ms + duration: 45.935594ms - id: 34 request: proto: HTTP/1.1 @@ -1723,22 +1723,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,12 +1746,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85607263-d0ca-4b95-bb2c-5d3431b753d7 + - 72e8a4ee-a19c-4058-ae22-8b57dd8e8ff9 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.537157ms + duration: 48.068652ms - id: 35 request: proto: HTTP/1.1 @@ -1787,9 +1787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,22 +1797,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df0b08e7-d127-4e29-b751-1216755875a5 + - 451926ce-2e7f-4567-aaca-bdfd2f3b4137 status: 200 OK code: 200 - duration: 53.530892ms + duration: 47.514062ms - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 314 + content_length: 320 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-server-datasource-private-ips-1","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_instance_servers","private-ips"]}' form: {} headers: Content-Type: @@ -1827,22 +1827,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fa161ae-59a0-4bae-929d-c23332e3686e + - f3b60c9c-4eca-4b82-8440-5f160ef56671 status: 201 Created code: 201 - duration: 591.533198ms + duration: 1.352040992s - id: 37 request: proto: HTTP/1.1 @@ -1870,7 +1870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -1878,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d650a836-ac56-4c5c-9928-b31d74697223 + - 5c1af1e5-7830-45c2-975c-e102759b5859 status: 200 OK code: 200 - duration: 90.881754ms + duration: 155.644469ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -1927,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eb033ed-2672-493f-9a75-f01e1e24e2e9 + - a0ffe5b8-5e93-41a7-b30b-f09d2c2eadd4 status: 200 OK code: 200 - duration: 103.699144ms + duration: 138.650395ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -1976,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ea9fc51-5953-408c-b2b2-7d7189fba024 + - 76b63cb9-dd84-4467-bafe-6bbda966cd01 status: 200 OK code: 200 - duration: 21.094902ms + duration: 25.789081ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +2017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -2025,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1823 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1823" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a155ce51-58c1-4e20-b3e8-0868d2606c46 + - 8140cb3e-b738-4ffb-8980-f96785e9c707 status: 200 OK code: 200 - duration: 104.735795ms + duration: 167.998528ms - id: 41 request: proto: HTTP/1.1 @@ -2061,14 +2061,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38"}' + body: '{"private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: POST response: proto: HTTP/2.0 @@ -2078,7 +2078,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b4f4b1a-ebb1-48e9-bf8b-26d0e0e1bccb + - b48a105b-f758-40ef-81fb-9de03cf5975f status: 201 Created code: 201 - duration: 435.590234ms + duration: 566.034053ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +2117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics/4e379852-ab6d-468c-8280-4e586fbfc1d5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 method: GET response: proto: HTTP/2.0 @@ -2127,7 +2127,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2136,9 +2136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,10 +2146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d22c3f0-6009-47e2-a17e-38b11601e3e7 + - 0edf6268-e52a-42d8-98c3-f69dbf6531a4 status: 200 OK code: 200 - duration: 55.888309ms + duration: 94.757259ms - id: 43 request: proto: HTTP/1.1 @@ -2166,7 +2166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics/4e379852-ab6d-468c-8280-4e586fbfc1d5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 method: GET response: proto: HTTP/2.0 @@ -2176,7 +2176,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2185,9 +2185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2195,10 +2195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee842c02-902b-4d06-9246-dd9d521de3d5 + - 43f84776-5f8e-4056-9a6f-1af33b77e29b status: 200 OK code: 200 - duration: 57.172876ms + duration: 94.416471ms - id: 44 request: proto: HTTP/1.1 @@ -2215,7 +2215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -2223,20 +2223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,10 +2244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fbcbc39-b013-499c-9a6f-cfefb22226f9 + - bb5ab5a1-dd04-47ee-a4e7-4f3e87c4330d status: 200 OK code: 200 - duration: 94.175344ms + duration: 152.105789ms - id: 45 request: proto: HTTP/1.1 @@ -2264,7 +2264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -2274,7 +2274,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' headers: Content-Length: - "143" @@ -2283,9 +2283,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2293,10 +2293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b6937d-8fea-491a-b7f1-5f62e0c8fc84 + - 0c51a0a1-6b45-478b-8333-ea778ec14699 status: 404 Not Found code: 404 - duration: 47.241632ms + duration: 28.714966ms - id: 46 request: proto: HTTP/1.1 @@ -2313,7 +2313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -2323,7 +2323,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:01.146048Z","id":"a6b4af85-a9bd-4c47-b45b-59ddd4d0b908","product_resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:01.146048Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2332,9 +2332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2342,10 +2342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ea6e56b-317a-4ea4-b206-19b8cfadf029 + - f866314d-ebf5-4eec-b027-20f7d69a0f1a status: 200 OK code: 200 - duration: 53.532354ms + duration: 108.27508ms - id: 47 request: proto: HTTP/1.1 @@ -2362,7 +2362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/user_data method: GET response: proto: HTTP/2.0 @@ -2381,9 +2381,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,10 +2391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 901c4276-4000-4ba3-8f3d-c2c12cc63f9e + - bb2970ed-d2ca-42f8-a658-ecdee4cb6f7a status: 200 OK code: 200 - duration: 54.101468ms + duration: 102.758819ms - id: 48 request: proto: HTTP/1.1 @@ -2411,7 +2411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -2421,7 +2421,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2430,11 +2430,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,12 +2442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a290940-26c2-4f6f-a3e0-9901110d5dc2 + - f652b13e-eedb-4a4f-9436-68f32f393ee0 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 54.76072ms + duration: 135.33904ms - id: 49 request: proto: HTTP/1.1 @@ -2464,7 +2464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2472,20 +2472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,10 +2493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 679c6570-2263-43cc-bf9e-217290e596fa + - 91a1115b-e36d-48d9-8c8b-25a8e8b13dac status: 200 OK code: 200 - duration: 32.228744ms + duration: 27.572714ms - id: 50 request: proto: HTTP/1.1 @@ -2513,7 +2513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -2521,20 +2521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,10 +2542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bed601b6-614e-47f3-b1df-5d94b8a04fe5 + - 42ea6f83-6bc3-4675-b2b5-3594fc8631c7 status: 200 OK code: 200 - duration: 27.269068ms + duration: 35.339533ms - id: 51 request: proto: HTTP/1.1 @@ -2562,7 +2562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -2570,20 +2570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2591,10 +2591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56a6c0d4-76b0-4e40-b3e5-4be9df708c50 + - 494de062-eed8-482f-a387-d90c9facc460 status: 200 OK code: 200 - duration: 97.762859ms + duration: 127.28331ms - id: 52 request: proto: HTTP/1.1 @@ -2611,7 +2611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -2619,20 +2619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2640,10 +2640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57353a87-9628-45c8-b319-41964e6b88bb + - fb3472ac-d8c1-4b98-a00a-c6795a7ecce3 status: 200 OK code: 200 - duration: 128.753651ms + duration: 139.697811ms - id: 53 request: proto: HTTP/1.1 @@ -2660,7 +2660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -2670,7 +2670,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' headers: Content-Length: - "143" @@ -2679,9 +2679,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2689,10 +2689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcbc4d1f-692a-4053-a136-ae73206a3455 + - 88b046d7-e800-452f-888d-b1c4a0cb8e0f status: 404 Not Found code: 404 - duration: 29.563348ms + duration: 29.86966ms - id: 54 request: proto: HTTP/1.1 @@ -2709,7 +2709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -2719,7 +2719,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - "143" @@ -2728,9 +2728,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2738,10 +2738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be9ebce2-4a4d-4c9b-b10b-3cd07809ec06 + - 6dd0a08b-0f26-4a22-88d1-a768ce7f6434 status: 404 Not Found code: 404 - duration: 28.858562ms + duration: 27.610014ms - id: 55 request: proto: HTTP/1.1 @@ -2758,7 +2758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -2768,7 +2768,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:01.146048Z","id":"a6b4af85-a9bd-4c47-b45b-59ddd4d0b908","product_resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:01.146048Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2777,9 +2777,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2787,10 +2787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a33c4637-6e60-41e5-8b60-56c524288b07 + - c64061aa-4ff5-40d5-93ea-b4fcab35e665 status: 200 OK code: 200 - duration: 46.100138ms + duration: 83.209365ms - id: 56 request: proto: HTTP/1.1 @@ -2807,7 +2807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -2817,7 +2817,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2826,9 +2826,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2836,10 +2836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05251efd-386a-4185-a60d-b87a2f971728 + - 0936cbb4-4a8e-4136-bea3-31bf2749ce37 status: 200 OK code: 200 - duration: 43.967248ms + duration: 95.55198ms - id: 57 request: proto: HTTP/1.1 @@ -2856,7 +2856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/user_data method: GET response: proto: HTTP/2.0 @@ -2875,9 +2875,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,10 +2885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fea158e-a1d1-449f-a278-d9f24432e78a + - 535c7305-4758-46c5-886c-5fb5fe1b5355 status: 200 OK code: 200 - duration: 66.755797ms + duration: 125.66622ms - id: 58 request: proto: HTTP/1.1 @@ -2905,7 +2905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -2924,9 +2924,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2934,10 +2934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e284b003-32a2-40c4-a289-f25a489d9850 + - 18c0ca1b-fe51-47fe-b00e-e788154ca6b5 status: 200 OK code: 200 - duration: 63.92866ms + duration: 103.243028ms - id: 59 request: proto: HTTP/1.1 @@ -2954,7 +2954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -2964,7 +2964,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2973,11 +2973,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,12 +2985,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cb90088-555a-4b29-84f2-c7904a8cb6f5 + - 77c6f364-1ed2-44e4-ba02-f116309a2a4e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 62.71888ms + duration: 132.515638ms - id: 60 request: proto: HTTP/1.1 @@ -3007,7 +3007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -3017,7 +3017,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3026,11 +3026,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3038,12 +3038,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69d14fb7-1032-4aff-9068-bc78562cb3f1 + - e47db601-15f7-49e5-99a3-984211f3b486 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 54.697502ms + duration: 145.891431ms - id: 61 request: proto: HTTP/1.1 @@ -3060,7 +3060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3068,20 +3068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3089,10 +3089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07aa6867-429d-4ac5-9874-823deb2676c2 + - 251ce8ec-e7a5-4470-955e-6e613feb5e95 status: 200 OK code: 200 - duration: 31.332434ms + duration: 29.629039ms - id: 62 request: proto: HTTP/1.1 @@ -3109,7 +3109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3117,20 +3117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3138,10 +3138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c68d55a-b5ad-4962-bd44-cc59f3dba493 + - ca8b10dd-0b99-4c03-954d-359265b64bdc status: 200 OK code: 200 - duration: 38.48907ms + duration: 30.325976ms - id: 63 request: proto: HTTP/1.1 @@ -3158,7 +3158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -3166,20 +3166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3187,10 +3187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d70226c3-6cb6-4028-be34-04f321fd413d + - d6a097f3-b96b-4e5b-b39c-d7ea491dcdd3 status: 200 OK code: 200 - duration: 31.163292ms + duration: 27.231895ms - id: 64 request: proto: HTTP/1.1 @@ -3226,11 +3226,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3238,12 +3238,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 143ac954-001e-4b70-a721-a76f892051c6 + - 27f16000-0793-4444-a6fa-39e6243e6845 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 85.242809ms + duration: 126.716619ms - id: 65 request: proto: HTTP/1.1 @@ -3260,7 +3260,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -3268,20 +3268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3289,10 +3289,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4653842b-1a35-4c95-b9c8-38788714b611 + - 097f5579-4238-475c-951d-8151ce87d187 status: 200 OK code: 200 - duration: 88.719648ms + duration: 148.74509ms - id: 66 request: proto: HTTP/1.1 @@ -3309,7 +3309,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -3317,20 +3317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3338,10 +3338,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2468c494-9b51-42ae-8a1f-e74876274932 + - a3211d9b-a360-4140-b3f7-e9848e3f1240 status: 200 OK code: 200 - duration: 92.540616ms + duration: 152.714321ms - id: 67 request: proto: HTTP/1.1 @@ -3358,7 +3358,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -3366,22 +3366,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 4567 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4555" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3389,12 +3389,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcd7c1e8-3c23-45ae-a579-d886fc0de425 + - a819063b-a4f2-4fbe-a947-1ec3b803ca9e X-Total-Count: - "2" status: 200 OK code: 200 - duration: 143.716875ms + duration: 189.266478ms - id: 68 request: proto: HTTP/1.1 @@ -3411,7 +3411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips method: GET response: proto: HTTP/2.0 @@ -3419,22 +3419,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 4567 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4555" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3442,12 +3442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0f65d9b-6aa9-4cb1-8dc8-4ba3622edb52 + - 853257d8-b310-4f3f-aacb-71c315fe978f X-Total-Count: - "2" status: 200 OK code: 200 - duration: 161.748995ms + duration: 213.358146ms - id: 69 request: proto: HTTP/1.1 @@ -3464,7 +3464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -3474,7 +3474,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - "143" @@ -3483,9 +3483,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3493,10 +3493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3da4e02e-a136-4151-94b5-4a4fcf7ef473 + - dae9e14b-4723-4873-8ace-be668cd0d14d status: 404 Not Found code: 404 - duration: 31.363402ms + duration: 28.676834ms - id: 70 request: proto: HTTP/1.1 @@ -3513,7 +3513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -3523,7 +3523,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' headers: Content-Length: - "143" @@ -3532,9 +3532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3542,10 +3542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f6e31b-e8b7-42d1-8aaf-447f69fb9888 + - 1c634e07-cc2d-4c9c-811d-37754e92b899 status: 404 Not Found code: 404 - duration: 37.829068ms + duration: 32.11531ms - id: 71 request: proto: HTTP/1.1 @@ -3562,7 +3562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -3572,7 +3572,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3581,11 +3581,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3593,12 +3593,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc43cb74-5b9e-4e09-938e-0684bb9f6bbe + - 6413dc35-8a9e-4912-b434-377a567bd2e1 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 58.723259ms + duration: 104.141432ms - id: 72 request: proto: HTTP/1.1 @@ -3615,7 +3615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -3623,22 +3623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 701 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3646,12 +3644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f172cbf-46b7-4e5f-9ea7-9f130842b46e - X-Total-Count: - - "1" + - a8e12b70-f28d-47a8-a79c-22499ace8fc7 status: 200 OK code: 200 - duration: 51.457661ms + duration: 83.687181ms - id: 73 request: proto: HTTP/1.1 @@ -3668,7 +3664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -3678,7 +3674,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:01.146048Z","id":"a6b4af85-a9bd-4c47-b45b-59ddd4d0b908","product_resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:01.146048Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3687,9 +3683,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3697,10 +3693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b761a90-08fb-4ce7-91f0-ec66339c04f1 + - 6992a451-b807-4860-ba6f-14b049523f2d status: 200 OK code: 200 - duration: 50.053992ms + duration: 91.534771ms - id: 74 request: proto: HTTP/1.1 @@ -3717,7 +3713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3725,20 +3721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1097 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3746,10 +3742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21501008-27f6-44a0-b1af-fd58f83459ae + - ee10cfd1-ae1d-4391-b828-a5fa0822c034 status: 200 OK code: 200 - duration: 47.677659ms + duration: 28.559103ms - id: 75 request: proto: HTTP/1.1 @@ -3766,7 +3762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -3774,20 +3770,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3795,10 +3793,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a524cbe-c1ef-4ef3-ab48-06a630e8936b + - 8184877f-853d-422e-87b7-aa30ada94f79 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 19.464873ms + duration: 116.946885ms - id: 76 request: proto: HTTP/1.1 @@ -3815,7 +3815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3823,20 +3823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3844,10 +3844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4be688b-239a-4ebe-9175-1d8ab9a47d94 + - 41bc0a1d-c97f-4dea-80d4-8fab6dd497b6 status: 200 OK code: 200 - duration: 29.193893ms + duration: 21.603436ms - id: 77 request: proto: HTTP/1.1 @@ -3864,7 +3864,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/user_data method: GET response: proto: HTTP/2.0 @@ -3883,9 +3883,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3893,10 +3893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3f2b364-6d75-4fa8-a433-c698076eb659 + - 0bfe71ee-0733-4225-bc13-872c56fc7ee5 status: 200 OK code: 200 - duration: 65.430121ms + duration: 92.394232ms - id: 78 request: proto: HTTP/1.1 @@ -3913,7 +3913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -3921,22 +3921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3944,12 +3942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15d63b0a-4663-42ae-a8ba-a233f1c2885a - X-Total-Count: - - "1" + - 600e41ff-79a1-4eb1-a778-b7ea4023c01f status: 200 OK code: 200 - duration: 66.198644ms + duration: 103.747202ms - id: 79 request: proto: HTTP/1.1 @@ -3966,7 +3962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -3974,20 +3970,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 478 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3995,10 +3993,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef415444-307d-4610-92d0-e52dadc0f433 + - db5dd18a-6348-44c8-bc17-6961f637d337 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 73.742267ms + duration: 109.789749ms - id: 80 request: proto: HTTP/1.1 @@ -4015,7 +4015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -4025,7 +4025,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4034,11 +4034,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4046,12 +4046,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef340f86-e80a-41c2-9ccd-3d6a07c04b5e + - c5db3468-5d6b-478d-ad3a-836bb67a9040 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 68.199751ms + duration: 99.376079ms - id: 81 request: proto: HTTP/1.1 @@ -4068,7 +4068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4076,20 +4076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4097,10 +4097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82b23f54-3627-4064-b8c4-59273679991b + - bcaa4658-ed7e-4616-9353-6c055743fb62 status: 200 OK code: 200 - duration: 27.170947ms + duration: 56.301226ms - id: 82 request: proto: HTTP/1.1 @@ -4117,7 +4117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4125,20 +4125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4146,10 +4146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6909c5f7-6ac2-4f76-a69b-8fa499ff790e + - f1b9cb97-e83b-47c8-85c8-71ce21863f37 status: 200 OK code: 200 - duration: 25.343842ms + duration: 37.060409ms - id: 83 request: proto: HTTP/1.1 @@ -4166,7 +4166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -4176,7 +4176,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4185,11 +4185,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4197,12 +4197,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9a0a9fd-f634-41ca-8e78-c9637b4dc36c + - 20fb75c7-ffba-4ad2-bdfd-5e5c254671fb X-Total-Count: - "1" status: 200 OK code: 200 - duration: 55.661137ms + duration: 92.760167ms - id: 84 request: proto: HTTP/1.1 @@ -4219,7 +4219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -4229,7 +4229,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4238,11 +4238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4250,12 +4250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b72590c-0eb6-4744-b92e-52b81d000dd6 + - 7f7d5178-d934-4c57-ad7c-cf552a808db5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 54.544409ms + duration: 102.460762ms - id: 85 request: proto: HTTP/1.1 @@ -4272,7 +4272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4280,20 +4280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4301,10 +4301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a84ddf68-9c7a-4c65-aedc-0b0bda226d36 + - a33b33f2-d7d0-45ea-9a18-2891d43af2a9 status: 200 OK code: 200 - duration: 29.415765ms + duration: 45.700685ms - id: 86 request: proto: HTTP/1.1 @@ -4321,7 +4321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4329,20 +4329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4350,10 +4350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eb571e0-c844-44bf-bcc9-fd4b5e3cbe7d + - b25a6c00-ece2-4068-9dd2-7ba85aa4d99c status: 200 OK code: 200 - duration: 24.634038ms + duration: 58.803296ms - id: 87 request: proto: HTTP/1.1 @@ -4389,11 +4389,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4401,12 +4401,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2470112d-754c-4139-a08e-482a1a9466e3 + - 2498e357-0bb5-4c76-98c5-df912e801462 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 95.097862ms + duration: 127.808546ms - id: 88 request: proto: HTTP/1.1 @@ -4423,7 +4423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips method: GET response: proto: HTTP/2.0 @@ -4431,22 +4431,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 4567 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4555" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4454,12 +4454,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82bc62ff-ef62-4e90-a4f9-7c93fd974f73 + - d0933f6d-5ba6-4c4a-83d0-f69b2100a626 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 138.620877ms + duration: 186.703224ms - id: 89 request: proto: HTTP/1.1 @@ -4476,7 +4476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -4484,22 +4484,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 4567 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4555" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4507,12 +4507,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1250328c-9c96-483f-b3d4-b61a69840b85 + - f515b253-1fa4-4c48-bdb0-6422c616d108 X-Total-Count: - "2" status: 200 OK code: 200 - duration: 143.908981ms + duration: 211.452817ms - id: 90 request: proto: HTTP/1.1 @@ -4529,7 +4529,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -4539,7 +4539,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4548,11 +4548,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4560,12 +4560,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00f7bc4-8aa4-459e-a45e-561151300d66 + - 03d20f51-297a-4dd5-ba1b-cd729fb4ace4 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 50.300908ms + duration: 99.749069ms - id: 91 request: proto: HTTP/1.1 @@ -4582,7 +4582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4590,22 +4590,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1097 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4613,12 +4611,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c83f97b1-9254-456c-81ef-60888ed2468f - X-Total-Count: - - "1" + - 5995f5a8-22fa-459f-a358-3bd30cc67b18 status: 200 OK code: 200 - duration: 57.97946ms + duration: 23.432454ms - id: 92 request: proto: HTTP/1.1 @@ -4635,7 +4631,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -4643,20 +4639,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4664,10 +4662,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e05b21f7-b4c5-4277-a675-1b10580954dc + - 76725c3b-bc8a-4b67-90d1-f3e905f19d76 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 27.698343ms + duration: 129.573875ms - id: 93 request: proto: HTTP/1.1 @@ -4684,7 +4684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4692,20 +4692,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4713,10 +4713,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ed89b81-3ac8-4a89-8dd3-baab6ce98d55 + - f72662fc-979a-48e0-9414-3bc168ba9f6a status: 200 OK code: 200 - duration: 30.280135ms + duration: 26.817439ms - id: 94 request: proto: HTTP/1.1 @@ -4733,7 +4733,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -4743,7 +4743,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4752,11 +4752,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4764,12 +4764,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcab0a5c-2878-4510-8b5e-63f1fb58c188 + - 2460a94e-060e-4cda-964b-8521c3a7fa67 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 48.495214ms + duration: 93.302876ms - id: 95 request: proto: HTTP/1.1 @@ -4786,7 +4786,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4794,22 +4794,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1096 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4817,12 +4815,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5d1851d-eec7-447a-8f14-0e8d7c31f87a - X-Total-Count: - - "1" + - 472698a1-7ad8-4069-94b5-f0c2eb056b03 status: 200 OK code: 200 - duration: 64.32297ms + duration: 29.242555ms - id: 96 request: proto: HTTP/1.1 @@ -4839,7 +4835,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -4847,20 +4843,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4868,10 +4866,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8a26a9b-2e9b-4d0e-9baa-7d55b1d2551a + - 5d3d56cd-73c2-4efe-bad8-a92025dc90d1 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 29.70495ms + duration: 100.132919ms - id: 97 request: proto: HTTP/1.1 @@ -4888,7 +4888,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4896,20 +4896,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4917,10 +4917,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52b994a5-e953-41dc-8e74-dc992fe88773 + - f5743f6e-9733-44e1-b01a-8c241af14199 status: 200 OK code: 200 - duration: 35.858838ms + duration: 24.869218ms - id: 98 request: proto: HTTP/1.1 @@ -4937,7 +4937,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc334916-3201-413d-9379-6eb0dab2ad38 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 method: GET response: proto: HTTP/2.0 @@ -4945,20 +4945,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1101 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:39.362892Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"bc334916-3201-413d-9379-6eb0dab2ad38","name":"private_network_instance_servers","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:39.362892Z","id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.12.0/22","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"},{"created_at":"2025-10-08T23:05:39.362892Z","id":"03d3ed2a-aae4-4146-a4df-e616ba872090","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:c6d0::/64","updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}],"tags":[],"updated_at":"2025-10-08T23:05:39.362892Z","vpc_id":"ddbd697c-ebdd-45d0-93d5-0400c261ed15"}' + body: '{"created_at":"2025-10-15T15:03:54.502512Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"66674710-90d8-4d1f-a152-0e35201d5a49","name":"private_network_instance_servers","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:54.502512Z","id":"befc9220-f34a-494c-97be-a85ebc17c5e8","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-10-15T15:03:54.502512Z","id":"07324f12-14a4-44cf-a445-6c8e704a6d29","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ca90::/64","updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-10-15T15:03:54.502512Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' headers: Content-Length: - - "1102" + - "1101" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4966,10 +4966,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48fe2b53-17e1-4e81-8dd9-36e30a159cc9 + - 87dc3839-7337-4af3-9616-1bf81571be3c status: 200 OK code: 200 - duration: 32.759508ms + duration: 38.227087ms - id: 99 request: proto: HTTP/1.1 @@ -5005,11 +5005,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5017,12 +5017,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75d345e-fc3f-4855-aaca-2c431f7c4f76 + - 5c9d255d-d3ca-404e-a21e-8d7cd5762108 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 94.229815ms + duration: 139.991313ms - id: 100 request: proto: HTTP/1.1 @@ -5039,7 +5039,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -5047,22 +5047,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 2287 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "4555" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5070,12 +5068,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9185e686-c5ca-4e5f-bc3c-d8a8844ae9cf - X-Total-Count: - - "2" + - 8bd50568-1374-4d0e-966f-b543b7ed4909 status: 200 OK code: 200 - duration: 119.094068ms + duration: 134.262314ms - id: 101 request: proto: HTTP/1.1 @@ -5092,7 +5088,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?order=creation_date_desc&tags=data_scaleway_instance_servers%2Cterraform-test%2Cprivate-ips method: GET response: proto: HTTP/2.0 @@ -5100,22 +5096,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 4555 + content_length: 4567 uncompressed: false - body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "4555" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5123,12 +5119,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05a22993-88d0-4fda-9a15-0e3535ac7802 + - 403b37cf-65de-4668-8788-95d89177e53e X-Total-Count: - "2" status: 200 OK code: 200 - duration: 134.137892ms + duration: 183.40929ms - id: 102 request: proto: HTTP/1.1 @@ -5145,7 +5141,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -5153,20 +5149,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' headers: Content-Length: - - "2281" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5174,10 +5170,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15890e6f-46ec-48aa-a7b2-92dbf625ea9e - status: 200 OK - code: 200 - duration: 96.293917ms + - cd590a4a-c2ee-405d-8135-d9064b8ae42d + status: 404 Not Found + code: 404 + duration: 44.959236ms - id: 103 request: proto: HTTP/1.1 @@ -5194,7 +5190,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -5202,20 +5198,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 2287 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2281" + - "2287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5223,10 +5219,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42165c1d-5df9-4828-af6b-d125cd0fbb88 + - 12eb1572-11dd-4710-80b6-c57418f95d39 status: 200 OK code: 200 - duration: 110.527702ms + duration: 179.639855ms - id: 104 request: proto: HTTP/1.1 @@ -5243,7 +5239,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=tf-server-datasource-private-ips&order=creation_date_desc method: GET response: proto: HTTP/2.0 @@ -5251,20 +5247,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 4567 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","type":"not_found"}' + body: '{"servers":[{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"},{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}]}' headers: Content-Length: - - "143" + - "4567" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5272,10 +5270,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c47f6fe-b329-4f7c-9272-8ec84f93a4a9 - status: 404 Not Found - code: 404 - duration: 22.724671ms + - 857f2d1f-5002-45a6-bc0e-9b8bab266550 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 226.600843ms - id: 105 request: proto: HTTP/1.1 @@ -5292,7 +5292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -5300,22 +5300,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5323,12 +5321,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 866a3d23-6722-44c5-bdf7-4c5f1321396d - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 43.270856ms + - 53bc146e-5a89-48dc-a533-6b659977ca9d + status: 404 Not Found + code: 404 + duration: 34.636276ms - id: 106 request: proto: HTTP/1.1 @@ -5345,7 +5341,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -5355,7 +5351,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5364,11 +5360,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5376,12 +5372,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38c81cd9-7cd9-43d7-92e8-26d03e42dda9 + - d28ae734-24cf-4070-a410-485cfc4c2dda X-Total-Count: - "1" status: 200 OK code: 200 - duration: 47.034219ms + duration: 93.994934ms - id: 107 request: proto: HTTP/1.1 @@ -5398,7 +5394,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -5406,20 +5402,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5218d565-ece9-489b-9182-307648d514e2","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:01.146048Z","id":"a6b4af85-a9bd-4c47-b45b-59ddd4d0b908","product_resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:01.146048Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5427,10 +5423,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1345c81c-3bb2-410a-9417-e466b76c5f69 - status: 404 Not Found - code: 404 - duration: 33.174367ms + - e158db16-4fc5-486d-9b5a-a7080dae65bc + status: 200 OK + code: 200 + duration: 94.276392ms - id: 108 request: proto: HTTP/1.1 @@ -5447,7 +5443,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5455,20 +5451,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1097 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5476,10 +5472,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38c9cea3-aaca-4a8a-826c-4d826b789ca9 + - 3043557a-e5fc-4deb-bda3-a40cd1ca1079 status: 200 OK code: 200 - duration: 29.663383ms + duration: 42.714859ms - id: 109 request: proto: HTTP/1.1 @@ -5496,7 +5492,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -5504,20 +5500,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5525,10 +5523,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cb3070f-5d13-4fcf-ab2d-3f541a36226f + - 65ea37b2-6b31-47c4-8bcb-bc6c17da5fc4 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 24.152334ms + duration: 110.694948ms - id: 110 request: proto: HTTP/1.1 @@ -5545,7 +5545,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -5555,7 +5555,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -5564,9 +5564,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5574,10 +5574,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d3723f1-548c-4a27-a278-57ef1a1a8875 + - 0ebf2a03-0cfb-4059-b073-613ab3036a57 status: 200 OK code: 200 - duration: 46.399001ms + duration: 86.491078ms - id: 111 request: proto: HTTP/1.1 @@ -5594,7 +5594,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5602,20 +5602,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1097 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5623,10 +5623,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72aee079-8244-4566-8141-c60d715fa11b + - 6035c631-691b-4f9d-89f9-1b1b4242a6e5 status: 200 OK code: 200 - duration: 46.742968ms + duration: 28.544748ms - id: 112 request: proto: HTTP/1.1 @@ -5643,7 +5643,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/user_data method: GET response: proto: HTTP/2.0 @@ -5651,22 +5651,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5674,12 +5672,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1abf374-1042-49ff-8475-eff0f8f59ffc - X-Total-Count: - - "1" + - 732e6eba-9910-466e-9c13-d87a6be9a79d status: 200 OK code: 200 - duration: 52.609083ms + duration: 98.577374ms - id: 113 request: proto: HTTP/1.1 @@ -5696,7 +5692,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -5704,20 +5700,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 478 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5725,10 +5723,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec33a6c1-45eb-4311-971f-c6315fc294ba + - 49d07090-2028-4bdc-9f30-70a7fc81f861 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 45.90161ms + duration: 108.94104ms - id: 114 request: proto: HTTP/1.1 @@ -5745,7 +5745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/user_data method: GET response: proto: HTTP/2.0 @@ -5753,22 +5753,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5776,12 +5774,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4c4238a-dabf-4f69-aa78-4d1107979353 - X-Total-Count: - - "1" + - 63daa772-acc0-4ce6-8ab7-c39180000d44 status: 200 OK code: 200 - duration: 61.97987ms + duration: 108.733732ms - id: 115 request: proto: HTTP/1.1 @@ -5798,7 +5794,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5806,20 +5802,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5827,10 +5823,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b57b68c8-22b6-41e8-be00-e833f7f8211a + - 6d8c81be-014f-4447-8eaf-a07aebeed735 status: 200 OK code: 200 - duration: 33.223156ms + duration: 26.725797ms - id: 116 request: proto: HTTP/1.1 @@ -5847,7 +5843,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -5855,20 +5851,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 478 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "17" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5876,10 +5874,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b62f4bc-6465-4dda-9268-f126bead70b1 + - 70f17e68-20ad-415d-8e25-17f06154d47e + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 45.630898ms + duration: 101.993648ms - id: 117 request: proto: HTTP/1.1 @@ -5896,7 +5896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5904,20 +5904,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5925,10 +5925,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b4e6db6-2c47-468b-a35f-fa9e7bdae09c + - fccc2edb-82f8-4ffe-89ee-7e11dcf76a52 status: 200 OK code: 200 - duration: 23.817165ms + duration: 24.092442ms - id: 118 request: proto: HTTP/1.1 @@ -5945,7 +5945,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -5955,7 +5955,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5964,11 +5964,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5976,12 +5976,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3cb9d28-8089-4584-b98b-99e9d4cc6e9e + - 605e9f94-22b1-4047-b6ee-c827c22f35b6 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 49.337754ms + duration: 89.907983ms - id: 119 request: proto: HTTP/1.1 @@ -5998,7 +5998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=91774c41-5131-42c5-abf5-1480eaef9533&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6006,22 +6006,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1097 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:9ebf:6b73:72d4:a16a/64","created_at":"2025-10-15T15:04:02.717143Z","id":"4f74cd7f-d507-4a32-83b6-3e7ba7af107b","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:04:02.717143Z","zone":null},{"address":"172.16.0.3/22","created_at":"2025-10-15T15:04:02.605955Z","id":"7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"91774c41-5131-42c5-abf5-1480eaef9533","mac_address":"02:00:00:1D:67:4A","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:04:02.605955Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1097" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6029,12 +6027,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 250c6f2a-7fba-492f-acd6-a9aeca41db3f - X-Total-Count: - - "1" + - 4eb78f44-26b9-4e7c-aa13-ffa7d97a5e40 status: 200 OK code: 200 - duration: 47.78034ms + duration: 28.388304ms - id: 120 request: proto: HTTP/1.1 @@ -6051,7 +6047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=af4dfcf8-aceb-45fb-b64f-36b88cfce003&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -6059,20 +6055,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:1e5f:61fe:b0a8:ef5d/64","created_at":"2025-10-08T23:05:41.510627Z","id":"b558dcc9-eae0-4b15-9f56-b07cedd1ee8a","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:41.510627Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-10-08T23:05:41.397732Z","id":"1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","mac_address":"02:00:00:15:2B:66","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:41.397732Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1098" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6080,10 +6078,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b78bf2ea-635a-4860-9d7a-89de7bdb41d0 + - 632942f4-35a8-4cb8-90ef-dfb6e7dc5c04 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 31.467475ms + duration: 89.603642ms - id: 121 request: proto: HTTP/1.1 @@ -6100,7 +6100,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=4e379852-ab6d-468c-8280-4e586fbfc1d5&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4672ed07-3b74-43d9-9b23-f43d4fb81b91&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -6108,20 +6108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1098 + content_length: 1096 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:c6d0:3529:6b36:3106:f21c/64","created_at":"2025-10-08T23:05:44.862249Z","id":"477ad4e0-2529-4958-91d0-4b420d482790","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"03d3ed2a-aae4-4146-a4df-e616ba872090"},"tags":[],"updated_at":"2025-10-08T23:05:44.862249Z","zone":null},{"address":"172.16.12.3/22","created_at":"2025-10-08T23:05:44.714994Z","id":"b83b221d-5eea-4b23-8fbe-9823acefdfa4","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","mac_address":"02:00:00:1E:B8:6E","name":"tf-server-datasource-private-ips-1","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aafdd331-d2f4-45e6-8479-4bc3fdc290e7"},"tags":[],"updated_at":"2025-10-08T23:05:44.714994Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:ca90:3204:6d5:e0f8:a4d0/64","created_at":"2025-10-15T15:03:57.854178Z","id":"fe46c2e4-080b-42ee-9e79-827cd54689e8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"07324f12-14a4-44cf-a445-6c8e704a6d29"},"tags":[],"updated_at":"2025-10-15T15:03:57.854178Z","zone":null},{"address":"172.16.0.2/22","created_at":"2025-10-15T15:03:57.643670Z","id":"e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","mac_address":"02:00:00:1A:7F:2B","name":"tf-server-datasource-private-ips-0","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"befc9220-f34a-494c-97be-a85ebc17c5e8"},"tags":[],"updated_at":"2025-10-15T15:03:57.643670Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1098" + - "1096" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:47 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6129,10 +6129,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b68bbfb3-c992-4ab5-a990-f2a30180ef50 + - 410b38c5-6105-45f0-ab87-ca7cb1c2d722 status: 200 OK code: 200 - duration: 30.350506ms + duration: 28.533796ms - id: 122 request: proto: HTTP/1.1 @@ -6149,7 +6149,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics method: GET response: proto: HTTP/2.0 @@ -6157,20 +6157,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:43.808399+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2281" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6178,10 +6180,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b31eddb-cc17-47b4-97f9-280f031c0475 + - c6745aa8-5259-40c7-8bb9-b2fb31c270e8 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 100.360259ms + duration: 105.063161ms - id: 123 request: proto: HTTP/1.1 @@ -6198,7 +6202,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -6206,20 +6210,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2281 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:40.429546+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2281" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6227,10 +6233,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502dcbf0-4022-4533-816f-6092ad053bda + - 768bfbb4-a88e-4936-9839-966877ca9b08 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 105.432273ms + duration: 125.18ms - id: 124 request: proto: HTTP/1.1 @@ -6247,7 +6255,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5218d565-ece9-489b-9182-307648d514e2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 method: GET response: proto: HTTP/2.0 @@ -6255,20 +6263,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:43.904970Z","id":"5218d565-ece9-489b-9182-307648d514e2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:43.904970Z","id":"24e617bd-9f92-4299-ab6d-8d96b4647ea0","product_resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:43.904970Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:57.345403+00:00","id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","ipam_ip_ids":["e04c7fc6-5ea1-4d7b-95fa-54f4ec77b48b","fe46c2e4-080b-42ee-9e79-827cd54689e8"],"mac_address":"02:00:00:1a:7f:2b","modification_date":"2025-10-15T15:03:57.536055+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"e73d1139-6883-42d1-8328-94b01d23e660","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6276,10 +6284,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f492e02-d3c8-48c5-999f-da72c05659f8 + - a541e147-4433-456a-b17d-5b2d2ed4ab26 status: 200 OK code: 200 - duration: 41.580105ms + duration: 107.360147ms - id: 125 request: proto: HTTP/1.1 @@ -6296,7 +6304,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/22828cad-b9d1-4171-b1bd-87c4fc5712e8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 method: GET response: proto: HTTP/2.0 @@ -6304,20 +6312,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.503860Z","id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.503860Z","id":"f59345b2-c5c0-4ad0-837e-0c56c1cd566f","product_resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.503860Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:02.264290+00:00","id":"91774c41-5131-42c5-abf5-1480eaef9533","ipam_ip_ids":["7b6facb8-3f98-4288-a8ee-fd1b0e1efca3","4f74cd7f-d507-4a32-83b6-3e7ba7af107b"],"mac_address":"02:00:00:1d:67:4a","modification_date":"2025-10-15T15:04:02.480449+00:00","private_network_id":"66674710-90d8-4d1f-a152-0e35201d5a49","server_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6325,52 +6333,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2e3ca2d-ab3b-48d7-8e8a-456cd96d6f4a + - da23b1c2-4b85-41ac-b83d-39840f3be91e status: 200 OK code: 200 - duration: 45.900267ms + duration: 102.255869ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 0 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action","href_result":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","id":"58b7542e-2d25-4485-9787-be5871923009","progress":0,"started_at":"2025-10-08T23:05:48.246405+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/58b7542e-2d25-4485-9787-be5871923009 + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6378,10 +6380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01e6d1c8-0b3a-44da-9a8a-a924dc0c8dc6 - status: 202 Accepted - code: 202 - duration: 183.340826ms + - 4e2ebecc-f855-48ce-ae6e-615f181af9a1 + status: 204 No Content + code: 204 + duration: 321.599391ms - id: 127 request: proto: HTTP/1.1 @@ -6398,28 +6400,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2303 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:48.103542+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6427,52 +6427,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c6078a5-5d86-479b-920c-2de0d80f0b3b - status: 200 OK - code: 200 - duration: 106.151235ms + - 3f234828-ea7e-4632-b2bc-04de874b39c3 + status: 204 No Content + code: 204 + duration: 367.578359ms - id: 128 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics/91774c41-5131-42c5-abf5-1480eaef9533 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 148 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action","href_result":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624","id":"5d81b155-9cd8-4081-a7aa-565d74a86882","progress":0,"started_at":"2025-10-08T23:05:48.495407+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"91774c41-5131-42c5-abf5-1480eaef9533","type":"not_found"}' headers: Content-Length: - - "357" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d81b155-9cd8-4081-a7aa-565d74a86882 + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6480,10 +6476,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad70edc6-d190-4fe5-9ee9-317131c91938 - status: 202 Accepted - code: 202 - duration: 439.131295ms + - f90395df-d703-4542-8475-7a8dad8d5586 + status: 404 Not Found + code: 404 + duration: 107.309192ms - id: 129 request: proto: HTTP/1.1 @@ -6500,7 +6496,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics/4672ed07-3b74-43d9-9b23-f43d4fb81b91 method: GET response: proto: HTTP/2.0 @@ -6508,20 +6504,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2303 + content_length: 148 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:48.118544+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"4672ed07-3b74-43d9-9b23-f43d4fb81b91","type":"not_found"}' headers: Content-Length: - - "2303" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6529,10 +6525,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bad365a8-a871-4af6-983b-9b0138ec403e - status: 200 OK - code: 200 - duration: 108.587698ms + - f7c7e465-e180-4185-a026-edd2155e4712 + status: 404 Not Found + code: 404 + duration: 91.87454ms - id: 130 request: proto: HTTP/1.1 @@ -6549,7 +6545,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/private_nics method: GET response: proto: HTTP/2.0 @@ -6557,20 +6553,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2437 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"402","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:51.123043+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2437" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:04:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6578,52 +6576,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c7f0e30-d13d-4b6b-b9bc-c245befe3ed5 + - 3c33f53d-e3fe-4a1d-ab09-2295cf40a062 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 114.336273ms + duration: 117.576559ms - id: 131 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 20 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/action","href_result":"/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","id":"8079de5f-9b9b-43b6-a2f7-070d88489ad5","progress":0,"started_at":"2025-10-08T23:05:53.649091+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "353" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8079de5f-9b9b-43b6-a2f7-070d88489ad5 + - Wed, 15 Oct 2025 15:04:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6631,10 +6629,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6985278-1356-49a9-9c39-ce46fbe6fbec - status: 202 Accepted - code: 202 - duration: 181.872291ms + - ac4620f5-2ca9-49d1-add0-d6edab666f30 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.215004ms - id: 132 request: proto: HTTP/1.1 @@ -6651,7 +6651,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -6659,20 +6659,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2437 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:50.660719+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2437" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6680,10 +6680,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c476c4b-aea1-4fd0-a5c2-82b55777b8e6 + - 7e1726df-7bcb-4150-ae05-d5c7ffceb2d5 status: 200 OK code: 200 - duration: 85.075546ms + duration: 129.825619ms - id: 133 request: proto: HTTP/1.1 @@ -6700,7 +6700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -6708,20 +6708,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2400 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:43.808399+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"402","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b7","maintenances":[],"modification_date":"2025-10-08T23:05:53.518748+00:00","name":"tf-server-datasource-private-ips-1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:44.534953+00:00","id":"4e379852-ab6d-468c-8280-4e586fbfc1d5","ipam_ip_ids":["b83b221d-5eea-4b23-8fbe-9823acefdfa4","477ad4e0-2529-4958-91d0-4b420d482790"],"mac_address":"02:00:00:1e:b8:6e","modification_date":"2025-10-08T23:05:44.637777+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"5218d565-ece9-489b-9182-307648d514e2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2400" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6729,52 +6729,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90f0caee-984e-45a4-81e6-bb2abbf3afb2 + - d99bfffd-8996-4938-9db9-39b28d167dc2 status: 200 OK code: 200 - duration: 113.465961ms + duration: 139.968062ms - id: 134 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1829 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/action","href_result":"/servers/3dd41b21-db69-43f7-8f6d-c150e8153624","id":"3309d571-d987-45f8-9d78-58ff0f8e53d9","progress":0,"started_at":"2025-10-08T23:05:53.908194+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:03:55.797620+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3309d571-d987-45f8-9d78-58ff0f8e53d9 + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6782,10 +6778,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd601df7-6da6-46ad-b5f6-dfbc9c2caf91 - status: 202 Accepted - code: 202 - duration: 201.788541ms + - a798671b-a8d3-4760-bf89-75e52c481409 + status: 200 OK + code: 200 + duration: 149.234272ms - id: 135 request: proto: HTTP/1.1 @@ -6802,7 +6798,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -6810,20 +6806,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2400 + content_length: 1829 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:01.018694+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2400" + - "1829" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6831,10 +6827,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1b94413-b0ae-4f0a-873d-ac540c270c3d + - 482bce3f-d725-44fb-92c7-b23ce638d8d5 status: 200 OK code: 200 - duration: 132.098361ms + duration: 151.811622ms - id: 136 request: proto: HTTP/1.1 @@ -6851,7 +6847,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -6859,20 +6855,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:55.945304Z","id":"712160ac-b63e-440b-baba-cc676770a14a","product_resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:55.945304Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6880,10 +6876,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 696ac1ff-2da4-43c6-94b6-39019c14dae5 - status: 404 Not Found - code: 404 - duration: 56.706129ms + - 9fe1d5a9-2e77-446e-bb24-68b31061ef48 + status: 200 OK + code: 200 + duration: 74.112435ms - id: 137 request: proto: HTTP/1.1 @@ -6900,7 +6896,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -6908,20 +6904,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"46ae046a-3d9d-45fb-9bf3-ad4a5ba7e57c","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:01.146048Z","id":"a6b4af85-a9bd-4c47-b45b-59ddd4d0b908","product_resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:01.146048Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6929,11 +6925,713 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4fa47f7-dc73-4e66-b2b6-19a6c57bdcf8 + - 42f465c3-8417-4ac6-8d49-4387d9ea3c27 + status: 200 OK + code: 200 + duration: 116.436261ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e73d1139-6883-42d1-8328-94b01d23e660/action","href_result":"/servers/e73d1139-6883-42d1-8328-94b01d23e660","id":"8a02c012-9db7-4db6-86f4-fae33880dfc5","progress":0,"started_at":"2025-10-15T15:04:08.023162+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8a02c012-9db7-4db6-86f4-fae33880dfc5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4bfb2eb0-4d65-4074-bdad-4e8856b627b3 + status: 202 Accepted + code: 202 + duration: 286.779822ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/action","href_result":"/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04","id":"854bbea5-b640-4309-9f66-1b9a33ca1344","progress":0,"started_at":"2025-10-15T15:04:08.065509+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/854bbea5-b640-4309-9f66-1b9a33ca1344 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 616aadf2-006c-4e10-8498-a9c87e1f0ef2 + status: 202 Accepted + code: 202 + duration: 279.169006ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1851 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:04:07.793424+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1851" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91aa95c2-e29c-4101-88ce-6fd9f0888517 + status: 200 OK + code: 200 + duration: 150.336539ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1851 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:07.838316+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1851" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c8f249e5-847e-4ff4-8bb2-7a46eaa3d843 + status: 200 OK + code: 200 + duration: 135.136446ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1985 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"202","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:04:10.911758+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1985" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 779c2fa2-06e3-4fe6-bd30-41b59d2881ea + status: 200 OK + code: 200 + duration: 157.779157ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1986 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:10.878374+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1986" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25000573-e5c0-44db-945a-bbe6714bfa1f + status: 200 OK + code: 200 + duration: 136.977764ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04/action","href_result":"/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04","id":"3f44b835-42c5-4c57-b685-6e3d605f389d","progress":0,"started_at":"2025-10-15T15:04:13.588816+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3f44b835-42c5-4c57-b685-6e3d605f389d + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b8bdac9-12f7-494b-ab85-da16d42a215a + status: 202 Accepted + code: 202 + duration: 248.344457ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/e73d1139-6883-42d1-8328-94b01d23e660/action","href_result":"/servers/e73d1139-6883-42d1-8328-94b01d23e660","id":"09f1d55e-868b-41c6-bdc5-c4dc5d6b0025","progress":0,"started_at":"2025-10-15T15:04:13.634935+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09f1d55e-868b-41c6-bdc5-c4dc5d6b0025 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 85fcf824-0251-4009-9bb5-7d8dae2a5511 + status: 202 Accepted + code: 202 + duration: 296.808446ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1949 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:01.018694+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-1","id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4b","maintenances":[],"modification_date":"2025-10-15T15:04:13.389210+00:00","name":"tf-server-datasource-private-ips-1","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"17f4470a-8d69-48ca-b14c-f549b474b513","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1949" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caecd4f9-4eae-4357-8262-18ef2eced99f + status: 200 OK + code: 200 + duration: 155.730286ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1948 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:55.797620+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"e73d1139-6883-42d1-8328-94b01d23e660","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"202","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:45","maintenances":[],"modification_date":"2025-10-15T15:04:13.396732+00:00","name":"tf-server-datasource-private-ips-0","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","private-ips"],"volumes":{"0":{"boot":false,"id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1948" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e788f60e-e590-496b-a4b5-cf28d91aa96f + status: 200 OK + code: 200 + duration: 169.229231ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa29b928-e377-4137-9a81-b50a7842c114 status: 404 Not Found code: 404 - duration: 29.886926ms - - id: 138 + duration: 47.916865ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17f4470a-8d69-48ca-b14c-f549b474b513","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f47d32a2-3498-4bf2-b01d-e5f0dcbdca09 + status: 404 Not Found + code: 404 + duration: 25.030763ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6fe9ba1-3f06-4712-8d2f-4146abca719a + status: 404 Not Found + code: 404 + duration: 40.160274ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7e804e1-2904-4d36-a9da-537636f74fbc + status: 404 Not Found + code: 404 + duration: 25.450981ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -6949,7 +7647,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 method: GET response: proto: HTTP/2.0 @@ -6957,20 +7655,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2400 + content_length: 494 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:01.146048Z","id":"17f4470a-8d69-48ca-b14c-f549b474b513","last_detached_at":"2025-10-15T15:04:15.027104Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.027104Z","zone":"fr-par-1"}' headers: Content-Length: - - "2400" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:59 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6978,11 +7676,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed12072e-2630-4e08-a294-1a2d93c732a5 + - ee97a853-e3cc-419d-873d-663f75e4e08f status: 200 OK code: 200 - duration: 97.457968ms - - id: 139 + duration: 83.91684ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17f4470a-8d69-48ca-b14c-f549b474b513 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e9d32fb9-2add-4049-be3d-d6314ec3039b + status: 204 No Content + code: 204 + duration: 179.923086ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -6998,7 +7743,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f method: GET response: proto: HTTP/2.0 @@ -7006,20 +7751,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2400 + content_length: 494 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:40.429546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-datasource-private-ips-0","id":"3dd41b21-db69-43f7-8f6d-c150e8153624","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"701","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b1","maintenances":[],"modification_date":"2025-10-08T23:05:53.750826+00:00","name":"tf-server-datasource-private-ips-0","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:41.139940+00:00","id":"af4dfcf8-aceb-45fb-b64f-36b88cfce003","ipam_ip_ids":["1bd52813-ecd6-43fb-80bd-f5bbfbff01f8","b558dcc9-eae0-4b15-9f56-b07cedd1ee8a"],"mac_address":"02:00:00:15:2b:66","modification_date":"2025-10-08T23:05:41.269624+00:00","private_network_id":"bc334916-3201-413d-9379-6eb0dab2ad38","server_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"22828cad-b9d1-4171-b1bd-87c4fc5712e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:55.945304Z","id":"bd840e6d-9bfe-4a70-87a7-0b333936d63f","last_detached_at":"2025-10-15T15:04:15.140914Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.140914Z","zone":"fr-par-1"}' headers: Content-Length: - - "2400" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7027,11 +7772,105 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efffc0bc-0970-4842-81bd-bc05de39fdff + - 30c058e8-6ccc-4ac1-81f3-6d3b662211c1 status: 200 OK code: 200 - duration: 101.411419ms - - id: 140 + duration: 216.809012ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd840e6d-9bfe-4a70-87a7-0b333936d63f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93f6afb1-e334-43f3-8895-4aebd4a69242 + status: 204 No Content + code: 204 + duration: 136.093973ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/66674710-90d8-4d1f-a152-0e35201d5a49 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 150d0555-b5c4-4313-9254-c76a121c58ab + status: 204 No Content + code: 204 + duration: 1.174871601s + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -7047,7 +7886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e73d1139-6883-42d1-8328-94b01d23e660 method: GET response: proto: HTTP/2.0 @@ -7057,7 +7896,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e73d1139-6883-42d1-8328-94b01d23e660","type":"not_found"}' headers: Content-Length: - "143" @@ -7066,9 +7905,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7076,11 +7915,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2713bb86-6acf-40f2-8f6e-921693c67df5 + - d4eadb1b-a0b4-4aec-97f4-02c6d987dfe9 status: 404 Not Found code: 404 - duration: 63.859316ms - - id: 141 + duration: 50.650511ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7096,7 +7935,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3dd41b21-db69-43f7-8f6d-c150e8153624/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/71897cdd-9b95-4e65-924c-ad9fc188ee04 method: GET response: proto: HTTP/2.0 @@ -7106,7 +7945,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3dd41b21-db69-43f7-8f6d-c150e8153624","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"71897cdd-9b95-4e65-924c-ad9fc188ee04","type":"not_found"}' headers: Content-Length: - "143" @@ -7115,9 +7954,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7125,7 +7964,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19ca650a-df5d-4c83-8f3e-66d939c7fd82 + - d642df44-13c1-42c8-95e2-fd9a09203709 status: 404 Not Found code: 404 - duration: 27.923929ms + duration: 50.771347ms diff --git a/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml b/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml index cbbec6762..d3446aed9 100644 --- a/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/data-source-volume-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","volume_type":"l_ssd","size":2000000000}' + body: '{"name":"tf-volume","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":2000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:02 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a8072f3-3acc-4c4c-8a75-4932c06bf1de + - 3fb20a26-d7c3-40b5-b759-1b92ff419d58 status: 201 Created code: 201 - duration: 309.585042ms + duration: 241.166987ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:02 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12964ca9-98cd-4e2b-95bd-2a1920143717 + - ef398d99-70fd-4299-9442-1e7eb5b312ed status: 200 OK code: 200 - duration: 54.656875ms + duration: 82.774542ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:02 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f4a1bd7-a037-4403-83ae-7dd1bc86dac8 + - 843a0847-3a89-4aa0-aec1-0368d710739b status: 200 OK code: 200 - duration: 61.960875ms + duration: 84.718005ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22f25801-7458-4197-b52f-f798609ed455 + - 8ae6e833-3ec4-4f68-898b-d588c89d8be1 status: 200 OK code: 200 - duration: 68.561584ms + duration: 91.614322ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7baa072d-1b60-4d94-8bc4-e98f2bd3797d + - 7088354f-3b40-4c6a-9298-8b79eadceb5f status: 200 OK code: 200 - duration: 59.319708ms + duration: 98.140547ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -276,7 +276,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -285,9 +285,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13702156-8230-4683-a8f3-ebd2ce99a341 + - 1dcd5c46-7616-4faf-934a-54db9d26c486 status: 200 OK code: 200 - duration: 55.790167ms + duration: 102.429848ms - id: 6 request: proto: HTTP/1.1 @@ -314,7 +314,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes?name=tf-volume method: GET response: @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"volumes":[{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' + body: '{"volumes":[{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' headers: Content-Length: - "433" @@ -334,11 +334,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,12 +346,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e83184e-221c-4558-9d74-9e9104d447de + - 711b16d6-15ab-40b0-85a7-1aa90e547fea X-Total-Count: - "1" status: 200 OK code: 200 - duration: 59.69175ms + duration: 148.0884ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7bca658-a68e-40ad-b3a1-0f3f0c9bf833 + - 8abfdca6-c08a-4cba-90fd-e6121a959f1a status: 200 OK code: 200 - duration: 66.092583ms + duration: 85.984269ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 910f5578-0fc3-4e7b-88db-4fc9877f893c + - 351b6dc9-74ef-42e0-a5f6-d5af11786196 status: 200 OK code: 200 - duration: 56.422708ms + duration: 105.562832ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b64bf80-b2be-44f3-95f0-a6c5f66bc1ce + - d8bd9789-2277-4ac0-90cf-02047a5834de status: 200 OK code: 200 - duration: 60.67825ms + duration: 98.367433ms - id: 10 request: proto: HTTP/1.1 @@ -514,7 +514,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes?name=tf-volume method: GET response: @@ -525,7 +525,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"volumes":[{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' + body: '{"volumes":[{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' headers: Content-Length: - "433" @@ -534,11 +534,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Link: - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,12 +546,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bc6134b-025d-462c-a38d-8cbe897e997e + - 6b89b9ab-3f38-4a79-8978-01807b276a3f X-Total-Count: - "1" status: 200 OK code: 200 - duration: 86.016583ms + duration: 125.793537ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -587,9 +587,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:03 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26f3f8ef-a334-4c83-b2d8-305300eec621 + - b2f05003-bd3b-4832-92af-ac39a5188d90 status: 200 OK code: 200 - duration: 59.07975ms + duration: 133.969884ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -627,7 +627,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 163f0e11-fcf0-4971-abbb-007777489319 + - 9c2e7409-c0fd-44a6-a85f-672f996756f1 status: 200 OK code: 200 - duration: 63.00325ms + duration: 94.164835ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes?name=tf-volume + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -674,22 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 430 uncompressed: false - body: '{"volumes":[{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "430" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -697,12 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d6a096f-4960-41eb-8c7f-14976606e0ad - X-Total-Count: - - "1" + - 5a3972f2-67de-4af1-892a-f20e2597696f status: 200 OK code: 200 - duration: 72.263792ms + duration: 98.769547ms - id: 14 request: proto: HTTP/1.1 @@ -718,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes?name=tf-volume method: GET response: proto: HTTP/2.0 @@ -727,20 +723,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 433 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volumes":[{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}]}' headers: Content-Length: - - "430" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:22 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +746,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c86d081a-9cf5-4cd0-bf9a-d2309407aaed + - 69e2d7df-e00e-47b1-9342-5c5b524bb715 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 73.87475ms + duration: 115.914798ms - id: 15 request: proto: HTTP/1.1 @@ -767,8 +767,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -778,7 +778,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ac1af07-ca69-48e1-8dbd-29835e887d24 + - 957da4da-c62a-4052-b5f7-b9ad47fca08d status: 200 OK code: 200 - duration: 52.083334ms + duration: 116.411359ms - id: 16 request: proto: HTTP/1.1 @@ -816,8 +816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -827,7 +827,7 @@ interactions: trailer: {} content_length: 430 uncompressed: false - body: '{"volume":{"creation_date":"2025-09-08T07:18:02.648681+00:00","export_uri":null,"id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","modification_date":"2025-09-08T07:18:02.648681+00:00","name":"tf-volume","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:20.985762+00:00","export_uri":null,"id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","modification_date":"2025-10-15T15:04:20.985762+00:00","name":"tf-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":2000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "430" @@ -836,9 +836,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -846,10 +846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ad7a2ac-2255-46b5-9bdd-7e597f72b509 + - 4409c17a-1db8-4188-a7f1-6f29065215a9 status: 200 OK code: 200 - duration: 47.154375ms + duration: 85.887418ms - id: 17 request: proto: HTTP/1.1 @@ -865,8 +865,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: DELETE response: proto: HTTP/2.0 @@ -883,9 +883,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,10 +893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7264b912-f954-4eff-98c2-dc1c7d12bccc + - 61c73040-7eba-458b-b5ce-feadbe92091f status: 204 No Content code: 204 - duration: 110.955042ms + duration: 152.029612ms - id: 18 request: proto: HTTP/1.1 @@ -912,8 +912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -923,7 +923,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' headers: Content-Length: - "143" @@ -932,9 +932,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -942,10 +942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8292c5b9-5588-432a-a156-a75dbb326193 + - 90ad7d35-babc-49ab-8aae-82181c460f50 status: 404 Not Found code: 404 - duration: 32.6195ms + duration: 34.130783ms - id: 19 request: proto: HTTP/1.1 @@ -961,8 +961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -972,7 +972,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' headers: Content-Length: - "143" @@ -981,9 +981,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -991,10 +991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff2b6136-a950-4a8e-a3e0-b35f7795827c + - bdd9f5cb-db73-4c5e-85b6-c5c0fda2571d status: 404 Not Found code: 404 - duration: 38.675125ms + duration: 21.158805ms - id: 20 request: proto: HTTP/1.1 @@ -1010,8 +1010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7f0df598-8930-4dfb-ae74-b3e5d895ecd0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/309e8530-e4c7-41ae-b3af-ef84e51e80b0 method: GET response: proto: HTTP/2.0 @@ -1021,7 +1021,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7f0df598-8930-4dfb-ae74-b3e5d895ecd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"309e8530-e4c7-41ae-b3af-ef84e51e80b0","type":"not_found"}' headers: Content-Length: - "143" @@ -1030,9 +1030,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 08 Sep 2025 07:18:04 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1040,7 +1040,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 253ff2e7-668f-4eb3-8151-e408cf4a3257 + - 19dff237-6574-42cc-a765-c776a8cb8b39 status: 404 Not Found code: 404 - duration: 32.602459ms + duration: 27.110092ms diff --git a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml index f69a7adf8..09bbe2652 100644 --- a/internal/services/instance/testdata/image-external-block-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-external-block-volume.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-mystifying-lederberg","perf_iops":5000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":40000000000},"tags":[]}' + body: '{"name":"tf-volume-suspicious-chatelet","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: Content-Type: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 428 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "427" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:17 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -48,48 +48,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b917790b-5e1c-49c4-8da4-d91cd09cb826 + - 33a7b412-2f7b-46ef-a4e8-fc7126db7621 status: 200 OK code: 200 - duration: 182.328351ms + duration: 490.468543ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-vigorous-payne","perf_iops":15000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":20000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 429 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:17 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3236b216-e3b8-4e96-8b50-766212ab3f16 + - 2f18b654-295d-4e25-9641-18fb0ba21b62 status: 200 OK code: 200 - duration: 221.317808ms + duration: 92.71424ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -127,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 427 + content_length: 429 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "427" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:17 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -148,22 +146,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aca6dd52-e248-42b8-97d0-684fb95ffdf6 + - 956cbb90-a5d4-4f85-9e19-2220026218eb status: 200 OK code: 200 - duration: 53.302566ms + duration: 101.325692ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 151 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-upbeat-tereshkova","perf_iops":5000,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","from_empty":{"size":20000000000},"tags":[]}' + body: '{"name":"tf-volume-festive-goodall","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":40000000000},"tags":[]}' form: {} headers: Content-Type: @@ -178,18 +176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:17 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -199,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3660906b-0b41-4283-9c14-33de2e26d63c + - b55476ad-3e6f-47be-a43b-18953b1eca48 status: 200 OK code: 200 - duration: 256.281446ms + duration: 706.428059ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -227,18 +225,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:17 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -248,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e46e64b0-9b6c-40a9-8ccc-f13eb089095b + - dcee7732-3240-4c48-acf5-a87d7c8fce5b status: 200 OK code: 200 - duration: 59.20616ms + duration: 109.61587ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -276,18 +274,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "428" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -297,46 +295,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c67fa9a5-ae45-46f9-80bf-a48a74474007 + - 77de612e-5c3e-4889-9d80-02f2e9dc53c6 status: 200 OK code: 200 - duration: 43.473484ms + duration: 85.428554ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-elegant-diffie","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":20000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d592c37-7c8e-4e41-9b5e-27ebc36a0f42 + - 014c5fc6-a044-4ac7-84cf-0b26f111e21c status: 200 OK code: 200 - duration: 31.797295ms + duration: 903.157673ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 method: GET response: proto: HTTP/2.0 @@ -374,18 +374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "428" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -395,46 +395,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cca3bc36-3a97-45ae-a6a4-7177e1b17bcf + - 2bae27de-89b3-4517-925a-318308442101 status: 200 OK code: 200 - duration: 41.13848ms + duration: 71.47478ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-snapshot-nice-hypatia","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 467 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:50.457607Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -444,46 +446,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92f59f87-7503-4d86-b7e0-9b50cd5ec055 + - 6238b761-09cf-4bfc-b186-c79935baae0a status: 200 OK code: 200 - duration: 37.406023ms + duration: 1.188689832s - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 149 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-snapshot-adoring-kirch","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:50.680151Z","zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -493,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38869a28-9588-495c-8e1f-d82cd1dd76be + - dd7bfebd-a21d-40a8-b352-3d96f8c0be06 status: 200 OK code: 200 - duration: 43.244945ms + duration: 974.97893ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -521,18 +525,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 463 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:50.680151Z","zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:22 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -542,48 +546,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a83cfa56-89dd-4d1c-9e04-1e2946fe3aac + - 1c717de9-dd17-4907-919c-b16128981c13 status: 200 OK code: 200 - duration: 47.14668ms + duration: 422.998917ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-snapshot-jolly-franklin","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 464 + content_length: 468 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:50.457607Z","zone":"fr-par-1"}' headers: Content-Length: - - "464" + - "468" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:23 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -593,48 +595,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8a935f4-6fc0-4bcd-95bb-8970c2476cf8 + - 40b5fab2-94e8-42bb-bdd1-950c123580f7 status: 200 OK code: 200 - duration: 302.296801ms + duration: 424.250133ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 157 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-snapshot-elegant-chandrasekhar","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 468 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:50.457607Z","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "468" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:23 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -644,48 +644,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6483670-c2b6-421a-9f4c-332d64d286f3 + - 9384ef69-c889-45ae-9af0-dae2e8f223b9 status: 200 OK code: 200 - duration: 302.529227ms + duration: 258.147316ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-snapshot-suspicious-swanson","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 470 + content_length: 422 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "470" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:23 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -695,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74030788-dd8e-4a5c-9104-d631b9996357 + - 0108be41-6887-4e6c-bad9-fb87e5665481 status: 200 OK code: 200 - duration: 225.545353ms + duration: 82.659838ms - id: 14 request: proto: HTTP/1.1 @@ -715,7 +713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 method: GET response: proto: HTTP/2.0 @@ -723,18 +721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 422 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"creating","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:23 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -744,46 +742,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c0c5390-b85f-4c0a-b79a-e040854b34a9 + - 1aa5ace5-d063-49b4-8dd6-54fe621ada33 status: 200 OK code: 200 - duration: 100.311318ms + duration: 88.209741ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 157 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-snapshot-optimistic-kowalevski","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 470 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:55.913176Z","zone":"fr-par-1"}' headers: Content-Length: - - "477" + - "470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0de66845-1db5-4e90-9acd-11c55aa87068 + - bcc60539-6d6b-4ab3-8a85-1d675290f7db status: 200 OK code: 200 - duration: 207.935593ms + duration: 685.534455ms - id: 16 request: proto: HTTP/1.1 @@ -813,7 +813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -821,18 +821,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 470 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:55.913176Z","zone":"fr-par-1"}' headers: Content-Length: - - "471" + - "470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef488194-d2ea-4975-8636-0450c34f297d + - 752dc2b0-6876-48f0-9e46-f5670cd7cb1e status: 200 OK code: 200 - duration: 188.697978ms + duration: 513.447925ms - id: 17 request: proto: HTTP/1.1 @@ -862,7 +862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -870,18 +870,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 464 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:50.680151Z","zone":"fr-par-1"}' headers: Content-Length: - - "465" + - "464" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -891,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02f5eb65-2131-4b8b-acf0-c677496440f9 + - 33b6ed7b-09a2-4b04-836c-173170b91c9d status: 200 OK code: 200 - duration: 188.573434ms + duration: 897.135492ms - id: 18 request: proto: HTTP/1.1 @@ -911,7 +911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -919,18 +919,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 464 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.957357Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:50.680151Z","zone":"fr-par-1"}' headers: Content-Length: - - "465" + - "464" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -940,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 708992ce-6f5d-44cf-babb-74b36711daa5 + - cf7b3d23-1b00-427a-83b7-bdab05043926 status: 200 OK code: 200 - duration: 95.857666ms + duration: 722.31548ms - id: 19 request: proto: HTTP/1.1 @@ -960,7 +960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -970,7 +970,7 @@ interactions: trailer: {} content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:23.026551Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:55.913176Z","zone":"fr-par-1"}' headers: Content-Length: - "471" @@ -979,7 +979,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -989,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d54a04f6-04b0-4193-8638-9ade2391b882 + - dc206801-3c33-48a2-b87f-cef1ee4d0ef3 status: 200 OK code: 200 - duration: 123.225264ms + duration: 677.705637ms - id: 20 request: proto: HTTP/1.1 @@ -1009,7 +1009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -1017,18 +1017,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:22.952187Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:55.913176Z","zone":"fr-par-1"}' headers: Content-Length: - - "477" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:28 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1038,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1823e5c5-938c-4843-b09b-29577f967c4f + - f603f612-9d00-48ea-a8dd-a4b7c78dd935 status: 200 OK code: 200 - duration: 124.617999ms + duration: 503.548657ms - id: 21 request: proto: HTTP/1.1 @@ -1053,7 +1053,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-test-image-external-block-volume","root_volume":"758d1347-1273-448a-9b06-199f9d05531b","arch":"x86_64","extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e"}},"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false}' + body: '{"name":"tf-test-image-external-block-volume","root_volume":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","arch":"x86_64","extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' form: {} headers: Content-Type: @@ -1070,7 +1070,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1079,9 +1079,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1091,10 +1091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc44016d-f283-4fa6-aa8a-0febf73680ba + - edbd9b46-280a-4a9f-b0c6-7d9c54a93a72 status: 201 Created code: 201 - duration: 545.572157ms + duration: 2.554239664s - id: 22 request: proto: HTTP/1.1 @@ -1111,7 +1111,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1121,7 +1121,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1130,7 +1130,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1140,10 +1140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d000ae29-bbb2-4fbf-a6f9-f891bbe39b93 + - 27925970-a6d0-44cf-b7cf-84c90c15c802 status: 200 OK code: 200 - duration: 100.731586ms + duration: 117.906055ms - id: 23 request: proto: HTTP/1.1 @@ -1160,7 +1160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1170,7 +1170,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1179,7 +1179,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1189,10 +1189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8739cab1-2532-4fe6-8e61-e7e070861355 + - 90edce81-f6ac-4107-87b6-869201ec030f status: 200 OK code: 200 - duration: 115.834069ms + duration: 136.899778ms - id: 24 request: proto: HTTP/1.1 @@ -1209,7 +1209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1219,7 +1219,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1228,7 +1228,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1238,10 +1238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dbe9280-26c3-4e5c-a319-3dddd319eead + - 70d0a612-dbb2-48d9-8d78-ab0608f07b4a status: 200 OK code: 200 - duration: 91.047045ms + duration: 117.907468ms - id: 25 request: proto: HTTP/1.1 @@ -1258,7 +1258,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -1266,18 +1266,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 429 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1287,10 +1287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8ec38eb-35da-4099-a55a-b73ae92ca75d + - f1bda2e7-a834-433a-84ea-81943d8d3f43 status: 200 OK code: 200 - duration: 47.857324ms + duration: 75.776924ms - id: 26 request: proto: HTTP/1.1 @@ -1307,7 +1307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -1315,18 +1315,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "428" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1336,10 +1336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7ee2a33-f567-468d-a548-aeaeff43741d + - 3088246f-0991-4f34-943d-00d007603504 status: 200 OK code: 200 - duration: 49.030406ms + duration: 82.074599ms - id: 27 request: proto: HTTP/1.1 @@ -1356,7 +1356,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 method: GET response: proto: HTTP/2.0 @@ -1364,18 +1364,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:29 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1385,10 +1385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73177d2a-a3c6-4cce-9b3e-ce586d17f27f + - 3a19aa58-6b01-4fe8-b5dd-494ded22585b status: 200 OK code: 200 - duration: 52.152888ms + duration: 82.065923ms - id: 28 request: proto: HTTP/1.1 @@ -1405,7 +1405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -1413,18 +1413,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:03.338438Z","id":"2d827074-4d71-4433-b3f3-3724cad65bb0","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:03.338438Z","zone":"fr-par-1"}' headers: Content-Length: - - "703" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1434,10 +1434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51b85c74-66d3-447e-b141-5965d193893b + - a94ccf28-f6a1-4b88-aceb-3611b1f9250e status: 200 OK code: 200 - duration: 255.21386ms + duration: 582.94884ms - id: 29 request: proto: HTTP/1.1 @@ -1454,7 +1454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: GET response: proto: HTTP/2.0 @@ -1462,18 +1462,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 694 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.063165Z","id":"3d5560e4-7fa5-49c0-b35a-148f569a4745","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.063165Z","zone":"fr-par-1"}' headers: Content-Length: - - "691" + - "694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1483,10 +1483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beb9d8fe-eea0-423f-b6d4-b3df9a170844 + - a09d8bb0-3fc2-4a3e-842e-0bd788ece7f8 status: 200 OK code: 200 - duration: 257.739651ms + duration: 596.603355ms - id: 30 request: proto: HTTP/1.1 @@ -1503,7 +1503,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -1511,18 +1511,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 697 + content_length: 690 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.822779Z","id":"2cb20a1a-db57-49a8-9f5d-113d0b73594b","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.822779Z","zone":"fr-par-1"}' headers: Content-Length: - - "697" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1532,10 +1532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e95c938-8a0c-4127-9558-7e4c74f578b4 + - 5b592758-47ea-42cc-a74b-1cfdd19a0254 status: 200 OK code: 200 - duration: 255.704951ms + duration: 593.58704ms - id: 31 request: proto: HTTP/1.1 @@ -1552,7 +1552,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1562,7 +1562,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1571,7 +1571,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1581,10 +1581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56bbf9a4-359c-4aae-965f-23f9a6aa8941 + - 0059fe83-1fee-4e5a-9e8a-36e86973d410 status: 200 OK code: 200 - duration: 97.935637ms + duration: 148.433741ms - id: 32 request: proto: HTTP/1.1 @@ -1601,7 +1601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -1609,18 +1609,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 429 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1630,10 +1630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 683cedab-6f2c-4989-91f7-90d1f92bca63 + - 8c1a95a9-711e-4bed-b6d7-f76b27291e42 status: 200 OK code: 200 - duration: 49.83178ms + duration: 85.447031ms - id: 33 request: proto: HTTP/1.1 @@ -1650,7 +1650,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 method: GET response: proto: HTTP/2.0 @@ -1658,18 +1658,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1679,10 +1679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb5ea099-4d8e-4a53-97a8-9b5c2a54f775 + - da3e89a5-eb34-4418-a818-8154b1bbc2ae status: 200 OK code: 200 - duration: 53.54422ms + duration: 100.36772ms - id: 34 request: proto: HTTP/1.1 @@ -1699,7 +1699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -1707,18 +1707,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "428" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1728,10 +1728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 956e53a5-8c8f-4141-808d-8c88645c267a + - 44259042-3d81-4677-9b80-03a6def2de92 status: 200 OK code: 200 - duration: 53.659406ms + duration: 102.291657ms - id: 35 request: proto: HTTP/1.1 @@ -1748,7 +1748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: GET response: proto: HTTP/2.0 @@ -1756,18 +1756,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 694 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.063165Z","id":"3d5560e4-7fa5-49c0-b35a-148f569a4745","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.063165Z","zone":"fr-par-1"}' headers: Content-Length: - - "703" + - "694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1777,10 +1777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bce8e36-1be8-41b1-9029-0eb625fc178b + - 5393ab7a-314a-40f7-9b3d-2c065b01d7e4 status: 200 OK code: 200 - duration: 134.192624ms + duration: 619.252485ms - id: 36 request: proto: HTTP/1.1 @@ -1797,7 +1797,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -1805,18 +1805,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 690 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.822779Z","id":"2cb20a1a-db57-49a8-9f5d-113d0b73594b","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.822779Z","zone":"fr-par-1"}' headers: Content-Length: - - "691" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1826,10 +1826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b05ba0-46e9-4782-91d8-06e96ebf7ffa + - c6698297-8d98-4b75-9f09-c042469bae5d status: 200 OK code: 200 - duration: 134.70746ms + duration: 605.260247ms - id: 37 request: proto: HTTP/1.1 @@ -1846,7 +1846,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -1856,7 +1856,7 @@ interactions: trailer: {} content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:03.338438Z","id":"2d827074-4d71-4433-b3f3-3724cad65bb0","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:03.338438Z","zone":"fr-par-1"}' headers: Content-Length: - "697" @@ -1865,7 +1865,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1875,10 +1875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd871bee-8824-4916-a4c5-9d125d76c1de + - 88a6da39-91d6-4287-a501-808765f19d74 status: 200 OK code: 200 - duration: 133.77543ms + duration: 606.814872ms - id: 38 request: proto: HTTP/1.1 @@ -1895,7 +1895,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1905,7 +1905,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1914,7 +1914,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1924,10 +1924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da1d8ab5-1a1a-4405-863c-6bc0a14544f9 + - 316d98da-0484-4304-8d57-f604332e0894 status: 200 OK code: 200 - duration: 84.725347ms + duration: 123.067533ms - id: 39 request: proto: HTTP/1.1 @@ -1944,7 +1944,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -1954,7 +1954,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -1963,7 +1963,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:30 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1973,10 +1973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e1867f7-ad13-4ebd-b422-bd091bd97aac + - 7bfd0cc6-7a38-4a56-853c-002ae96713cf status: 200 OK code: 200 - duration: 92.416536ms + duration: 131.593003ms - id: 40 request: proto: HTTP/1.1 @@ -1993,7 +1993,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2003,7 +2003,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2012,7 +2012,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2022,10 +2022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72edecde-243b-45b4-85f8-f5c6cf151762 + - 44e18160-5717-4f65-9244-fee7641a41cf status: 200 OK code: 200 - duration: 107.204427ms + duration: 135.096491ms - id: 41 request: proto: HTTP/1.1 @@ -2044,7 +2044,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: PATCH response: proto: HTTP/2.0 @@ -2054,7 +2054,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2063,7 +2063,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2073,10 +2073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36187929-5ae3-45c3-ab33-dc2a241b857a + - b76a9c6a-29c4-4f8a-948e-2792fdcdb5ec status: 200 OK code: 200 - duration: 100.303402ms + duration: 147.31237ms - id: 42 request: proto: HTTP/1.1 @@ -2093,7 +2093,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2103,7 +2103,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2112,7 +2112,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2122,10 +2122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 893a3539-6a85-4619-b675-25de5a5b95a7 + - 27db18e5-bf4b-40d3-a731-13f3d007f949 status: 200 OK code: 200 - duration: 96.492478ms + duration: 112.806288ms - id: 43 request: proto: HTTP/1.1 @@ -2142,7 +2142,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2152,7 +2152,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2161,7 +2161,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2171,10 +2171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a13c0d10-b27a-4136-af4c-e05952890f02 + - 44c568d4-3659-47b6-ab77-672e7d3a460b status: 200 OK code: 200 - duration: 162.874137ms + duration: 137.537015ms - id: 44 request: proto: HTTP/1.1 @@ -2191,7 +2191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2201,7 +2201,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2210,7 +2210,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2220,10 +2220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2ad6104-cea2-43be-8af1-5ce5ef360868 + - 380712e9-c292-4e1d-af22-00b841519319 status: 200 OK code: 200 - duration: 104.696279ms + duration: 122.791677ms - id: 45 request: proto: HTTP/1.1 @@ -2240,7 +2240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 method: GET response: proto: HTTP/2.0 @@ -2248,18 +2248,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: Content-Length: - - "424" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2269,10 +2269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edea7f4b-c3c0-48ea-8115-1b6aecc12066 + - 75cc42f0-8f32-405c-a896-0e5c7dc164d4 status: 200 OK code: 200 - duration: 47.378815ms + duration: 77.198571ms - id: 46 request: proto: HTTP/1.1 @@ -2289,7 +2289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -2297,18 +2297,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 429 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "425" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2318,10 +2318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 936aeb83-ca4d-447c-943a-b225c81c490d + - 0a4a95c3-3069-4805-a0a9-47d6ba222953 status: 200 OK code: 200 - duration: 47.64195ms + duration: 77.453288ms - id: 47 request: proto: HTTP/1.1 @@ -2338,7 +2338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -2346,18 +2346,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "428" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:31 GMT + - Wed, 15 Oct 2025 15:04:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2367,10 +2367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c8ac6a8-4776-4b5b-a447-683dcd9e7c19 + - aa45b967-fd5f-416c-821c-83cf96284799 status: 200 OK code: 200 - duration: 47.585183ms + duration: 85.138855ms - id: 48 request: proto: HTTP/1.1 @@ -2387,7 +2387,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -2395,18 +2395,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 690 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.822779Z","id":"2cb20a1a-db57-49a8-9f5d-113d0b73594b","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.822779Z","zone":"fr-par-1"}' headers: Content-Length: - - "691" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2416,10 +2416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0668af83-ee8d-4a1f-9ce4-173d7b0a5f9c + - 4cc99485-1729-42f5-a18b-7503edb8d120 status: 200 OK code: 200 - duration: 210.641703ms + duration: 734.676313ms - id: 49 request: proto: HTTP/1.1 @@ -2436,7 +2436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -2446,7 +2446,7 @@ interactions: trailer: {} content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:03.338438Z","id":"2d827074-4d71-4433-b3f3-3724cad65bb0","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:03.338438Z","zone":"fr-par-1"}' headers: Content-Length: - "697" @@ -2455,7 +2455,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2465,10 +2465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3912b308-df2f-425d-be21-f5cab58dfff4 + - 4ad4638f-59b0-4851-992e-938cb6fe6552 status: 200 OK code: 200 - duration: 210.673653ms + duration: 742.791955ms - id: 50 request: proto: HTTP/1.1 @@ -2485,7 +2485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: GET response: proto: HTTP/2.0 @@ -2493,18 +2493,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 694 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.063165Z","id":"3d5560e4-7fa5-49c0-b35a-148f569a4745","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.063165Z","zone":"fr-par-1"}' headers: Content-Length: - - "703" + - "694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2514,10 +2514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c817649-b8ef-48af-88cb-17fded0b87c7 + - 439fd1d6-8e83-4bf6-b310-479dc25a0fd3 status: 200 OK code: 200 - duration: 210.281677ms + duration: 747.961997ms - id: 51 request: proto: HTTP/1.1 @@ -2534,7 +2534,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2544,7 +2544,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2553,7 +2553,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2563,10 +2563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8522c2e5-f234-46e3-930f-3679eca0229b + - f2854fb4-8da2-449d-a03a-024aaf67b133 status: 200 OK code: 200 - duration: 81.031152ms + duration: 194.98701ms - id: 52 request: proto: HTTP/1.1 @@ -2583,7 +2583,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2593,7 +2593,7 @@ interactions: trailer: {} content_length: 807 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-09-30T10:20:28.702643+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","modification_date":"2025-09-30T10:20:28.702643+00:00","name":"tf-test-image-external-block-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","public":false,"root_volume":{"id":"758d1347-1273-448a-9b06-199f9d05531b","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:03.288298+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"","size":0,"volume_type":"sbs_snapshot"},"2":{"id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","modification_date":"2025-10-15T15:04:03.288298+00:00","name":"tf-test-image-external-block-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "807" @@ -2602,7 +2602,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:10 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2612,10 +2612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64f94696-6296-43f6-ae1f-30f7985cc2a8 + - 5a6a0493-73d2-44b4-b18c-6bd117d5b696 status: 200 OK code: 200 - duration: 99.303895ms + duration: 125.224949ms - id: 53 request: proto: HTTP/1.1 @@ -2632,7 +2632,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -2640,18 +2640,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 703 + content_length: 690 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.970465Z","id":"a31be384-a5a4-4cd9-9997-c93ca1d04f91","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.970465Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.822779Z","id":"2cb20a1a-db57-49a8-9f5d-113d0b73594b","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":40000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.822779Z","zone":"fr-par-1"}' headers: Content-Length: - - "703" + - "690" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2661,10 +2661,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd8dd0f5-d27f-4cc2-b056-a5a1d165e2c9 + - 8f32a428-aaf0-4e18-9fc7-b60078c1c7e2 status: 200 OK code: 200 - duration: 215.537304ms + duration: 686.307781ms - id: 54 request: proto: HTTP/1.1 @@ -2681,26 +2681,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 691 + content_length: 0 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.868105Z","id":"292757f3-6574-43cb-b614-9bd7ccfa2ad4","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.868105Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:32 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2710,10 +2708,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44eb9af6-ea13-40c3-8a30-41782dd6da22 - status: 200 OK - code: 200 - duration: 218.943408ms + - e1de99ab-1a59-438c-9913-bd96320271fb + status: 204 No Content + code: 204 + duration: 587.680851ms - id: 55 request: proto: HTTP/1.1 @@ -2730,24 +2728,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 694 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:04.063165Z","id":"3d5560e4-7fa5-49c0-b35a-148f569a4745","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:04.063165Z","zone":"fr-par-1"}' headers: + Content-Length: + - "694" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:33 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2757,10 +2757,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fde8213d-bc9a-4de0-9a83-5199edf06be2 - status: 204 No Content - code: 204 - duration: 592.542684ms + - 64f1b34b-4b83-4b68-a39f-e73ed4aa4f1e + status: 200 OK + code: 200 + duration: 725.24987ms - id: 56 request: proto: HTTP/1.1 @@ -2777,7 +2777,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -2787,7 +2787,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","type":"not_found"}' headers: Content-Length: - "142" @@ -2796,7 +2796,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:33 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2806,10 +2806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd2dd2c2-02c5-4c21-817c-a5c25d7571bd + - 9f62557b-2d24-46cb-9c4c-504b6486da2e status: 404 Not Found code: 404 - duration: 27.32622ms + duration: 25.573398ms - id: 57 request: proto: HTTP/1.1 @@ -2826,7 +2826,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -2836,7 +2836,7 @@ interactions: trailer: {} content_length: 697 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-09-30T10:20:28.751981Z","id":"76bc527d-da20-403b-b5ae-79b8057ea36b","product_resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-09-30T10:20:28.751981Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:03.338438Z","id":"2d827074-4d71-4433-b3f3-3724cad65bb0","product_resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":20000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:03.338438Z","zone":"fr-par-1"}' headers: Content-Length: - "697" @@ -2845,7 +2845,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:33 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2855,10 +2855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4aae674f-64c8-421d-b9bb-ef3f8424f6e4 + - ff10eb85-8243-4ced-89d7-1b261b4b59bd status: 200 OK code: 200 - duration: 89.177435ms + duration: 364.739149ms - id: 58 request: proto: HTTP/1.1 @@ -2875,7 +2875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -2883,18 +2883,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 464 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.952187Z","id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","name":"tf-snapshot-elegant-chandrasekhar","parent_volume":{"id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","name":"tf-volume-mystifying-lederberg","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.165009Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.680151Z","id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","name":"tf-snapshot-adoring-kirch","parent_volume":{"id":"fb663627-91ea-408c-aa6c-0d933b7056a4","name":"tf-volume-festive-goodall","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:11.141301Z","zone":"fr-par-1"}' headers: Content-Length: - - "477" + - "464" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:37 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2904,10 +2904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 570886f6-bf44-46b1-a1c0-7efba1854d00 + - b38d8a1c-4bd9-4536-885f-2a23554a8a30 status: 200 OK code: 200 - duration: 204.052953ms + duration: 891.887542ms - id: 59 request: proto: HTTP/1.1 @@ -2924,7 +2924,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: GET response: proto: HTTP/2.0 @@ -2932,18 +2932,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 465 + content_length: 468 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:22.957357Z","id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","name":"tf-snapshot-jolly-franklin","parent_volume":{"id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","name":"tf-volume-vigorous-payne","status":"available","type":"sbs_15k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.251328Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:50.457607Z","id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","name":"tf-snapshot-nice-hypatia","parent_volume":{"id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","name":"tf-volume-suspicious-chatelet","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:11.253964Z","zone":"fr-par-1"}' headers: Content-Length: - - "465" + - "468" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:37 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -2953,10 +2953,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e87cc72d-3f83-44bd-8205-9fbaec04871b + - dbb666b0-155b-437c-8caa-9bdcc357872b status: 200 OK code: 200 - duration: 203.953706ms + duration: 855.610086ms - id: 60 request: proto: HTTP/1.1 @@ -2973,24 +2973,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 471 uncompressed: false - body: "" + body: '{"class":"sbs","created_at":"2025-10-15T15:03:55.913176Z","id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","name":"tf-snapshot-optimistic-kowalevski","parent_volume":{"id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","name":"tf-volume-elegant-diffie","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:11.292059Z","zone":"fr-par-1"}' headers: + Content-Length: + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3000,10 +3002,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7255bf59-e01a-441d-9aa1-05abc9264bb7 - status: 204 No Content - code: 204 - duration: 119.627709ms + - 99b735b6-9d20-409b-bef9-3201498e4b79 + status: 200 OK + code: 200 + duration: 1.109227309s - id: 61 request: proto: HTTP/1.1 @@ -3020,7 +3022,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: DELETE response: proto: HTTP/2.0 @@ -3037,7 +3039,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3047,10 +3049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b7aad0e-4cb4-4c73-b3e1-f2dd71bd82db + - e89d5ac0-025a-4c2c-9b3e-3ae833ba21b4 status: 204 No Content code: 204 - duration: 119.632819ms + duration: 789.249454ms - id: 62 request: proto: HTTP/1.1 @@ -3067,7 +3069,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/175c6d5a-9c7d-4e4c-94b1-912123f0c17e + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/a606cdde-d391-435e-ba3c-0cb0f1bb02f5 method: GET response: proto: HTTP/2.0 @@ -3077,7 +3079,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"175c6d5a-9c7d-4e4c-94b1-912123f0c17e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"a606cdde-d391-435e-ba3c-0cb0f1bb02f5","type":"not_found"}' headers: Content-Length: - "129" @@ -3086,7 +3088,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3096,10 +3098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ab05203-b5bd-4628-b42d-838a3f5eabff + - 9d51e072-e2b5-4b22-91ff-781acaf18ee5 status: 404 Not Found code: 404 - duration: 43.230748ms + duration: 87.819516ms - id: 63 request: proto: HTTP/1.1 @@ -3116,7 +3118,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/77efe3fe-191b-4ac2-be81-a1bd5adee76b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 method: GET response: proto: HTTP/2.0 @@ -3124,18 +3126,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 423 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"77efe3fe-191b-4ac2-be81-a1bd5adee76b","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:03:49.693404Z","id":"fb663627-91ea-408c-aa6c-0d933b7056a4","last_detached_at":null,"name":"tf-volume-festive-goodall","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.693404Z","zone":"fr-par-1"}' headers: Content-Length: - - "129" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3145,10 +3147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67ce8e53-5f98-4637-9ff3-945a9c3da79c - status: 404 Not Found - code: 404 - duration: 43.219045ms + - 16b0b394-d153-443e-9ba1-20b9fdfe6fbc + status: 200 OK + code: 200 + duration: 131.281891ms - id: 64 request: proto: HTTP/1.1 @@ -3165,26 +3167,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.642536Z","id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","last_detached_at":null,"name":"tf-volume-vigorous-payne","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-09-30T10:20:17.642536Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3194,10 +3194,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1f5fa48-6435-4dc8-a323-a549992953d7 - status: 200 OK - code: 200 - duration: 41.747894ms + - 3a5c5ffa-f555-41d8-abd2-2c6204dfaff3 + status: 204 No Content + code: 204 + duration: 198.600568ms - id: 65 request: proto: HTTP/1.1 @@ -3214,26 +3214,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 428 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.639617Z","id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","last_detached_at":null,"name":"tf-volume-mystifying-lederberg","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":40000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.639617Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3243,10 +3241,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68e2d2e-87ec-4780-8072-32ce6ef8b17c - status: 200 OK - code: 200 - duration: 44.455547ms + - dd17fe97-a11f-49cc-b740-5913b9c11947 + status: 204 No Content + code: 204 + duration: 802.747842ms - id: 66 request: proto: HTTP/1.1 @@ -3263,7 +3261,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: DELETE response: proto: HTTP/2.0 @@ -3280,7 +3278,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3290,10 +3288,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e7d6694-35a8-459f-b0f4-bb6b32a6e87a + - 76f84516-32c2-4022-bdae-3bf84d17ba44 status: 204 No Content code: 204 - duration: 74.113414ms + duration: 1.441033199s - id: 67 request: proto: HTTP/1.1 @@ -3310,24 +3308,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fb663627-91ea-408c-aa6c-0d933b7056a4 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 127 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"volume","resource_id":"fb663627-91ea-408c-aa6c-0d933b7056a4","type":"not_found"}' headers: + Content-Length: + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3337,10 +3337,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da0465bc-6b99-473e-83dc-f4de13e8c750 - status: 204 No Content - code: 204 - duration: 82.004689ms + - 1def777f-a374-4b7c-9ffe-537575499a29 + status: 404 Not Found + code: 404 + duration: 226.170299ms - id: 68 request: proto: HTTP/1.1 @@ -3357,7 +3357,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5a3ad21-568c-445d-bb63-4d648a2daa9a + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/bed651bd-bdee-41c5-a5c5-b1f8026fd101 method: GET response: proto: HTTP/2.0 @@ -3365,18 +3365,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"d5a3ad21-568c-445d-bb63-4d648a2daa9a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"bed651bd-bdee-41c5-a5c5-b1f8026fd101","type":"not_found"}' headers: Content-Length: - - "127" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3386,10 +3386,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40770c9b-4835-4f6e-86e4-98541e5081d3 + - aae1d240-71e2-4727-9f2b-3c831abea6c8 status: 404 Not Found code: 404 - duration: 41.357632ms + duration: 71.676796ms - id: 69 request: proto: HTTP/1.1 @@ -3406,7 +3406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f38ab82b-dbda-4f5d-b95d-e88e39876af5 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/33e21df4-4f28-4da2-9f78-d82dcf19c93e method: GET response: proto: HTTP/2.0 @@ -3414,18 +3414,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"f38ab82b-dbda-4f5d-b95d-e88e39876af5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"33e21df4-4f28-4da2-9f78-d82dcf19c93e","type":"not_found"}' headers: Content-Length: - - "127" + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3435,10 +3435,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 493ff9af-0b02-4d4a-9745-ff81b092a54b + - 07e2383d-7ca5-4644-9b89-046501bdc976 status: 404 Not Found code: 404 - duration: 52.35653ms + duration: 122.416672ms - id: 70 request: proto: HTTP/1.1 @@ -3455,7 +3455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -3463,18 +3463,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 471 + content_length: 429 uncompressed: false - body: '{"class":"sbs","created_at":"2025-09-30T10:20:23.026551Z","id":"758d1347-1273-448a-9b06-199f9d05531b","name":"tf-snapshot-suspicious-swanson","parent_volume":{"id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","name":"tf-volume-upbeat-tereshkova","status":"available","type":"sbs_5k"},"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"status":"available","tags":[],"updated_at":"2025-09-30T10:20:33.301842Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:49.691946Z","id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","last_detached_at":null,"name":"tf-volume-suspicious-chatelet","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:49.691946Z","zone":"fr-par-1"}' headers: Content-Length: - - "471" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3484,10 +3484,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f93a6bfa-7696-4938-93ea-3ca334591f4b + - ea3eb129-5d74-4339-8731-15eedeaf44f4 status: 200 OK code: 200 - duration: 218.716781ms + duration: 117.208149ms - id: 71 request: proto: HTTP/1.1 @@ -3504,24 +3504,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 422 uncompressed: false - body: "" + body: '{"created_at":"2025-10-15T15:03:49.703210Z","id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","last_detached_at":null,"name":"tf-volume-elegant-diffie","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:49.703210Z","zone":"fr-par-1"}' headers: + Content-Length: + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3531,10 +3533,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72054f5f-70c3-4223-ae7f-b794bb413b5c - status: 204 No Content - code: 204 - duration: 242.991563ms + - ae98d965-3181-4e50-949c-dc32642f9773 + status: 200 OK + code: 200 + duration: 89.945071ms - id: 72 request: proto: HTTP/1.1 @@ -3551,26 +3553,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/758d1347-1273-448a-9b06-199f9d05531b - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"758d1347-1273-448a-9b06-199f9d05531b","type":"not_found"}' + body: "" headers: - Content-Length: - - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3580,10 +3580,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1a355fc-86cd-4b6d-be45-fa026027c9cc - status: 404 Not Found - code: 404 - duration: 49.495108ms + - f71bd711-b42c-4e81-83eb-e73c119d9a73 + status: 204 No Content + code: 204 + duration: 160.000698ms - id: 73 request: proto: HTTP/1.1 @@ -3600,26 +3600,24 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 425 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-09-30T10:20:17.658670Z","id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","last_detached_at":null,"name":"tf-volume-upbeat-tereshkova","parent_snapshot_id":null,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-09-30T10:20:17.658670Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:38 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3629,10 +3627,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac485f8d-103c-498f-8a7d-7650c071189b - status: 200 OK - code: 200 - duration: 43.891829ms + - 4738865f-2f76-4ba3-b0da-99c543dc8d48 + status: 204 No Content + code: 204 + duration: 171.126384ms - id: 74 request: proto: HTTP/1.1 @@ -3649,24 +3647,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/20d0b694-899c-4f93-a69b-7c2ee644ea37 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 127 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"volume","resource_id":"20d0b694-899c-4f93-a69b-7c2ee644ea37","type":"not_found"}' headers: + Content-Length: + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:39 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3676,10 +3676,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1827329-2573-4490-a4ac-864c41477b6c - status: 204 No Content - code: 204 - duration: 84.019371ms + - 6de74901-5e28-4c36-b28a-b46292c6f731 + status: 404 Not Found + code: 404 + duration: 70.897194ms - id: 75 request: proto: HTTP/1.1 @@ -3696,7 +3696,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/99bf9077-ec68-49cb-a058-ad4be0b839e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c7d507b8-5c10-44c5-92bf-998cd7febcb3 method: GET response: proto: HTTP/2.0 @@ -3706,7 +3706,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"99bf9077-ec68-49cb-a058-ad4be0b839e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c7d507b8-5c10-44c5-92bf-998cd7febcb3","type":"not_found"}' headers: Content-Length: - "127" @@ -3715,7 +3715,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:39 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3725,10 +3725,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19f9e673-c11c-41bc-b519-84a1cd56d888 + - bc65f26b-142c-4d88-bfa2-5e705b44fd1a status: 404 Not Found code: 404 - duration: 45.846839ms + duration: 141.719709ms - id: 76 request: proto: HTTP/1.1 @@ -3745,7 +3745,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/38b7ff1a-575a-4c05-b806-1ba96c5c0e3d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/1a7ef4d2-935a-4c80-9a19-3e2af6ccd812 method: GET response: proto: HTTP/2.0 @@ -3755,7 +3755,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"38b7ff1a-575a-4c05-b806-1ba96c5c0e3d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"1a7ef4d2-935a-4c80-9a19-3e2af6ccd812","type":"not_found"}' headers: Content-Length: - "142" @@ -3764,7 +3764,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 30 Sep 2025 10:20:39 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -3774,7 +3774,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de11384e-ac94-49f9-b29a-cb6559c32c1f + - ade1bad0-614e-4cda-b520-2072938fc804 status: 404 Not Found code: 404 - duration: 29.344719ms + duration: 39.753953ms diff --git a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml index 52987f649..880ddf231 100644 --- a/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-local-volume.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29933860-b6d1-4cf6-9b07-70359ecd58e8 + - e75f38da-5cae-47c4-a0be-f019d74c0b6d X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 43.886871ms + duration: 43.507997ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 39263 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46ebc1bd-fe68-4105-b685-4a395c1f94b0 + - d32f1a99-37e2-4011-9354-c4e3e846fe03 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 173.943449ms + duration: 47.220825ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -131,20 +131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39263 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:19 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,52 +154,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1139e47e-451e-4adb-8c8f-22032012098c + - 351b07c4-ec79-4782-93c3-15aaa50d8e5e + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 67.972643ms + duration: 55.790907ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 274 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-stoic-ganguly","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 14295 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2154" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + - Wed, 15 Oct 2025 15:03:19 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +207,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb43723c-8b45-4111-914a-6f18d18f22ef - status: 201 Created - code: 201 - duration: 344.507938ms + - 8fc2a13e-995d-4e30-b9cf-26f8662fb935 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 41.410787ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +229,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -233,20 +237,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 14295 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2154" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:19 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +260,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496bb55a-3159-4255-bfcb-5e32a05dbeaa + - 7bdbe859-f0ed-41b7-b7b5-2c0b545cdc2c + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 103.573144ms + duration: 72.78727ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +282,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -282,20 +290,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 14295 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.442597+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2154" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:19 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,52 +313,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6a53b81-4626-443b-bd36-019540b213de + - 5a148bc3-188c-487a-8869-4b3f54f1325c + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 90.605816ms + duration: 86.274567ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action - method: POST + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 423 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action","href_result":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f","id":"eb161338-a4b8-4018-80b6-10398006995a","progress":0,"started_at":"2025-10-08T23:05:38.020262+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "357" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eb161338-a4b8-4018-80b6-10398006995a + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +364,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcc8c5a3-3de1-4976-a88a-61982f9ce4ba - status: 202 Accepted - code: 202 - duration: 218.453162ms + - aa7b145f-c28f-4514-a56d-7bce3af8026c + status: 200 OK + code: 200 + duration: 55.800285ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +384,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -384,20 +392,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2176 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.843651+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2176" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed0d72d6-719a-4c16-9ab2-d5964e999cce + - 5197b61f-7f26-471c-9689-b85b14ec9287 status: 200 OK code: 200 - duration: 70.657436ms + duration: 48.379207ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +433,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -433,20 +441,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:37.843651+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2280" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,48 +462,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ebd9061-c64f-4621-987e-e93730304c4d + - baa44021-a0c7-475e-9689-411a7a52be36 status: 200 OK code: 200 - duration: 100.41411ms + duration: 53.73312ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 284 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-flamboyant-varahamihira","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":15000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.226173+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,48 +515,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 499e574e-9608-4f68-ab21-eab1f37b9666 - status: 200 OK - code: 200 - duration: 83.446801ms + - 02f80094-cf3c-468b-bfa2-ce795b0205ef + status: 201 Created + code: 201 + duration: 759.838595ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 272 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-goofy-black","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2148 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.308062+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +568,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8ecc051-560d-4a86-abe7-6a7bbb5acef2 - status: 200 OK - code: 200 - duration: 99.97713ms + - 23df4e22-f2a6-4e47-9c3c-ff2d8a325702 + status: 201 Created + code: 201 + duration: 856.671158ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +588,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -580,20 +596,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 2184 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:05:37.442597+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.226173+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,48 +617,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12c56c66-7de1-47ba-baff-7517b580db34 + - b019f956-2095-4319-944f-708318f10657 status: 200 OK code: 200 - duration: 57.134294ms + duration: 131.961818ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 273 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-clever-payne","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2151 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.267446+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +670,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0ea4acf-001c-415b-8e05-c9bbfbf9c2b4 - status: 200 OK - code: 200 - duration: 50.182458ms + - 61bf404f-8d34-4a83-94e4-0793d8970c9f + status: 201 Created + code: 201 + duration: 941.575646ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +690,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -678,22 +698,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2148 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.308062+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,52 +719,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9f77970-721d-4234-85f1-387bb715b34c - X-Total-Count: - - "0" + - d163fe2a-c660-448e-824f-945f070e97b4 status: 200 OK code: 200 - duration: 58.509803ms + duration: 129.148205ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 140 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-charming-grothendieck","volume_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 853 + content_length: 2184 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb","id":"b0d964c6-284f-475e-a240-e25f1e84f930","progress":0,"started_at":"2025-10-08T23:05:48.850535+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.226173+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "853" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,10 +768,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dd0ac67-bb0a-4e7c-8128-ef3fb3cdae9f - status: 201 Created - code: 201 - duration: 374.362699ms + - 127d840a-e43c-4575-99aa-8bae5dfdbbd4 + status: 200 OK + code: 200 + duration: 136.102228ms - id: 15 request: proto: HTTP/1.1 @@ -774,7 +788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -782,20 +796,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2151 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.267446+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +817,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3055d0f8-0ed5-4584-94f9-21dc015654ff + - 775887b3-5c14-4a42-9a10-3c8360cc745e status: 200 OK code: 200 - duration: 58.907138ms + duration: 125.899458ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +837,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -831,20 +845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2148 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.308062+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +866,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42993889-be2e-4585-bc52-3a5741121688 + - 310a92e8-e931-45a1-bba2-e81b114d0fd8 status: 200 OK code: 200 - duration: 58.571756ms + duration: 135.138261ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -880,20 +894,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2151 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.267446+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2151" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:59 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,48 +915,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7082a0c2-666a-4571-bd57-4d289e397d96 + - ba1d7bce-b226-4713-a9ac-f9098e6b4905 status: 200 OK code: 200 - duration: 57.673962ms + duration: 216.921972ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/action","href_result":"/servers/c78a1974-594b-49e7-b35d-17ddcef3568a","id":"c869eddb-ec92-4367-8e87-7d4229b3e0bc","progress":0,"started_at":"2025-10-15T15:03:20.844747+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:03:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c869eddb-ec92-4367-8e87-7d4229b3e0bc Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddfbc666-5e4c-4ce3-bdb2-1a6184f46f73 - status: 200 OK - code: 200 - duration: 51.321535ms + - f1cc1fe1-58aa-4038-8581-02df7c981426 + status: 202 Accepted + code: 202 + duration: 245.890782ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +988,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -978,20 +996,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2206 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.675838+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,48 +1017,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d8f17a7-1d9e-4246-897c-8f4d3df68923 + - 5b90c368-15a4-417e-83f3-d1a2a9c766b5 status: 200 OK code: 200 - duration: 56.544217ms + duration: 113.521881ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/action","href_result":"/servers/7044ca01-7c67-4085-af04-f7482bca7f0a","id":"e942fbcc-4f5e-4cb1-8673-bf4cb8c0ff79","progress":0,"started_at":"2025-10-15T15:03:20.989765+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:03:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e942fbcc-4f5e-4cb1-8673-bf4cb8c0ff79 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02061df0-e9b0-443c-934e-d82aabf9ec18 - status: 200 OK - code: 200 - duration: 55.080294ms + - 75fa46bc-f712-43aa-9a4a-389dd56d2464 + status: 202 Accepted + code: 202 + duration: 255.887236ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1090,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -1076,20 +1098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2170 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.788050+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2170" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,48 +1119,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7bb047e-a9f1-4402-9b0a-ca4bf942d023 + - b850c910-5c10-4c1d-a147-03781c9e6008 status: 200 OK code: 200 - duration: 56.183236ms + duration: 118.51013ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 357 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/action","href_result":"/servers/10226f00-dc3a-4832-9fab-d77b4d244af5","id":"c91b5307-5a75-4863-ae4f-92155513237c","progress":0,"started_at":"2025-10-15T15:03:21.115613+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:24 GMT + - Wed, 15 Oct 2025 15:03:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c91b5307-5a75-4863-ae4f-92155513237c Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1172,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89a074c6-9a95-44e9-b4e7-68032be5c6aa - status: 200 OK - code: 200 - duration: 52.408414ms + - 06022b54-c112-4424-999c-6b9bf5c75d0c + status: 202 Accepted + code: 202 + duration: 255.229606ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +1192,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -1174,20 +1200,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2173 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.924598+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2173" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1221,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0608fe4c-ace4-42ee-8345-d03b62e9ee6f + - d4855375-4d07-4ee2-9a47-aae48f935507 status: 200 OK code: 200 - duration: 49.538397ms + duration: 139.456666ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1241,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -1223,20 +1249,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2309 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.675838+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1270,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccf987d9-640f-4abf-8d04-636879c4258b + - d0891da3-b8ea-4db5-a9aa-7e52ffcb54b0 status: 200 OK code: 200 - duration: 58.757561ms + duration: 140.171903ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -1272,20 +1298,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 2274 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:05:48.633908+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.788050+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "542" + - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:39 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1319,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bef75de1-7a0a-46d4-9a4f-d5f1ade8a75b + - 40fabdb0-e5de-405a-900f-fe8bd9fd3a91 status: 200 OK code: 200 - duration: 50.78832ms + duration: 127.08227ms - id: 26 request: proto: HTTP/1.1 @@ -1313,7 +1339,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -1321,20 +1347,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 2276 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.924598+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "2276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1368,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9452769e-030a-433b-98f3-a3e678f1bd5a + - b2d15643-f498-42e8-bd71-23d7672b93b0 status: 200 OK code: 200 - duration: 61.637712ms + duration: 120.610442ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1388,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -1370,20 +1396,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 2309 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:20.675838+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "2309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1417,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a7a316e-2a9c-4027-922e-4da9221cf237 + - 530d5499-1bed-4cf9-ad00-b1836b0d69bf status: 200 OK code: 200 - duration: 54.554835ms + duration: 163.747735ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1437,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -1419,20 +1445,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2274 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:20.788050+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2274" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,10 +1466,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09c9e243-7668-49c5-8147-41feff210e3b + - 21f1a8f2-8528-40fd-9ec9-e3bd43b03337 status: 200 OK code: 200 - duration: 93.94746ms + duration: 137.329462ms - id: 29 request: proto: HTTP/1.1 @@ -1460,7 +1486,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -1468,20 +1494,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 2276 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:20.924598+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "2276" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,10 +1515,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b1cc327-3cc1-4f1f-941b-70edd401927a + - a990c3a1-02ea-4959-9632-5a81a727baee status: 200 OK code: 200 - duration: 56.500899ms + duration: 136.835125ms - id: 30 request: proto: HTTP/1.1 @@ -1509,7 +1535,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -1517,20 +1543,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2340 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1538,10 +1564,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e5aee01-2a18-4c3d-9a67-0169de5c2072 + - d330ecb5-ff91-4f8b-8b88-1a5ec025ad32 status: 200 OK code: 200 - duration: 84.088842ms + duration: 120.898172ms - id: 31 request: proto: HTTP/1.1 @@ -1558,7 +1584,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -1566,20 +1592,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 2305 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1587,10 +1613,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 566e31f3-e542-4e45-8529-b232de55817a + - a02094c4-6065-4d86-b9c1-0743b039b31c status: 200 OK code: 200 - duration: 52.872879ms + duration: 133.150696ms - id: 32 request: proto: HTTP/1.1 @@ -1607,7 +1633,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -1615,20 +1641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2340 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1636,10 +1662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1913808a-185a-4492-b8f7-23fa33227334 + - 5902f680-b3c3-4a98-b0be-698f665c06e2 status: 200 OK code: 200 - duration: 47.627666ms + duration: 127.384679ms - id: 33 request: proto: HTTP/1.1 @@ -1656,7 +1682,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 method: GET response: proto: HTTP/2.0 @@ -1664,22 +1690,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 530 uncompressed: false - body: '{"private_nics":[]}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:03:20.226173+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1687,12 +1711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e90d4b95-d1e6-41fc-82a9-a189188a713e - X-Total-Count: - - "0" + - 007b45ad-1ca2-478b-94f5-e54204fba8af status: 200 OK code: 200 - duration: 52.514657ms + duration: 90.75145ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1731,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -1717,20 +1739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 2305 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc49ad1a-8eb9-44d4-8583-13e15c84dd08 + - 7e9360a3-9e95-4f30-86c6-dbf202e12029 status: 200 OK code: 200 - duration: 58.572105ms + duration: 143.986776ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1780,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -1766,20 +1788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2307 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3a4dd6e-1548-4c84-9269-3df00f4a5699 + - 84934786-cf75-4b33-a101-0699ce1aceef status: 200 OK code: 200 - duration: 80.271722ms + duration: 147.898457ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1829,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/user_data method: GET response: proto: HTTP/2.0 @@ -1815,20 +1837,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "520" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1858,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ee0625f-1a44-4fff-a4f5-22ca98f67455 + - 4e9ccab5-c09f-436c-96f2-7e5396502482 status: 200 OK code: 200 - duration: 55.971669ms + duration: 121.981593ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1878,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -1864,20 +1886,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2307 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1907,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f168419b-ad0a-4ace-8387-3a79a706d930 + - e639379b-35dd-4c37-a13c-132b8d3d31e3 status: 200 OK code: 200 - duration: 76.85779ms + duration: 113.649246ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1927,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 method: GET response: proto: HTTP/2.0 @@ -1913,22 +1935,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 518 uncompressed: false - body: '{"private_nics":[]}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:03:20.308062+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,12 +1956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d087b941-fa59-449f-bab8-db3a40a771e9 - X-Total-Count: - - "0" + - 933f0b65-1054-4f7f-a7ee-f496ea87a81f status: 200 OK code: 200 - duration: 58.941619ms + duration: 135.829557ms - id: 39 request: proto: HTTP/1.1 @@ -1958,7 +1976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/private_nics method: GET response: proto: HTTP/2.0 @@ -1966,20 +1984,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 20 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "539" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:36 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,10 +2007,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e7e579f-ad29-49c8-9c9f-c6be137030cc + - 60b094a4-9757-489a-8dc8-0f872b048afa + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 55.7019ms + duration: 104.63429ms - id: 40 request: proto: HTTP/1.1 @@ -2007,7 +2029,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/user_data method: GET response: proto: HTTP/2.0 @@ -2015,22 +2037,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 17 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"user_data":[]}' headers: Content-Length: - - "39208" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,12 +2058,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 596e6720-3c14-44b2-9504-4655201ac1cd - X-Total-Count: - - "75" + - 81e01d74-483b-4e22-a8d0-4e5dbe1d6359 status: 200 OK code: 200 - duration: 52.277998ms + duration: 102.373362ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +2078,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 method: GET response: proto: HTTP/2.0 @@ -2068,22 +2086,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 519 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:03:20.267446+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,12 +2107,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73acdd86-daa3-409b-aa63-dffb4e92fb9f - X-Total-Count: - - "75" + - ababce3f-ced6-4c12-9aeb-74a3a6798a63 status: 200 OK code: 200 - duration: 44.995812ms + duration: 113.78481ms - id: 42 request: proto: HTTP/1.1 @@ -2113,7 +2127,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics method: GET response: proto: HTTP/2.0 @@ -2121,20 +2135,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:03:37 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2142,52 +2158,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61ae82eb-7a2c-40d1-926b-de88d606c55c + - 63fed805-d94e-4932-87b1-19d8365753de + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 113.915309ms + duration: 97.90058ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 273 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-stoic-golick","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2151" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2195,10 +2209,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f5f96df-1e60-4a0b-a983-8a7f7bc35ae6 - status: 201 Created - code: 201 - duration: 423.248659ms + - 0f4f4ffb-42d2-45ef-82d2-d37a05fbdb2d + status: 200 OK + code: 200 + duration: 113.525895ms - id: 44 request: proto: HTTP/1.1 @@ -2215,7 +2229,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/private_nics method: GET response: proto: HTTP/2.0 @@ -2223,20 +2237,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2151" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:03:37 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,48 +2260,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4e322d9-9ecb-41e9-96a1-f5b9fbfa7514 + - 4c83ab77-59a8-48f7-80ae-8823e0a21b31 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 88.863323ms + duration: 103.878394ms - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 136 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-boring-goldwasser","volume_id":"94ca257e-0b67-435d-8055-7edf4ce93225","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: - User-Agent: + Content-Type: + - application/json + User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2151 + content_length: 849 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.419845+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13","id":"b329c1dd-6121-4189-b77e-361ab42de83d","progress":0,"started_at":"2025-10-15T15:03:37.508192+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2151" + - "849" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2293,29 +2313,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 364c3af1-ec55-4d2b-85d2-e63a4673ec07 - status: 200 OK - code: 200 - duration: 106.292923ms + - 3fa83dca-d931-4981-b3e9-9831cc9b5652 + status: 201 Created + code: 201 + duration: 773.44672ms - id: 46 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 133 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"name":"tf-snap-silly-torvalds","volume_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots method: POST response: proto: HTTP/2.0 @@ -2323,22 +2343,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 846 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action","href_result":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","id":"8e3232ca-ae07-4850-b28f-0879c624c8ba","progress":0,"started_at":"2025-10-08T23:06:47.083109+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848","id":"c9f01e32-1ff0-4dfa-9b95-f672b0e19bc5","progress":0,"started_at":"2025-10-15T15:03:37.568627+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "846" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:47 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8e3232ca-ae07-4850-b28f-0879c624c8ba + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2346,10 +2364,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14bfce89-f90d-4b74-aad0-119269b4dfe3 - status: 202 Accepted - code: 202 - duration: 263.833295ms + - ba49b902-0dcd-4232-a0bb-3e0da3b7f7d1 + status: 201 Created + code: 201 + duration: 668.571779ms - id: 47 request: proto: HTTP/1.1 @@ -2366,7 +2384,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -2374,20 +2392,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2173 + content_length: 538 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.870852+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2173" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:47 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2395,10 +2413,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6209710f-9ff7-40df-93f1-4109a0834ff3 + - d9cc0c17-d87e-483f-af2a-737a9d7f9226 status: 200 OK code: 200 - duration: 81.585595ms + duration: 101.6032ms - id: 48 request: proto: HTTP/1.1 @@ -2415,7 +2433,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -2423,20 +2441,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 535 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:46.870852+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2444,48 +2462,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25e80a71-d799-48b8-9481-931aa6032833 + - 2c7dc61b-69d0-4fb0-814e-ca959b9f1083 status: 200 OK code: 200 - duration: 93.403529ms + duration: 92.664066ms - id: 49 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 134 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-snap-priceless-gould","volume_id":"88d4a540-539f-4f85-bf96-83d81ba46401","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 847 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/69b3b497-9917-43ba-925c-d446b51282d0","id":"2df03ef3-6d9b-4764-b5a1-11828ea87d11","progress":0,"started_at":"2025-10-15T15:03:37.735638+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "847" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2493,10 +2513,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2ceb4c4-7612-4fba-963f-4610471306d0 - status: 200 OK - code: 200 - duration: 87.83755ms + - 19ce5938-663e-4760-9590-4241c1638fc6 + status: 201 Created + code: 201 + duration: 721.389884ms - id: 50 request: proto: HTTP/1.1 @@ -2513,7 +2533,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -2521,20 +2541,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 536 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2542,10 +2562,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bfe448a-bf30-494f-a0c8-0ab5481ba8c8 + - 584bbe1a-4111-43a8-8753-27363fd904b0 status: 200 OK code: 200 - duration: 93.309874ms + duration: 100.715506ms - id: 51 request: proto: HTTP/1.1 @@ -2562,7 +2582,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -2570,20 +2590,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 538 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:06:46.419845+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "519" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2591,10 +2611,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83e39613-8a90-4144-879b-37609bd0faf1 + - 9861a383-380f-4f44-99eb-50e15348784f status: 200 OK code: 200 - duration: 51.429234ms + duration: 102.710099ms - id: 52 request: proto: HTTP/1.1 @@ -2611,7 +2631,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -2619,20 +2639,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 535 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2640,10 +2660,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65f5e49b-d1d7-4fef-a319-db1995986156 + - ccdc9c9d-ec9a-454e-b498-f2aee18064a9 status: 200 OK code: 200 - duration: 50.667002ms + duration: 97.002732ms - id: 53 request: proto: HTTP/1.1 @@ -2660,7 +2680,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -2668,22 +2688,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 536 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2691,52 +2709,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08c66c4d-9527-484a-a721-239315cf9047 - X-Total-Count: - - "0" + - b870add2-8583-43fe-a31b-4c971e8ad725 status: 200 OK code: 200 - duration: 59.014161ms + duration: 110.595689ms - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 130 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-cocky-curie","volume_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 843 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","id":"7f632b09-1918-4329-abe0-25535a13447d","progress":0,"started_at":"2025-10-08T23:06:57.929633+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "843" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2744,10 +2758,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b972973-5b46-414b-a666-e14d8a382682 - status: 201 Created - code: 201 - duration: 381.604629ms + - 6e4bdf9e-e948-4bdb-8156-37a3ebf0f3ce + status: 200 OK + code: 200 + duration: 103.79643ms - id: 55 request: proto: HTTP/1.1 @@ -2764,7 +2778,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -2772,20 +2786,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2793,10 +2807,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72474800-5f7f-4d56-a860-6e3baa94c871 + - a9710f75-1215-40e5-b6cf-6fa2becdfe2a status: 200 OK code: 200 - duration: 63.237852ms + duration: 123.588948ms - id: 56 request: proto: HTTP/1.1 @@ -2813,7 +2827,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -2821,20 +2835,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 536 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:03 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2842,10 +2856,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03c2587e-ebf8-4c57-96ca-e220228ac39f + - e75ac21c-98d7-4d13-9740-136855680d15 status: 200 OK code: 200 - duration: 60.840091ms + duration: 109.057211ms - id: 57 request: proto: HTTP/1.1 @@ -2862,7 +2876,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -2870,20 +2884,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:08 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2891,10 +2905,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207a43a8-237d-4153-9e50-e1e68f09bda3 + - 7330016d-cf90-4a44-b03d-03aca20712c6 status: 200 OK code: 200 - duration: 60.175659ms + duration: 96.11143ms - id: 58 request: proto: HTTP/1.1 @@ -2911,7 +2925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -2919,20 +2933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2940,10 +2954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bcb34f6-7045-4843-8a11-2f73c4c34a08 + - 3d8ed629-372a-49ca-b64b-7899810cf286 status: 200 OK code: 200 - duration: 52.537433ms + duration: 118.608369ms - id: 59 request: proto: HTTP/1.1 @@ -2960,7 +2974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -2968,20 +2982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 536 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:18 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2989,10 +3003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 113760c2-ce17-4ef4-8507-55008fc21480 + - cc484b61-718f-4430-bf44-c45536d8685a status: 200 OK code: 200 - duration: 73.575562ms + duration: 98.299702ms - id: 60 request: proto: HTTP/1.1 @@ -3009,7 +3023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3017,20 +3031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:23 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3038,10 +3052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f981aaf-639f-4e44-97b9-630a66bbd3a8 + - e5bdb5d9-cc7c-4ed1-9274-0b80161763a1 status: 200 OK code: 200 - duration: 63.685185ms + duration: 95.241985ms - id: 61 request: proto: HTTP/1.1 @@ -3058,7 +3072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3066,20 +3080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 532 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:06:57.724498+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "532" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:28 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3087,10 +3101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84697c6a-1e76-44d5-994a-f0712758e9bd + - f50cee34-aab0-4e3b-9c51-66b9b7b860a7 status: 200 OK code: 200 - duration: 74.060036ms + duration: 138.993364ms - id: 62 request: proto: HTTP/1.1 @@ -3107,7 +3121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -3115,20 +3129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 536 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:33 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3136,10 +3150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 411b56f8-b3f1-494d-ae86-3b71a7c95536 + - 21c21e0d-57aa-4609-9f93-c71281e489b4 status: 200 OK code: 200 - duration: 51.216894ms + duration: 114.395357ms - id: 63 request: proto: HTTP/1.1 @@ -3156,7 +3170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3164,20 +3178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:33 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3185,10 +3199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04a54504-67dc-4e1b-9147-7ed6131c49dd + - fd9a333d-852d-482d-8e8c-92dc3a779fe1 status: 200 OK code: 200 - duration: 71.269138ms + duration: 94.240611ms - id: 64 request: proto: HTTP/1.1 @@ -3205,7 +3219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3213,20 +3227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 535 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:33 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3234,10 +3248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5b276c5-b681-4955-acb6-be02ac55d79e + - 0f302222-fc29-4697-950e-03841088c85b status: 200 OK code: 200 - duration: 98.49212ms + duration: 113.1891ms - id: 65 request: proto: HTTP/1.1 @@ -3254,7 +3268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -3262,20 +3276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 536 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:03:37.515894+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "536" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:33 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,10 +3297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8c18c03-a71b-4f15-a445-5edd5862202c + - e1d9a631-e1da-45a5-bc72-9903d9b52acd status: 200 OK code: 200 - duration: 82.868346ms + duration: 136.435144ms - id: 66 request: proto: HTTP/1.1 @@ -3303,7 +3317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3311,20 +3325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:33 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,10 +3346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09818276-c6b9-4f34-ae7c-ac623eadfe55 + - 2be3a0b0-73e9-4c87-8a64-932157a52662 status: 200 OK code: 200 - duration: 67.095348ms + duration: 101.548935ms - id: 67 request: proto: HTTP/1.1 @@ -3352,7 +3366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3360,20 +3374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,10 +3395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3225e347-3386-4769-9a4e-0782e9c3d7fd + - 8b4aee71-0d53-4cb0-90d7-6abf50e4f417 status: 200 OK code: 200 - duration: 56.082786ms + duration: 98.462941ms - id: 68 request: proto: HTTP/1.1 @@ -3401,7 +3415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -3409,20 +3423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,10 +3444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c1cb1e9-82c2-46fc-acfa-0f1d7e5437e9 + - 8abd1bd2-2bd3-43ab-853d-5b263a3675d0 status: 200 OK code: 200 - duration: 94.968894ms + duration: 105.218314ms - id: 69 request: proto: HTTP/1.1 @@ -3450,7 +3464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -3458,20 +3472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,10 +3493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e7a0d77-bda8-459b-a994-a05e27cfd3ef + - 0d798cc0-2b3f-418c-939c-93cdfadb8185 status: 200 OK code: 200 - duration: 114.726492ms + duration: 120.771959ms - id: 70 request: proto: HTTP/1.1 @@ -3499,7 +3513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3507,20 +3521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 538 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,10 +3542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b63fa16-3e9a-4535-9d5a-543d378b8582 + - 15fd3bc1-8d69-48b5-b41b-aed4324acd35 status: 200 OK code: 200 - duration: 56.598931ms + duration: 86.616558ms - id: 71 request: proto: HTTP/1.1 @@ -3548,7 +3562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3556,20 +3570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 535 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "519" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,10 +3591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8fe7af34-7006-4d54-a7c2-5fa041f441c2 + - b59632bc-f8cc-4081-a016-6f3769b5d9a1 status: 200 OK code: 200 - duration: 56.532057ms + duration: 107.75868ms - id: 72 request: proto: HTTP/1.1 @@ -3597,7 +3611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3605,20 +3619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 538 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,10 +3640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30d089ff-9f2d-4fa6-84b7-52d5a9f4b27e + - 4a717fe0-1f59-45df-8e69-d926343c13d4 status: 200 OK code: 200 - duration: 59.074555ms + duration: 103.811425ms - id: 73 request: proto: HTTP/1.1 @@ -3646,7 +3660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3654,20 +3668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 535 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3675,10 +3689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b7db02-b259-4f2f-ad60-b38935dbef17 + - 94af28a9-11e1-40b3-b568-cd98ff8c1f73 status: 200 OK code: 200 - duration: 55.465631ms + duration: 102.603541ms - id: 74 request: proto: HTTP/1.1 @@ -3695,7 +3709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3703,22 +3717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 538 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3726,12 +3738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d42755-3e07-4b83-a7b0-647d3f567d15 - X-Total-Count: - - "0" + - 1be345d6-1904-4bb1-96e1-648323f89480 status: 200 OK code: 200 - duration: 60.15747ms + duration: 112.105208ms - id: 75 request: proto: HTTP/1.1 @@ -3748,7 +3758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3756,22 +3766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 535 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,12 +3787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df29f7de-4f88-4c6f-bb3e-d3a689adbca8 - X-Total-Count: - - "0" + - db787cf9-0ae5-425d-a117-2919e9a988ce status: 200 OK code: 200 - duration: 55.635326ms + duration: 100.492618ms - id: 76 request: proto: HTTP/1.1 @@ -3801,7 +3807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3809,20 +3815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,10 +3836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbc4e89d-807a-4322-b603-b504c3a33a8f + - 4004e491-958a-49d3-b8b2-b6bee1f565bb status: 200 OK code: 200 - duration: 62.146173ms + duration: 103.313961ms - id: 77 request: proto: HTTP/1.1 @@ -3850,7 +3856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3858,20 +3864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:03:37.350132+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,10 +3885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 543632a3-e0dd-46a2-86f2-0ee8132fb958 + - 1e166776-fefd-4fb2-9901-0a681de562b1 status: 200 OK code: 200 - duration: 72.540901ms + duration: 99.505491ms - id: 78 request: proto: HTTP/1.1 @@ -3899,7 +3905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -3907,20 +3913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 538 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:03:37.225515+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,10 +3934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa152612-904f-43df-b0d9-3288b245cfbe + - 28aa9dcd-c2ca-4f4f-86d2-52de6eb8b56c status: 200 OK code: 200 - duration: 94.223895ms + duration: 107.678358ms - id: 79 request: proto: HTTP/1.1 @@ -3948,7 +3954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -3956,20 +3962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 532 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:34 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3977,10 +3983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a94144-1153-4667-af41-4fde390a6616 + - fa3dbda1-8bcd-4b7d-a3e5-363e5ac97e09 status: 200 OK code: 200 - duration: 94.052057ms + duration: 120.366324ms - id: 80 request: proto: HTTP/1.1 @@ -3997,7 +4003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -4005,20 +4011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 532 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "520" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,10 +4032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0b8bc7d-7360-4988-b649-228cea4c7cf1 + - edc4363d-ced6-4c93-854e-29dd58138586 status: 200 OK code: 200 - duration: 58.142719ms + duration: 86.002072ms - id: 81 request: proto: HTTP/1.1 @@ -4046,7 +4052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -4054,20 +4060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 535 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "519" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4075,10 +4081,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2256c8d-1834-446f-a1f9-68cbcd6b3f10 + - b14702ab-9d03-4bb9-8802-8f5253b4a607 status: 200 OK code: 200 - duration: 60.043599ms + duration: 97.090161ms - id: 82 request: proto: HTTP/1.1 @@ -4095,7 +4101,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -4103,20 +4109,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 535 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4124,10 +4130,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1af4244-43d1-4980-8595-ea308648f29b + - 33b6d6ff-e14b-431a-96f3-20adf49a6f53 status: 200 OK code: 200 - duration: 51.934673ms + duration: 114.95781ms - id: 83 request: proto: HTTP/1.1 @@ -4144,7 +4150,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -4152,20 +4158,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2340 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4173,10 +4179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e85131a2-2202-4dac-8763-9649111e7ef7 + - 38609d43-f71f-4a10-801c-8ec2aba522ca status: 200 OK code: 200 - duration: 53.323645ms + duration: 175.716349ms - id: 84 request: proto: HTTP/1.1 @@ -4193,7 +4199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -4201,22 +4207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2307 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4224,12 +4228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89985dbd-e273-49ab-84f1-0514ed60bca5 - X-Total-Count: - - "0" + - 0f529389-2f59-49f7-ac11-7f1650ddf069 status: 200 OK code: 200 - duration: 50.186456ms + duration: 135.536711ms - id: 85 request: proto: HTTP/1.1 @@ -4246,7 +4248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -4254,22 +4256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2305 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4277,12 +4277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cbefc02-659e-4d1a-8372-44c50539c10d - X-Total-Count: - - "0" + - d07d982e-b16d-42ab-8f44-4895df958703 status: 200 OK code: 200 - duration: 55.472494ms + duration: 125.600422ms - id: 86 request: proto: HTTP/1.1 @@ -4299,7 +4297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -4307,20 +4305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4328,10 +4326,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c12b447-3ad8-4dc1-ab64-3816548ac300 + - a7eefbae-4414-468f-8a8e-181cbf107c02 status: 200 OK code: 200 - duration: 59.846865ms + duration: 100.67896ms - id: 87 request: proto: HTTP/1.1 @@ -4348,7 +4346,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -4356,20 +4354,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 533 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4377,52 +4375,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 323ff01a-3446-425e-8405-d9859616673a + - 0355897c-c035-4f4d-bb74-60b24d409da7 status: 200 OK code: 200 - duration: 64.336759ms + duration: 148.517536ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-angry-diffie","root_volume":"a8348f07-2bc7-47d8-819c-c1373574aadb","arch":"x86_64","extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 532 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "740" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4430,10 +4424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bdeb679-205c-40d4-baa6-57ff93999950 - status: 201 Created - code: 201 - duration: 170.782746ms + - 0a233309-ff40-4a88-8763-d5b430a927e4 + status: 200 OK + code: 200 + duration: 115.223098ms - id: 89 request: proto: HTTP/1.1 @@ -4450,7 +4444,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -4458,20 +4452,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 2340 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "740" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4479,10 +4473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5fb6b9b-f962-4abb-9613-19831f9f2c2a + - e2532394-7c11-4c97-8707-0b803214bc42 status: 200 OK code: 200 - duration: 66.98348ms + duration: 121.390671ms - id: 90 request: proto: HTTP/1.1 @@ -4499,7 +4493,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -4507,20 +4501,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 2305 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "740" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4528,10 +4522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b810e253-54b6-43d9-9f14-79be3c542a01 + - 1aeaf8c1-5001-4a34-9895-26c78fab2b9e status: 200 OK code: 200 - duration: 56.081962ms + duration: 145.196131ms - id: 91 request: proto: HTTP/1.1 @@ -4548,7 +4542,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -4556,20 +4550,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 2307 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "2307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4577,10 +4571,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e35308b-3c59-42d4-b3c3-5517421c70ac + - 59f57eb5-4792-41c9-bc74-5dbbeb2444c0 status: 200 OK code: 200 - duration: 92.090173ms + duration: 161.846006ms - id: 92 request: proto: HTTP/1.1 @@ -4597,7 +4591,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 method: GET response: proto: HTTP/2.0 @@ -4605,20 +4599,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 530 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4626,10 +4620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64324fb4-924e-4ffa-8633-023569067a42 + - 53a067c7-cf89-43a9-92f0-212210fec4c1 status: 200 OK code: 200 - duration: 107.458002ms + duration: 90.449413ms - id: 93 request: proto: HTTP/1.1 @@ -4646,7 +4640,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 method: GET response: proto: HTTP/2.0 @@ -4654,20 +4648,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 518 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4675,10 +4669,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f967b345-8819-4fbc-82bf-1420460dd1e5 + - 87c0503c-26d8-4883-8ce0-971056239140 status: 200 OK code: 200 - duration: 55.757552ms + duration: 101.432133ms - id: 94 request: proto: HTTP/1.1 @@ -4695,7 +4689,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 method: GET response: proto: HTTP/2.0 @@ -4703,20 +4697,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 519 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4724,10 +4718,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0349a8a8-43d5-4070-84a3-477598710ca2 + - 3708f1c7-ae1b-499d-a5f8-989a196efe1f status: 200 OK code: 200 - duration: 50.722138ms + duration: 109.482877ms - id: 95 request: proto: HTTP/1.1 @@ -4744,7 +4738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/user_data method: GET response: proto: HTTP/2.0 @@ -4752,20 +4746,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 17 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "740" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4773,10 +4767,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8607930b-5fc1-485d-a10a-704c721da0c0 + - 1d45a319-f154-4d8f-9448-73e39d69f419 status: 200 OK code: 200 - duration: 56.60959ms + duration: 102.431967ms - id: 96 request: proto: HTTP/1.1 @@ -4793,7 +4787,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/user_data method: GET response: proto: HTTP/2.0 @@ -4801,20 +4795,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2311" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4822,10 +4816,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c5db736-421b-4063-9a37-f6694c1d336e + - 2d45aeb9-cdba-4841-b541-75b201ef1a7f status: 200 OK code: 200 - duration: 107.155471ms + duration: 96.934501ms - id: 97 request: proto: HTTP/1.1 @@ -4842,7 +4836,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data method: GET response: proto: HTTP/2.0 @@ -4850,20 +4844,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2308" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4871,10 +4865,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd4ae352-f036-40b8-8dd7-612a158f41ef + - 7704b9a4-d400-4947-9ef8-42ec1a8a62ed status: 200 OK code: 200 - duration: 106.610513ms + duration: 98.714618ms - id: 98 request: proto: HTTP/1.1 @@ -4891,7 +4885,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/private_nics method: GET response: proto: HTTP/2.0 @@ -4899,20 +4893,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "520" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4920,10 +4916,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c3c24c7-c53e-4f3c-8584-2dd42adfbaf9 + - eac004cb-370b-4cc7-bc18-632d8eb47dca + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 56.564747ms + duration: 89.819322ms - id: 99 request: proto: HTTP/1.1 @@ -4940,7 +4938,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics method: GET response: proto: HTTP/2.0 @@ -4948,20 +4946,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 519 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "519" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4969,10 +4969,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 085cd079-229c-41aa-853c-c879d3150a15 + - 59558d82-afcf-44ba-a7e9-5558573c982a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 59.402952ms + duration: 96.20318ms - id: 100 request: proto: HTTP/1.1 @@ -4989,7 +4991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/private_nics method: GET response: proto: HTTP/2.0 @@ -4997,20 +4999,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5018,10 +5022,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9270e8c-41ad-4354-b054-c00df3389199 + - c3768de6-18c9-4bfc-a40e-544e6aead2c6 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 60.779342ms + duration: 89.23182ms - id: 101 request: proto: HTTP/1.1 @@ -5038,7 +5044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -5046,20 +5052,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 535 uncompressed: false - body: '{"user_data":[]}' + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5067,10 +5073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cad6f346-2d8c-40b6-ad58-09dbf771246f + - 1ba8c576-6be7-4d2e-959c-4f695518f380 status: 200 OK code: 200 - duration: 74.647382ms + duration: 101.789283ms - id: 102 request: proto: HTTP/1.1 @@ -5087,7 +5093,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -5095,22 +5101,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 532 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5118,12 +5122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e9f151f-d5c5-4a09-ba73-08e4f9eae57c - X-Total-Count: - - "0" + - f6920f6e-42a1-4443-afed-5d6b36791f7c status: 200 OK code: 200 - duration: 49.65425ms + duration: 100.10209ms - id: 103 request: proto: HTTP/1.1 @@ -5140,7 +5142,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -5148,22 +5150,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 533 uncompressed: false - body: '{"private_nics":[]}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5171,12 +5171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01283421-7940-45b1-9a42-aff3c80b1ab0 - X-Total-Count: - - "0" + - 740cf691-f20c-47f0-be44-fd4cd02a2470 status: 200 OK code: 200 - duration: 50.695318ms + duration: 113.946816ms - id: 104 request: proto: HTTP/1.1 @@ -5193,7 +5191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -5201,20 +5199,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 2340 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "539" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5222,10 +5220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82ab1ca1-17a7-456a-a47d-51b53cf47ae0 + - a925e89e-b4c6-4cb4-9e2b-01b1e97a4cc3 status: 200 OK code: 200 - duration: 64.007369ms + duration: 124.765798ms - id: 105 request: proto: HTTP/1.1 @@ -5242,7 +5240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -5250,20 +5248,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 2305 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "529" + - "2305" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5271,10 +5269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc11ac18-9b5a-44f5-b825-709c0103020a + - db46e16a-75cf-4947-be9a-d94cbbb44df3 status: 200 OK code: 200 - duration: 118.2413ms + duration: 125.719457ms - id: 106 request: proto: HTTP/1.1 @@ -5291,7 +5289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -5299,20 +5297,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 2307 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "740" + - "2307" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:36 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5320,10 +5318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa25be8b-8b4a-4544-bc29-82429866d698 + - e17271ba-235d-4a27-9f48-0bf50afae40d status: 200 OK code: 200 - duration: 54.838631ms + duration: 128.531599ms - id: 107 request: proto: HTTP/1.1 @@ -5340,7 +5338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 method: GET response: proto: HTTP/2.0 @@ -5348,20 +5346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 740 + content_length: 518 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:07:35.461180+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","name":"tf-snap-cocky-curie","size":10000000000,"volume_type":"l_ssd"}},"from_server":"","id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","modification_date":"2025-10-08T23:07:35.461180+00:00","name":"tf-image-angry-diffie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","name":"tf-snap-charming-grothendieck","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "740" + - "518" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5369,10 +5367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24b3d88b-7148-4eec-8333-e18e549c2426 + - cf62cb5a-2cec-4363-b7d1-c590516b5566 status: 200 OK code: 200 - duration: 92.953151ms + duration: 189.321388ms - id: 108 request: proto: HTTP/1.1 @@ -5389,26 +5387,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 530 uncompressed: false - body: "" + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: + Content-Length: + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5416,10 +5416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9652d818-bbf1-4fe7-935b-dc102f1e0b63 - status: 204 No Content - code: 204 - duration: 307.338571ms + - 8a4cfe1a-ed7a-4737-ad1d-534b92f2eade + status: 200 OK + code: 200 + duration: 189.32272ms - id: 109 request: proto: HTTP/1.1 @@ -5436,7 +5436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 method: GET response: proto: HTTP/2.0 @@ -5444,20 +5444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 519 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","type":"not_found"}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "142" + - "519" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5465,10 +5465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 241476f6-ca90-4197-b413-d8aedadca18f - status: 404 Not Found - code: 404 - duration: 33.738226ms + - 4f46a0c9-bdd2-4bb9-8fbf-dd685622dcfd + status: 200 OK + code: 200 + duration: 186.679745ms - id: 110 request: proto: HTTP/1.1 @@ -5485,7 +5485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data method: GET response: proto: HTTP/2.0 @@ -5493,20 +5493,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 529 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:06:57.724498+00:00","error_details":null,"id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"tf-snap-cocky-curie","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "529" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5514,10 +5514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cfb1076-de28-4cc4-bac7-42b4fd909eb6 + - 14e075fd-4d7b-4101-b428-bfcf61a87282 status: 200 OK code: 200 - duration: 48.998395ms + duration: 100.874078ms - id: 111 request: proto: HTTP/1.1 @@ -5534,7 +5534,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/user_data method: GET response: proto: HTTP/2.0 @@ -5542,20 +5542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 539 + content_length: 17 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:48.633908+00:00","error_details":null,"id":"a8348f07-2bc7-47d8-819c-c1373574aadb","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"tf-snap-charming-grothendieck","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "539" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5563,10 +5563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3560899a-7db3-45a9-8021-b9280fe5d30a + - 2070892a-5e95-44c0-8751-4846c44e4aac status: 200 OK code: 200 - duration: 62.694037ms + duration: 100.948217ms - id: 112 request: proto: HTTP/1.1 @@ -5583,26 +5583,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 17 uncompressed: false - body: "" + body: '{"user_data":[]}' headers: + Content-Length: + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5610,10 +5612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e3b07fd-e938-4851-be3f-7e195900ffdc - status: 204 No Content - code: 204 - duration: 104.513138ms + - 28b350c6-d944-496d-ae4e-d61817d27dc2 + status: 200 OK + code: 200 + duration: 130.287622ms - id: 113 request: proto: HTTP/1.1 @@ -5630,7 +5632,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/private_nics method: GET response: proto: HTTP/2.0 @@ -5638,20 +5640,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "145" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5659,10 +5663,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f8c39b-c680-4c89-9b2b-11fd36bed3a1 - status: 404 Not Found - code: 404 - duration: 29.942147ms + - 3634de8b-2d6b-48c4-9458-3c3cf87b52c9 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 91.38093ms - id: 114 request: proto: HTTP/1.1 @@ -5679,26 +5685,30 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 20 uncompressed: false - body: "" + body: '{"private_nics":[]}' headers: + Content-Length: + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5706,10 +5716,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee7bf8be-223f-4313-a13f-6383339e24f9 - status: 204 No Content - code: 204 - duration: 121.689986ms + - ad29cfc1-b368-4fef-96d3-291bfb340299 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 93.325045ms - id: 115 request: proto: HTTP/1.1 @@ -5726,7 +5738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/private_nics method: GET response: proto: HTTP/2.0 @@ -5734,20 +5746,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 145 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a8348f07-2bc7-47d8-819c-c1373574aadb","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "145" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5755,10 +5769,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d505dba-5e19-4a42-a6cb-fe436ed22d00 - status: 404 Not Found - code: 404 - duration: 37.420816ms + - d21c45a8-4328-40d9-9511-c35b43a5cae2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 116.54611ms - id: 116 request: proto: HTTP/1.1 @@ -5775,7 +5791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -5783,20 +5799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 533 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:06:56.942712+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"tf-snap-priceless-gould","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2308" + - "533" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5804,10 +5820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8d14c2f-3233-4d19-ba1b-cc9f11fb9bf3 + - e73a0913-383b-40db-b548-3d98ac3c9100 status: 200 OK code: 200 - duration: 83.239022ms + duration: 94.491312ms - id: 117 request: proto: HTTP/1.1 @@ -5824,7 +5840,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 method: GET response: proto: HTTP/2.0 @@ -5832,20 +5848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2311 + content_length: 532 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:05:47.451059+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"tf-snap-silly-torvalds","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2311" + - "532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:37 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5853,11 +5869,2483 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f12e27d-8a71-4e8e-b76a-2b7e446ebb5a + - 8a5c73a1-e89a-4e7a-8907-eafb489e6cbd status: 200 OK code: 200 - duration: 86.00256ms + duration: 108.01724ms - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"tf-snap-boring-goldwasser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f41351b-1f1b-4fae-b76e-b553ef9c44fa + status: 200 OK + code: 200 + duration: 117.934943ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"snap03","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:41.767787+00:00","name":"snap03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9da93eeb-3667-4098-95cd-74fef2c014aa + status: 200 OK + code: 200 + duration: 136.865474ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"snap01","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:41.771757+00:00","name":"snap01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fdbf9add-131d-4131-8777-8af3416d6ba8 + status: 200 OK + code: 200 + duration: 154.725959ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 27 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"snap02","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:41.767907+00:00","name":"snap02","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - acbce2fa-a84a-4f1e-981f-7e24f202850f + status: 200 OK + code: 200 + duration: 190.287329ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:41.767787+00:00","name":"snap03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9dc71504-cd2e-45cb-9b68-4633d3b7664a + status: 200 OK + code: 200 + duration: 114.729113ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:41.771757+00:00","name":"snap01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 31dc4f27-5114-47c9-b36a-874076f84cd4 + status: 200 OK + code: 200 + duration: 101.011094ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:41.767907+00:00","name":"snap02","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 95abdf9b-0f6d-4301-8b03-ef8b7393364d + status: 200 OK + code: 200 + duration: 123.97084ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 284 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-image-upbeat-banzai","root_volume":"677d73d7-a7fc-4327-b242-18ae3663ee13","arch":"x86_64","extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 076dd67f-ffa1-42e0-ae98-573190b43651 + status: 201 Created + code: 201 + duration: 316.450851ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2240a7c2-dd6c-4242-b0e8-3ebee5f0a346 + status: 200 OK + code: 200 + duration: 107.162749ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05a20adc-f328-4fb2-a659-41a38013128c + status: 200 OK + code: 200 + duration: 112.86561ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:41.771757+00:00","name":"snap01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75aaa78d-848c-4b58-81e2-9b123008cbcd + status: 200 OK + code: 200 + duration: 99.526492ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:41.767907+00:00","name":"snap02","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a07bd93f-9769-4034-80e2-7bb2c4902184 + status: 200 OK + code: 200 + duration: 103.636628ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:41.767787+00:00","name":"snap03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:42 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18458b44-5db6-4834-9b53-0ce7480068d1 + status: 200 OK + code: 200 + duration: 110.26259ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d69172bf-083a-4e9b-9e82-7e4f48317cce + status: 200 OK + code: 200 + duration: 108.137958ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2307 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2307" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db927aa1-711a-4da3-87c7-01d84ae1d9b7 + status: 200 OK + code: 200 + duration: 127.546495ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2340 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2340" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0c5aeea8-7f1a-4fd9-85ca-19ba3df5641f + status: 200 OK + code: 200 + duration: 148.264267ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2305 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2305" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8a3df8a-170c-4f74-aa85-7bcaa9eb0ba6 + status: 200 OK + code: 200 + duration: 168.577009ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 519 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "519" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35c6b88e-63ac-427b-8b56-b768a33c7006 + status: 200 OK + code: 200 + duration: 98.811152ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8d6ce429-7adc-4ce4-af16-a26b63abf17d + status: 200 OK + code: 200 + duration: 93.031515ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 518 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "518" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7b6e6b32-36ca-4fc5-acba-f1cbcfbecd57 + status: 200 OK + code: 200 + duration: 101.80233ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dcebbecd-75cb-4fb7-b268-3bcbd68c9b08 + status: 200 OK + code: 200 + duration: 99.019493ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe377118-81bc-4e28-85fe-1c4b84249378 + status: 200 OK + code: 200 + duration: 93.672849ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c2d4713-64f0-4da8-966b-c913ac966c11 + status: 200 OK + code: 200 + duration: 78.644183ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b131b80f-ece2-4a2d-b166-43d8d3ef5adf + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 111.043204ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 98c5fb76-8dc6-4adb-b372-e00cfff34e02 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 91.692266ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0718e315-2fcc-4693-a2b0-33c1840e61ff + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 112.744604ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:41.767907+00:00","name":"snap02","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01d2dfa7-ed69-439f-9d16-6327b2215fe8 + status: 200 OK + code: 200 + duration: 90.817305ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:41.767787+00:00","name":"snap03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cea97efd-6f96-4970-ab9c-26e44ff3d0ed + status: 200 OK + code: 200 + duration: 87.358681ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:41.771757+00:00","name":"snap01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 58e339de-52c7-46a3-a7db-ddf6ed3ab61d + status: 200 OK + code: 200 + duration: 84.105461ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 605343cd-d972-4564-8a5b-7f976e9ceaff + status: 200 OK + code: 200 + duration: 110.536554ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 821 + uncompressed: false + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:04:42.213084+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"69b3b497-9917-43ba-925c-d446b51282d0","name":"snap02","size":10000000000,"volume_type":"l_ssd"},"2":{"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","name":"snap03","size":20000000000,"volume_type":"l_ssd"}},"from_server":"","id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","modification_date":"2025-10-15T15:04:42.213084+00:00","name":"tf-image-upbeat-banzai","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","name":"snap01","size":15000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "821" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 45e1b8f8-984f-46ca-8c2b-d950ea42c566 + status: 200 OK + code: 200 + duration: 112.120926ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a9ed3ae-a7c1-4dd5-aaa6-a0164705847d + status: 204 No Content + code: 204 + duration: 363.206625ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 142 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","type":"not_found"}' + headers: + Content-Length: + - "142" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3576560-e80d-4abe-81e2-b402c38de489 + status: 404 Not Found + code: 404 + duration: 30.039498ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.350132+00:00","error_details":null,"id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","modification_date":"2025-10-15T15:04:41.767787+00:00","name":"snap03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6470c619-cb2f-4896-a527-96c6d7129442 + status: 200 OK + code: 200 + duration: 97.758509ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"88d4a540-539f-4f85-bf96-83d81ba46401","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.515894+00:00","error_details":null,"id":"69b3b497-9917-43ba-925c-d446b51282d0","modification_date":"2025-10-15T15:04:41.767907+00:00","name":"snap02","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1becf421-a0a8-4cac-9be1-76bbb9cecc59 + status: 200 OK + code: 200 + duration: 107.39737ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 516 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"94ca257e-0b67-435d-8055-7edf4ce93225","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:03:37.225515+00:00","error_details":null,"id":"677d73d7-a7fc-4327-b242-18ae3663ee13","modification_date":"2025-10-15T15:04:41.771757+00:00","name":"snap01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "516" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1dcf122-708c-44e2-84e1-062c45d1ef75 + status: 200 OK + code: 200 + duration: 107.430482ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69d048ed-fd18-4ec0-b926-edacabd5c911 + status: 204 No Content + code: 204 + duration: 140.78722ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08708a6d-a030-4248-ae6f-8c82ae60abae + status: 204 No Content + code: 204 + duration: 154.286929ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 145 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","type":"not_found"}' + headers: + Content-Length: + - "145" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59b7359f-9b26-45d5-8b83-d85301e93246 + status: 404 Not Found + code: 404 + duration: 35.170929ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - edebf121-6151-4f0e-b8c1-d580ff848f5a + status: 204 No Content + code: 204 + duration: 168.67255ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 145 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"69b3b497-9917-43ba-925c-d446b51282d0","type":"not_found"}' + headers: + Content-Length: + - "145" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d15ba946-8a6e-4c81-96ab-9a1ff748da43 + status: 404 Not Found + code: 404 + duration: 28.784436ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 145 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"677d73d7-a7fc-4327-b242-18ae3663ee13","type":"not_found"}' + headers: + Content-Length: + - "145" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e09fa138-adae-4424-ba00-5ce067e5aad1 + status: 404 Not Found + code: 404 + duration: 34.326816ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2305 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2305" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c5cbd62-2f3f-4652-b3d2-847695f1553e + status: 200 OK + code: 200 + duration: 140.496897ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2307 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2307" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 75f55d62-60a0-4940-bc04-f74873d57843 + status: 200 OK + code: 200 + duration: 139.748373ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2340 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2340" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 439022d5-a772-4594-811b-13b133ad1114 + status: 200 OK + code: 200 + duration: 128.061503ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2305 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:03:34.237920+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2305" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b39ff012-0104-4259-aec9-128ab0a46f15 + status: 200 OK + code: 200 + duration: 117.466088ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2340 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:03:33.244595+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2340" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29fbfbf5-65ae-41cd-b2d1-f0a55329c310 + status: 200 OK + code: 200 + duration: 125.866066ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2307 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:03:31.465634+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2307" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8594562e-6d65-4c72-9ea6-002af19e0df7 + status: 200 OK + code: 200 + duration: 152.232158ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/7044ca01-7c67-4085-af04-f7482bca7f0a/action","href_result":"/servers/7044ca01-7c67-4085-af04-f7482bca7f0a","id":"8154b47b-5df6-4c85-98e2-19482dff9ad9","progress":0,"started_at":"2025-10-15T15:04:45.518013+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8154b47b-5df6-4c85-98e2-19482dff9ad9 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53a6a046-15a7-4989-886d-733e2ce8d23d + status: 202 Accepted + code: 202 + duration: 297.01477ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/10226f00-dc3a-4832-9fab-d77b4d244af5/action","href_result":"/servers/10226f00-dc3a-4832-9fab-d77b4d244af5","id":"64111c86-3207-4273-a29f-323d1042a349","progress":0,"started_at":"2025-10-15T15:04:45.539004+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:45 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/64111c86-3207-4273-a29f-323d1042a349 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64fa949c-3501-4288-93ae-c15e66ec804f + status: 202 Accepted + code: 202 + duration: 265.341689ms + - id: 168 request: proto: HTTP/1.1 proto_major: 1 @@ -5875,7 +8363,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/action method: POST response: proto: HTTP/2.0 @@ -5885,7 +8373,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a/action","href_result":"/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","id":"4a637a26-dfb0-4ac1-aeec-f716440fb368","progress":0,"started_at":"2025-10-08T23:07:38.097553+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/c78a1974-594b-49e7-b35d-17ddcef3568a/action","href_result":"/servers/c78a1974-594b-49e7-b35d-17ddcef3568a","id":"24aa376a-392f-406b-a912-18d68dd30345","progress":0,"started_at":"2025-10-15T15:04:45.554174+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -5894,11 +8382,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4a637a26-dfb0-4ac1-aeec-f716440fb368 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/24aa376a-392f-406b-a912-18d68dd30345 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5906,11 +8394,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b1c1dd0-3526-45f7-b3eb-7f01c83e7ee1 + - dd88cdeb-4697-4cda-b36a-6e2186db2956 status: 202 Accepted code: 202 - duration: 182.870841ms - - id: 119 + duration: 325.651328ms + - id: 169 request: proto: HTTP/1.1 proto_major: 1 @@ -5926,7 +8414,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -5934,20 +8422,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2271 + content_length: 2268 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:46.419845+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-golick","id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1202","node_id":"11","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c5","maintenances":[],"modification_date":"2025-10-08T23:07:37.958841+00:00","name":"tf-srv-stoic-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:46.419845+00:00","export_uri":null,"id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","modification_date":"2025-10-08T23:07:31.255239+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","name":"tf-srv-stoic-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.308062+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-black","id":"7044ca01-7c67-4085-af04-f7482bca7f0a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1702","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1b","maintenances":[],"modification_date":"2025-10-15T15:04:45.276751+00:00","name":"tf-srv-goofy-black","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.308062+00:00","export_uri":null,"id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","modification_date":"2025-10-15T15:04:32.823051+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"7044ca01-7c67-4085-af04-f7482bca7f0a","name":"tf-srv-goofy-black"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2271" + - "2268" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5955,52 +8443,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cba6cf04-040f-43b1-b59d-c806243552c0 + - 5d674444-9c96-4e1f-90a5-e1485d4d0497 status: 200 OK code: 200 - duration: 77.280878ms - - id: 120 + duration: 133.047862ms + - id: 170 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 2270 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f/action","href_result":"/servers/b6db9b7d-25c6-466d-80d6-414635ab678f","id":"dca1d17c-3700-4609-88ed-c2a05feaf792","progress":0,"started_at":"2025-10-08T23:07:38.351150+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:04:45.327113+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "2270" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:38 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/dca1d17c-3700-4609-88ed-c2a05feaf792 + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6008,11 +8492,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31309a34-82e6-4ddf-9561-13c706d86260 - status: 202 Accepted - code: 202 - duration: 409.004965ms - - id: 121 + - 824c32f8-feca-4bf3-8448-36cc05c7b2cf + status: 200 OK + code: 200 + duration: 140.60018ms + - id: 171 request: proto: HTTP/1.1 proto_major: 1 @@ -6028,7 +8512,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -6036,20 +8520,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2303 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.226173+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-varahamihira","id":"c78a1974-594b-49e7-b35d-17ddcef3568a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"101","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:19","maintenances":[],"modification_date":"2025-10-15T15:04:45.305077+00:00","name":"tf-srv-flamboyant-varahamihira","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.226173+00:00","export_uri":null,"id":"94ca257e-0b67-435d-8055-7edf4ce93225","modification_date":"2025-10-15T15:04:34.910341+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c78a1974-594b-49e7-b35d-17ddcef3568a","name":"tf-srv-flamboyant-varahamihira"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2303" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6057,11 +8541,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e8e72cd-e9d6-4823-9250-6da4087748f9 + - 08365fff-db43-4862-84b8-1af295cbe274 status: 200 OK code: 200 - duration: 88.573039ms - - id: 122 + duration: 117.148222ms + - id: 172 request: proto: HTTP/1.1 proto_major: 1 @@ -6077,7 +8561,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -6087,7 +8571,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7044ca01-7c67-4085-af04-f7482bca7f0a","type":"not_found"}' headers: Content-Length: - "143" @@ -6096,9 +8580,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:43 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6106,11 +8590,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a0eea57-3784-45d4-999a-1fcc3c1dbaab + - 1dcb71b5-ae9a-40f1-89d0-fe7f7b7219ad status: 404 Not Found code: 404 - duration: 52.368365ms - - id: 123 + duration: 49.61969ms + - id: 173 request: proto: HTTP/1.1 proto_major: 1 @@ -6126,7 +8610,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 method: GET response: proto: HTTP/2.0 @@ -6136,7 +8620,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","type":"not_found"}' headers: Content-Length: - "143" @@ -6145,9 +8629,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:43 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6155,11 +8639,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c8da46e-a529-4b5b-ab82-037fe0c65a3a + - 55247de2-4891-472a-824c-f9e16afc9a31 status: 404 Not Found code: 404 - duration: 37.45095ms - - id: 124 + duration: 38.522415ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c78a1974-594b-49e7-b35d-17ddcef3568a","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f098016e-3953-4f7a-b7a6-480865eae985 + status: 404 Not Found + code: 404 + duration: 61.224868ms + - id: 175 request: proto: HTTP/1.1 proto_major: 1 @@ -6175,7 +8708,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7cf1f9de-3242-421d-aed6-dbccbacc41fb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c9aebdcb-8c7b-4688-b059-f05810a1c3b9 method: GET response: proto: HTTP/2.0 @@ -6185,7 +8718,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"7cf1f9de-3242-421d-aed6-dbccbacc41fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c9aebdcb-8c7b-4688-b059-f05810a1c3b9","type":"not_found"}' headers: Content-Length: - "127" @@ -6194,9 +8727,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:43 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6204,11 +8737,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b21b230-eac4-4acd-8b0a-51246dfffdba + - fc5a45b2-ad9e-48e4-a094-7cedb0780c79 status: 404 Not Found code: 404 - duration: 19.414431ms - - id: 125 + duration: 21.236485ms + - id: 176 request: proto: HTTP/1.1 proto_major: 1 @@ -6224,7 +8757,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 method: GET response: proto: HTTP/2.0 @@ -6232,20 +8765,118 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"94ca257e-0b67-435d-8055-7edf4ce93225","type":"not_found"}' headers: Content-Length: - - "2274" + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 38e90199-7668-4d0f-a7b8-db183f4b55ee + status: 404 Not Found + code: 404 + duration: 27.441549ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/94ca257e-0b67-435d-8055-7edf4ce93225 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"94ca257e-0b67-435d-8055-7edf4ce93225","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:50 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4251019f-e9f9-42f1-8773-7623f4afef6e + status: 404 Not Found + code: 404 + duration: 18.093543ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2270 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:04:45.327113+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2270" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:43 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6253,11 +8884,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78876345-30d1-4cf8-8fd1-b0ff1d078b93 + - 0b70dbd7-5083-4666-aeff-d81a69dbd401 status: 200 OK code: 200 - duration: 84.508761ms - - id: 126 + duration: 163.844275ms + - id: 179 request: proto: HTTP/1.1 proto_major: 1 @@ -6273,7 +8904,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -6281,20 +8912,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2270 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:37.442597+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stoic-ganguly","id":"b6db9b7d-25c6-466d-80d6-414635ab678f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"2001","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:af","maintenances":[],"modification_date":"2025-10-08T23:07:37.993637+00:00","name":"tf-srv-stoic-ganguly","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:37.442597+00:00","export_uri":null,"id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","modification_date":"2025-10-08T23:06:42.195258+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"b6db9b7d-25c6-466d-80d6-414635ab678f","name":"tf-srv-stoic-ganguly"},"size":15000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.267446+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-payne","id":"10226f00-dc3a-4832-9fab-d77b4d244af5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"201","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1d","maintenances":[],"modification_date":"2025-10-15T15:04:45.327113+00:00","name":"tf-srv-clever-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:20.267446+00:00","export_uri":null,"id":"88d4a540-539f-4f85-bf96-83d81ba46401","modification_date":"2025-10-15T15:04:06.122944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"10226f00-dc3a-4832-9fab-d77b4d244af5","name":"tf-srv-clever-payne"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2270" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:48 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6302,11 +8933,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c07dd5b7-cbab-4461-8cc4-9693db710f0b + - dbd577c0-4703-4fd7-a8c2-c4ee11696d29 status: 200 OK code: 200 - duration: 93.923725ms - - id: 127 + duration: 140.633885ms + - id: 180 request: proto: HTTP/1.1 proto_major: 1 @@ -6322,7 +8953,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 method: GET response: proto: HTTP/2.0 @@ -6332,7 +8963,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b6db9b7d-25c6-466d-80d6-414635ab678f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"10226f00-dc3a-4832-9fab-d77b4d244af5","type":"not_found"}' headers: Content-Length: - "143" @@ -6341,9 +8972,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6351,11 +8982,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7603fc0-9702-4949-ba24-c24b3da6978a + - 279e67ef-e9bf-44d7-9e6f-913a9649acff status: 404 Not Found code: 404 - duration: 48.488008ms - - id: 128 + duration: 51.437753ms + - id: 181 request: proto: HTTP/1.1 proto_major: 1 @@ -6371,7 +9002,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 method: GET response: proto: HTTP/2.0 @@ -6381,7 +9012,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"88d4a540-539f-4f85-bf96-83d81ba46401","type":"not_found"}' headers: Content-Length: - "143" @@ -6390,9 +9021,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6400,11 +9031,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be03ac68-e45f-457b-b435-3b7bb72efdad + - 01731232-d985-4432-9a63-c611f138090a status: 404 Not Found code: 404 - duration: 27.786383ms - - id: 129 + duration: 29.383823ms + - id: 182 request: proto: HTTP/1.1 proto_major: 1 @@ -6420,7 +9051,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5ceaa803-518f-4bc8-8046-9642e9ea1039 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/88d4a540-539f-4f85-bf96-83d81ba46401 method: GET response: proto: HTTP/2.0 @@ -6430,7 +9061,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"5ceaa803-518f-4bc8-8046-9642e9ea1039","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"88d4a540-539f-4f85-bf96-83d81ba46401","type":"not_found"}' headers: Content-Length: - "127" @@ -6439,9 +9070,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6449,11 +9080,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6ba2572-2758-4587-a5da-2554a236d6da + - ecf5c3dd-4398-4ebe-8230-1400c8f893d4 status: 404 Not Found code: 404 - duration: 20.34863ms - - id: 130 + duration: 21.193797ms + - id: 183 request: proto: HTTP/1.1 proto_major: 1 @@ -6469,7 +9100,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/a17ab655-81bc-4a0a-944b-4a8a53c977d3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/d3513e60-daa2-407f-8d9a-2c1b3b63e58f method: GET response: proto: HTTP/2.0 @@ -6479,7 +9110,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"a17ab655-81bc-4a0a-944b-4a8a53c977d3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"d3513e60-daa2-407f-8d9a-2c1b3b63e58f","type":"not_found"}' headers: Content-Length: - "142" @@ -6488,9 +9119,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6498,11 +9129,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f95444b5-4f2f-4ca6-a5c6-7ca8c4b1735b + - 5c403ee9-6289-4cef-ab6b-e1f6d8fc61f9 status: 404 Not Found code: 404 - duration: 31.774719ms - - id: 131 + duration: 30.335999ms + - id: 184 request: proto: HTTP/1.1 proto_major: 1 @@ -6518,7 +9149,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a8348f07-2bc7-47d8-819c-c1373574aadb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/677d73d7-a7fc-4327-b242-18ae3663ee13 method: GET response: proto: HTTP/2.0 @@ -6528,7 +9159,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a8348f07-2bc7-47d8-819c-c1373574aadb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"677d73d7-a7fc-4327-b242-18ae3663ee13","type":"not_found"}' headers: Content-Length: - "145" @@ -6537,9 +9168,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6547,11 +9178,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c2fa9c-3042-49ca-a21c-2d6f2989665d + - 61e08f67-26ed-4977-b1c0-44004b889a4a status: 404 Not Found code: 404 - duration: 29.019056ms - - id: 132 + duration: 27.378834ms + - id: 185 request: proto: HTTP/1.1 proto_major: 1 @@ -6567,7 +9198,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/69b3b497-9917-43ba-925c-d446b51282d0 method: GET response: proto: HTTP/2.0 @@ -6577,7 +9208,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"a0a3562d-e4ff-4dc2-96ff-5ba934ba3ef2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"69b3b497-9917-43ba-925c-d446b51282d0","type":"not_found"}' headers: Content-Length: - "145" @@ -6586,9 +9217,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6596,11 +9227,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab4aaf3-958a-4f80-99e2-1c5aa8dcace9 + - b8ded8e0-77e5-438a-a6d1-1f066e11d01c status: 404 Not Found code: 404 - duration: 30.232803ms - - id: 133 + duration: 30.215813ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/8c27eadc-657d-4ad0-ae9b-bebcff3f3848 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 145 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"8c27eadc-657d-4ad0-ae9b-bebcff3f3848","type":"not_found"}' + headers: + Content-Length: + - "145" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f1f17ad-d0d4-43b7-a650-65a731ee2e24 + status: 404 Not Found + code: 404 + duration: 28.015107ms + - id: 187 request: proto: HTTP/1.1 proto_major: 1 @@ -6616,7 +9296,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b6db9b7d-25c6-466d-80d6-414635ab678f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c78a1974-594b-49e7-b35d-17ddcef3568a method: GET response: proto: HTTP/2.0 @@ -6626,7 +9306,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b6db9b7d-25c6-466d-80d6-414635ab678f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c78a1974-594b-49e7-b35d-17ddcef3568a","type":"not_found"}' headers: Content-Length: - "143" @@ -6635,9 +9315,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6645,11 +9325,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 375e8ca0-d6c9-465f-a6ab-0d031def5bda + - 83d5d353-b4ed-4fa0-9f48-c0ce39e71906 status: 404 Not Found code: 404 - duration: 47.007446ms - - id: 134 + duration: 48.313014ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/10226f00-dc3a-4832-9fab-d77b4d244af5 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"10226f00-dc3a-4832-9fab-d77b4d244af5","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d28368f-f7d0-4f73-93ff-63f352665ae4 + status: 404 Not Found + code: 404 + duration: 44.986107ms + - id: 189 request: proto: HTTP/1.1 proto_major: 1 @@ -6665,7 +9394,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/704d9dec-15f0-4f74-a6e2-d3d2db1ade4a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7044ca01-7c67-4085-af04-f7482bca7f0a method: GET response: proto: HTTP/2.0 @@ -6675,7 +9404,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"704d9dec-15f0-4f74-a6e2-d3d2db1ade4a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7044ca01-7c67-4085-af04-f7482bca7f0a","type":"not_found"}' headers: Content-Length: - "143" @@ -6684,9 +9413,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:53 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6694,7 +9423,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dca67a0-c559-47cc-a27e-14f6201fea1a + - 3f9f00b7-244e-482b-a29f-01b4f3a6c59b status: 404 Not Found code: 404 - duration: 54.836464ms + duration: 38.540061ms diff --git a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml index 46784fcd1..09f664750 100644 --- a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,52 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b55c09fc-5603-425a-9886-84822f82af77 + - 1c6aec64-bd91-41e9-b171-55a965b3f055 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 80.22119ms + duration: 51.75114ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-musing-curran","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":21000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 14295 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "420" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:08 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4786d51-5a7a-42c9-ab27-671450193d8c + - 1e4f151d-717d-4157-89bf-ac39eecf1934 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 113.548621ms + duration: 40.829975ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -129,22 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1260 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "19730" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,50 +152,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bf89eb1-c737-4e30-ba6e-84d998998bed - X-Total-Count: - - "75" + - b78b1a85-e474-4d4e-bbbb-62dfc4212af0 status: 200 OK code: 200 - duration: 68.242632ms + duration: 50.001682ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-tender-volhard","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":21000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,10 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3847db7c-530c-4878-9470-291ecebd17f0 + - 143862fd-d205-4e57-89a0-fb49ae1453f4 status: 200 OK code: 200 - duration: 73.012157ms + duration: 1.733830938s - id: 4 request: proto: HTTP/1.1 @@ -223,7 +223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -231,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1260 + content_length: 421 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "1260" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,10 +252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a930a7-23bb-4a3f-8e31-3af8e8ff0924 + - cc73071a-6932-460e-9515-a569b38dba95 status: 200 OK code: 200 - duration: 46.59702ms + duration: 89.846142ms - id: 5 request: proto: HTTP/1.1 @@ -267,7 +267,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-cool-sutherland","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-reverent-galois","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:09.237961+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1744" @@ -293,11 +293,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd775a41-29d0-424d-bf8f-b59213d68e15 + - 491f2c56-2071-435b-8f62-9d3a1563de7d status: 201 Created code: 201 - duration: 533.490074ms + duration: 2.694280095s - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:09.237961+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1744" @@ -344,9 +344,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b91795f8-a182-4da7-a5ea-78b969f3a87c + - bd232eac-fcfd-4feb-9606-f02e804f8f08 status: 200 OK code: 200 - duration: 108.052319ms + duration: 142.394679ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:40.685532+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:09.237961+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1744" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f711c13d-0d48-4eda-bc90-5d113d51bc18 + - a0b0bf10-bb3c-4183-bbb4-913049ad6778 status: 200 OK code: 200 - duration: 112.380887ms + duration: 138.923564ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5f0d0e3-04f9-42ab-a6ef-53f80a1bbb7e + - d2819636-67d2-4823-87fd-395165c9a80d status: 200 OK code: 200 - duration: 40.207503ms + duration: 89.656547ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action","href_result":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3","id":"a1d152f2-ee55-4953-b7a0-7e09b955ccce","progress":0,"started_at":"2025-10-08T23:05:41.492113+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/action","href_result":"/servers/31731a14-c18c-437b-ac5d-1dad59a6e124","id":"e38e1603-b598-41ff-9e1d-c9aadfa9431f","progress":0,"started_at":"2025-10-15T15:03:11.940594+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1d152f2-ee55-4953-b7a0-7e09b955ccce + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e38e1603-b598-41ff-9e1d-c9aadfa9431f Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 774f57e5-a62a-40b3-adeb-564f6e77d2d3 + - 205097a7-9b71-49c4-b631-dd01c0addde1 status: 202 Accepted code: 202 - duration: 185.382724ms + duration: 220.711195ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -535,7 +535,7 @@ interactions: trailer: {} content_length: 1766 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:41.352159+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:11.767470+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1766" @@ -544,9 +544,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0af05a88-34a8-4491-9b21-6902ba94cc26 + - 9b54d3d1-54c4-44cf-b577-d0be83f6eab7 status: 200 OK code: 200 - duration: 87.888421ms + duration: 140.562967ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20b79b8f-1a44-4521-9f3d-8ad207f80d84 + - 37f31b20-5c0a-4f0b-9777-5e17de9a1090 status: 200 OK code: 200 - duration: 52.323896ms + duration: 88.092329ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,22 +652,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eae0b4e-181c-4735-a4c8-c127578a355f + - 8e31ad8a-d4ff-4020-a835-7a25fe518cb9 status: 200 OK code: 200 - duration: 39.454518ms + duration: 82.221005ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-snapshot-happy-gates","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' + body: '{"volume_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-snapshot-boring-chaplygin","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 465 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "459" + - "465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 527a7cc9-0a0d-4c74-98c3-f826bc5ad660 + - 25394cf2-d0e1-43b8-95fa-20011dae1d56 status: 200 OK code: 200 - duration: 267.779958ms + duration: 1.208348237s - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "459" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eee5d433-877b-436a-88f7-4c33d256d126 + - e4d73bc1-41ee-404a-bc7b-1a7ea8be4295 status: 200 OK code: 200 - duration: 219.529388ms + duration: 142.089165ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1901" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebd74c61-7920-4efe-b8d5-39208847ba00 + - 8c84ade1-0b25-4d59-8536-1b73d67a20b5 status: 200 OK code: 200 - duration: 114.680003ms + duration: 133.486312ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - - "1901" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5beeabda-4cc0-49b7-abc2-ed3fe188792d - status: 200 OK - code: 200 - duration: 98.094052ms + - 0c9890f8-fd73-4c6f-a262-480d7e0b116e + status: 404 Not Found + code: 404 + duration: 29.830434ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 465 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "465" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ea52f30-c2ee-458f-9bdf-b8e4c772d765 - status: 404 Not Found - code: 404 - duration: 32.282795ms + - 3573c524-7ca2-43f6-a60a-8a3c38f74c89 + status: 200 OK + code: 200 + duration: 716.544288ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db18abfa-2d2a-4eaa-a7b8-5c053974c6d9 + - 9d3c4029-3e48-41cb-86d1-ebb0b3a61740 status: 200 OK code: 200 - duration: 41.319342ms + duration: 94.273696ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 475fb560-291a-45c0-b619-0a34393bf5f1 + - f480a2e3-676c-4c8c-9bb6-d6fa7e505e8d status: 200 OK code: 200 - duration: 49.891691ms + duration: 109.760989ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 873ddce5-84f4-4ccd-84a7-876cc5c2fa03 + - 6223a9db-feed-4ed6-84e7-77391d7903a1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.827869ms + duration: 111.669766ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 466 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f841771-7d22-4ae1-b716-68cb25c9979f + - 097d2eba-f1b0-48b6-ab57-e0972a9911b8 status: 200 OK code: 200 - duration: 107.456391ms + duration: 798.650582ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 466 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cec8eb1-1c29-4814-93e1-18be8c5a96c7 + - bbf22641-d666-4685-a81b-71eee8083a09 status: 200 OK code: 200 - duration: 114.970528ms + duration: 626.831117ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f2d4267-952d-451f-aab3-99e8f2c0d101 + - 2b8a1196-44de-418f-b98e-b13e0eb1f328 status: 200 OK code: 200 - duration: 50.327547ms + duration: 81.128044ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1901" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f86928e-8f4e-41de-992a-df8b4d1c5539 + - 06063791-37b5-4f06-ae11-a76d2a21cf29 status: 200 OK code: 200 - duration: 149.013072ms + duration: 148.768692ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 466 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acd31d9e-5bfe-4e87-894e-c26c8b50c18d + - ac82dc69-9f67-4fa3-9597-f06f2827337b status: 200 OK code: 200 - duration: 121.079744ms + duration: 533.224742ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -1323,20 +1323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe445a1c-290a-48e0-869b-73cf94cd1f5c + - 806814d5-4b65-417a-b494-9d46147b3d70 status: 200 OK code: 200 - duration: 52.848656ms + duration: 92.092984ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -1372,20 +1372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1901" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,10 +1393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cdca832-3922-4b71-81eb-36a94ff733b9 + - 4df3dbce-85ea-4c71-b41a-f2f2bc9c459f status: 200 OK code: 200 - duration: 101.148146ms + duration: 181.490939ms - id: 28 request: proto: HTTP/1.1 @@ -1413,7 +1413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -1423,7 +1423,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - "143" @@ -1432,9 +1432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,10 +1442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c62019c6-de26-4b7d-931e-38241653716a + - 21ed4b0a-0e9e-4805-ba1d-0050e186604d status: 404 Not Found code: 404 - duration: 37.075831ms + duration: 26.206494ms - id: 29 request: proto: HTTP/1.1 @@ -1462,7 +1462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -1470,20 +1470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,10 +1491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99f83a75-7ffa-4010-af61-858a7fe5d751 + - 274075a3-f845-40c4-9f50-097782e63a18 status: 200 OK code: 200 - duration: 111.074491ms + duration: 86.425263ms - id: 30 request: proto: HTTP/1.1 @@ -1511,7 +1511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -1519,20 +1519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 466 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1540,10 +1540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5048855-53da-42ec-adc3-db6629a74640 + - 50140e9c-95ea-4bcc-8a92-edd347868a5b status: 200 OK code: 200 - duration: 44.464097ms + duration: 395.633773ms - id: 31 request: proto: HTTP/1.1 @@ -1560,7 +1560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -1579,9 +1579,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1589,10 +1589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e2133de-a98f-4cf4-9546-3ad0a9f0b0c1 + - f097f747-b76e-47a3-871a-b49429ffd7e0 status: 200 OK code: 200 - duration: 48.502448ms + duration: 1.702357854s - id: 32 request: proto: HTTP/1.1 @@ -1609,7 +1609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -1628,11 +1628,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,12 +1640,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37c51574-3c36-480a-88fe-f5001559bf25 + - a16f84fe-5bd8-4bf7-a89e-126025427087 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.70868ms + duration: 101.68872ms - id: 33 request: proto: HTTP/1.1 @@ -1662,7 +1662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -1670,20 +1670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,10 +1691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48e3efdc-97e8-4cda-afd6-7d068bfabf88 + - 90e0949b-daed-4186-88aa-268b56999cf5 status: 200 OK code: 200 - duration: 54.344757ms + duration: 90.711297ms - id: 34 request: proto: HTTP/1.1 @@ -1711,7 +1711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -1719,20 +1719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1901" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,10 +1740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78d0f1ac-a514-4067-adca-f5e97adcb996 + - 3004fcfa-95eb-4e6d-88bd-27ef9823141a status: 200 OK code: 200 - duration: 123.5992ms + duration: 119.833336ms - id: 35 request: proto: HTTP/1.1 @@ -1760,7 +1760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -1770,7 +1770,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - "143" @@ -1779,9 +1779,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,10 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bb42235-6f37-4585-9c4d-5e89cc1e4e9a + - f45a3a86-3f6d-46e1-83d7-89ab89bed100 status: 404 Not Found code: 404 - duration: 27.235966ms + duration: 24.656901ms - id: 36 request: proto: HTTP/1.1 @@ -1809,7 +1809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -1817,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:45.709207Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,10 +1838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be0683a0-1db6-40e4-a5fa-86c56b08cd03 + - 2d2d6c69-9c4b-4e21-b79c-3ff8d2d14fac status: 200 OK code: 200 - duration: 105.834346ms + duration: 88.459016ms - id: 37 request: proto: HTTP/1.1 @@ -1858,7 +1858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -1866,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "701" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,10 +1887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af134445-d73a-408a-a1ef-c3151e03e1b7 + - 8a5ea177-c660-41a0-826c-f02433ff8784 status: 200 OK code: 200 - duration: 44.372176ms + duration: 104.247577ms - id: 38 request: proto: HTTP/1.1 @@ -1907,7 +1907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -1915,20 +1915,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,10 +1938,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b510d6ad-8537-42c6-8d11-53933eee0ab2 + - 455c805d-0ea5-4db8-a92a-a411d4a3c8e6 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 51.924564ms + duration: 91.388346ms - id: 39 request: proto: HTTP/1.1 @@ -1956,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -1964,22 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 466 uncompressed: false - body: '{"private_nics":[]}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:15.720574Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,24 +1989,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eadd0332-ed1a-40ff-bbf5-d92533909607 - X-Total-Count: - - "0" + - 108c849d-397d-41f2-a978-fb705565cb80 status: 200 OK code: 200 - duration: 51.498164ms + duration: 489.030079ms - id: 40 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 147 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"tf-snapshot-cranky-swirles","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' + body: '{"volume_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"tf-snapshot-jovial-pare","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -2019,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 470 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "470" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 098d914e-2ae8-4aae-b0dd-893b2608e1c1 + - 2e86586a-7f49-4cf9-9664-3db8a3a740ec status: 200 OK code: 200 - duration: 237.046286ms + duration: 713.173154ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +2060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2068,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1704b5ff-2496-4834-a18c-b891212d1cff + - 1cc1d608-cd1c-4857-a7e7-94903b9ffafa status: 200 OK code: 200 - duration: 130.069043ms + duration: 397.754348ms - id: 42 request: proto: HTTP/1.1 @@ -2109,7 +2109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2117,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88ea7c2f-11fb-4892-8d9c-db2990e334ec + - 8004b343-3e59-4cd9-bb6f-817929651259 status: 200 OK code: 200 - duration: 129.014667ms + duration: 525.879454ms - id: 43 request: proto: HTTP/1.1 @@ -2158,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2166,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbf3b9e2-0ce0-4994-b2de-bca4894a714e + - 76b8044b-5cd7-44f9-bf8c-62b107d74079 status: 200 OK code: 200 - duration: 238.620241ms + duration: 333.797666ms - id: 44 request: proto: HTTP/1.1 @@ -2207,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2215,20 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,10 +2236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1341cbe-4261-46cb-b41b-dc281b45c252 + - 848ef1b0-d2c6-478d-bc1b-7e37a36a2595 status: 200 OK code: 200 - duration: 352.572259ms + duration: 1.043514088s - id: 45 request: proto: HTTP/1.1 @@ -2256,7 +2256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2264,20 +2264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 701 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,10 +2285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 765c5c9f-1bc5-42bf-9942-53dc0b7be703 + - 67f6f575-391f-440a-9304-d90c0ff8a9f7 status: 200 OK code: 200 - duration: 611.515672ms + duration: 584.0572ms - id: 46 request: proto: HTTP/1.1 @@ -2305,7 +2305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2313,20 +2313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2334,10 +2334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa7bfd19-eacb-472c-8f81-2e3e10d0efcb + - e4bc6c02-6e87-438a-a96a-e2ede989f377 status: 200 OK code: 200 - duration: 263.271692ms + duration: 471.316564ms - id: 47 request: proto: HTTP/1.1 @@ -2354,7 +2354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2362,20 +2362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' headers: Content-Length: - - "704" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2383,48 +2383,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51a0a310-ec1c-433b-96b8-b644337dd2d9 + - 58cb4106-1ff7-424d-ae70-f58a228eadd9 status: 200 OK code: 200 - duration: 317.154351ms + duration: 846.488078ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 238 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-relaxed-goldstine","root_volume":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","arch":"x86_64","extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d"}},"project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "704" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:03:59 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2432,10 +2436,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cd7314e-491d-4a15-aa6d-3a358f55f759 - status: 200 OK - code: 200 - duration: 368.551553ms + - bc466e83-96ec-460f-b084-fca9c8101f0c + status: 201 Created + code: 201 + duration: 1.33953532s - id: 49 request: proto: HTTP/1.1 @@ -2452,7 +2456,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -2460,20 +2464,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 704 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:53.087879Z","id":"4a2962b4-27c0-4a52-bd07-9b9675ef94fe","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "704" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2481,10 +2485,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d68bee9e-fdc2-4335-8bd1-e2df15551974 + - c7bf0dc2-e4a6-41c6-a927-f17bba0d0513 status: 200 OK code: 200 - duration: 205.964902ms + duration: 145.578178ms - id: 50 request: proto: HTTP/1.1 @@ -2501,7 +2505,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -2509,20 +2513,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 474 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "474" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:40 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,10 +2534,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c158193-71f1-4b44-b300-46d6928dda22 + - 2fc9111a-b003-49ca-aba3-b4942c06a80a status: 200 OK code: 200 - duration: 157.906093ms + duration: 109.480134ms - id: 51 request: proto: HTTP/1.1 @@ -2550,7 +2554,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -2558,20 +2562,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 474 + content_length: 422 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:53.038798Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "474" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,52 +2583,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9a1cf93-0c7e-4031-9a35-d2030d745a44 + - 3cd5422f-8bdb-4bf6-a1d5-c41954fcea81 status: 200 OK code: 200 - duration: 149.2701ms + duration: 85.43329ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-tender-mayer","root_volume":"92ac67b7-1927-431c-a56e-e4651d925394","arch":"x86_64","extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d"}},"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1899 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2632,10 +2632,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ef19f07-28f6-4739-83ab-d9f10737da5e - status: 201 Created - code: 201 - duration: 447.592111ms + - 3c736862-0242-4de9-b0d1-4a5680c154ea + status: 200 OK + code: 200 + duration: 160.110237ms - id: 53 request: proto: HTTP/1.1 @@ -2652,7 +2652,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -2660,20 +2660,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 692 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.554665Z","id":"1195a79f-be26-43f6-a3e6-1489550257a7","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.554665Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2681,10 +2681,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44a03cd9-ebaa-45ea-9288-249d214fe064 + - 98ebdb7c-033a-4756-8c72-5a8fcf98ba14 status: 200 OK code: 200 - duration: 66.750202ms + duration: 148.810557ms - id: 54 request: proto: HTTP/1.1 @@ -2701,7 +2701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -2709,20 +2709,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 697 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2730,10 +2730,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9db2e5ac-d12f-4f2e-84d6-231d499c0b2b + - b9921cd2-05b4-4529-919e-8dfc31aa6641 status: 200 OK code: 200 - duration: 88.323465ms + duration: 159.564344ms - id: 55 request: proto: HTTP/1.1 @@ -2750,7 +2750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -2758,20 +2758,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "421" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2779,10 +2779,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5103f2e8-fe9a-4b7a-b63f-852cb6dbd1d8 + - e2878915-2e0d-4e2e-a22e-07fb69cad528 status: 200 OK code: 200 - duration: 45.114533ms + duration: 166.053179ms - id: 56 request: proto: HTTP/1.1 @@ -2799,7 +2799,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -2807,20 +2807,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 422 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "1901" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,10 +2828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3fb3f40-fcdb-45dc-a7f8-b89e7d4c0d87 + - 12422547-a19d-4434-908b-408150bcf12d status: 200 OK code: 200 - duration: 88.210306ms + duration: 107.529479ms - id: 57 request: proto: HTTP/1.1 @@ -2848,7 +2848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -2856,20 +2856,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2877,10 +2877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6086b301-5cff-4462-9469-ec3f46542670 + - 1c50373e-fa93-4200-9d45-691489b906a4 status: 200 OK code: 200 - duration: 109.181444ms + duration: 151.331925ms - id: 58 request: proto: HTTP/1.1 @@ -2897,7 +2897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -2905,20 +2905,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 143 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - - "700" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2926,10 +2926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe5200c6-28c2-4dd3-9edb-0c925180b6dd - status: 200 OK - code: 200 - duration: 198.027717ms + - 63a89735-6838-4508-a450-b4d2911c63b5 + status: 404 Not Found + code: 404 + duration: 26.783464ms - id: 59 request: proto: HTTP/1.1 @@ -2946,7 +2946,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -2954,20 +2954,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 701 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2975,10 +2975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c574d7a-885d-46ec-895a-3644e6162b65 + - 90163749-7446-4192-abe9-f58cc1a52b34 status: 200 OK code: 200 - duration: 71.097563ms + duration: 75.218193ms - id: 60 request: proto: HTTP/1.1 @@ -2995,7 +2995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -3003,20 +3003,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "421" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3024,10 +3024,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5176ed9-9f07-482a-a4cd-22b2503dbfd5 + - 1297533b-2e3f-4b8b-b658-608d813b78da status: 200 OK code: 200 - duration: 53.561376ms + duration: 94.377266ms - id: 61 request: proto: HTTP/1.1 @@ -3044,7 +3044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -3052,20 +3052,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1901" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3073,10 +3075,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb40f8d8-8fc8-4599-b3f4-57a67d1f6842 + - faab3cf5-f724-43ae-9c04-cf16d789194d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 95.233012ms + duration: 109.784195ms - id: 62 request: proto: HTTP/1.1 @@ -3093,7 +3097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -3101,20 +3105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 692 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.554665Z","id":"1195a79f-be26-43f6-a3e6-1489550257a7","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.554665Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3122,10 +3126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62675b88-3ff7-47aa-86cd-8e8d15d6b19c - status: 404 Not Found - code: 404 - duration: 29.07652ms + - 8a8743f8-0cbe-4eb9-bdcc-342d3f1bcd43 + status: 200 OK + code: 200 + duration: 739.353514ms - id: 63 request: proto: HTTP/1.1 @@ -3142,7 +3146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -3150,20 +3154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3171,10 +3175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd4fd99-a162-403a-a4b5-69bfaf8b9293 + - f029f2fc-07b6-4457-9337-c78a8cc492a9 status: 200 OK code: 200 - duration: 45.89642ms + duration: 752.832042ms - id: 64 request: proto: HTTP/1.1 @@ -3191,7 +3195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -3199,20 +3203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 691 uncompressed: false - body: '{"user_data":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3220,10 +3224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9344cc8-afca-4b3c-afc8-53c1407a9e15 + - 1d6c0324-ec7b-403f-94a7-be97679a8630 status: 200 OK code: 200 - duration: 63.000748ms + duration: 122.692222ms - id: 65 request: proto: HTTP/1.1 @@ -3240,7 +3244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -3248,20 +3252,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 422 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3269,10 +3273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf8e30f-db22-4ee7-8bd5-2c8cb862c7e9 + - efc08b13-3dde-4961-8ffc-97e78ab11561 status: 200 OK code: 200 - duration: 218.644649ms + duration: 106.575652ms - id: 66 request: proto: HTTP/1.1 @@ -3289,7 +3293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -3297,22 +3301,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1899 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3320,12 +3322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8321f050-c42d-4560-996f-9ce758dcaf75 - X-Total-Count: - - "0" + - 8fa2f223-ad4a-40e8-97d2-55fdfb753e7d status: 200 OK code: 200 - duration: 55.315013ms + duration: 150.01101ms - id: 67 request: proto: HTTP/1.1 @@ -3342,7 +3342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -3350,20 +3350,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 692 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.554665Z","id":"1195a79f-be26-43f6-a3e6-1489550257a7","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.554665Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3371,10 +3371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66ef3254-6b94-438c-9652-58a41a2c98eb + - 153a6f7b-68c2-4089-a9b6-3368efc32926 status: 200 OK code: 200 - duration: 410.364002ms + duration: 660.0863ms - id: 68 request: proto: HTTP/1.1 @@ -3391,7 +3391,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -3399,20 +3399,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 143 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - - "686" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3420,10 +3420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b4ac89-d281-4319-b0b2-ae160ec36063 - status: 200 OK - code: 200 - duration: 62.473661ms + - bfa3f681-50c5-46c4-8694-b01bd11c59c3 + status: 404 Not Found + code: 404 + duration: 1.105879557s - id: 69 request: proto: HTTP/1.1 @@ -3440,7 +3440,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -3448,20 +3448,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3469,10 +3469,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6263fea4-abde-40af-932a-75d0a7b072d1 + - 01fef336-c79e-44ff-bbe0-c5f6d948ca30 status: 200 OK code: 200 - duration: 49.421028ms + duration: 101.139584ms - id: 70 request: proto: HTTP/1.1 @@ -3489,7 +3489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -3497,20 +3497,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1901" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3518,10 +3518,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b7b53f7-7ad9-45d1-9a9f-b9844c6c22d2 + - e2a435f9-a6c9-4daa-94b7-8642cb3d3309 status: 200 OK code: 200 - duration: 98.490414ms + duration: 92.697349ms - id: 71 request: proto: HTTP/1.1 @@ -3538,7 +3538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -3546,20 +3546,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "143" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:03 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3567,10 +3569,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd1d21d7-2fdf-46f0-bd45-52f61b32fd8e - status: 404 Not Found - code: 404 - duration: 24.554224ms + - 16e8cfb4-22ed-4a5f-824e-f025ad0bd924 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 139.256322ms - id: 72 request: proto: HTTP/1.1 @@ -3587,7 +3591,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -3595,20 +3599,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3616,10 +3620,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bb7f7a-2239-4338-8e05-4d3cc0a8c698 + - abd44bd9-d4cd-46b6-859f-ca8e7ae206d4 status: 200 OK code: 200 - duration: 41.304115ms + duration: 587.618217ms - id: 73 request: proto: HTTP/1.1 @@ -3636,7 +3640,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -3644,20 +3648,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 691 uncompressed: false - body: '{"user_data":[]}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3665,50 +3669,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc484b5-715c-49e7-ae43-3c791c3a90b9 + - c12846a1-8211-43c7-9a81-b011dab8128a status: 200 OK code: 200 - duration: 56.961853ms + duration: 181.006835ms - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 154 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-volume-intelligent-meitner","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":22000000000},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 428 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3716,12 +3720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79e55ff9-f7c1-4f3f-b5b2-b088cce2556e - X-Total-Count: - - "0" + - bc665e53-55ba-45a1-bf25-d91db63e12b1 status: 200 OK code: 200 - duration: 46.714956ms + duration: 789.006583ms - id: 75 request: proto: HTTP/1.1 @@ -3738,7 +3740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -3746,20 +3748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 429 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "700" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3767,10 +3769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c78a72a-517d-4b4b-b7ae-316383903231 + - 48428068-ea27-4086-9d63-8cf212de75de status: 200 OK code: 200 - duration: 258.582674ms + duration: 94.17967ms - id: 76 request: proto: HTTP/1.1 @@ -3787,7 +3789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -3795,20 +3797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 429 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.375654Z","id":"2ccb0660-f1d2-4bb9-916e-c15214e18d99","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.375654Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3816,48 +3818,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d079be-7d8e-4a8a-b945-1184e3508eee + - b3eb8f40-4746-4513-a3fe-fb08dc7c8492 status: 200 OK code: 200 - duration: 514.504129ms + duration: 90.677725ms - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 152 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volume_id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-snapshot-vigilant-villani","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 471 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:05.527411Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3865,50 +3869,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef9461c0-9d2c-4413-af06-149d7ade0275 + - cdbbeefc-f80a-44f5-84ea-8892a69896d0 status: 200 OK code: 200 - duration: 74.850553ms + duration: 635.085123ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 145 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-kind-wiles","perf_iops":15000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":22000000000},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 471 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:05.527411Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3916,10 +3918,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3260ee0d-4dda-44c1-b6bc-0bfbec320d05 + - 7b806e19-a9e7-4e5c-9219-a6b479e8a2e8 status: 200 OK code: 200 - duration: 165.65391ms + duration: 619.347599ms - id: 79 request: proto: HTTP/1.1 @@ -3936,7 +3938,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -3944,20 +3946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:05.527411Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3965,10 +3967,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9935f49e-3dcc-470c-9a89-478a962b803e + - 2b485ac6-5a6c-4c89-939f-6fd41893d15a status: 200 OK code: 200 - duration: 38.177474ms + duration: 375.673197ms - id: 80 request: proto: HTTP/1.1 @@ -3985,7 +3987,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -3993,20 +3995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 472 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:05.527411Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:49 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4014,10 +4016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 425f67f2-5ace-4f00-89ea-1a6f4a1c267b + - 8d7dcc46-01cc-46da-816f-a04e08b6790b status: 200 OK code: 200 - duration: 43.095501ms + duration: 535.05028ms - id: 81 request: proto: HTTP/1.1 @@ -4034,7 +4036,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -4042,20 +4044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:49 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4063,50 +4065,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0b62636-e20d-41a8-b640-7e3505249512 + - 6059d172-7cd1-489c-b618-e74fb31370e7 status: 200 OK code: 200 - duration: 43.34328ms + duration: 143.881794ms - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-snapshot-lucid-perlman","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "459" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:49 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4114,48 +4114,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9069b4a7-97b0-4aa2-97d9-c9a1e87ba040 + - a38ce076-54ce-427a-891e-d2e6734d313c status: 200 OK code: 200 - duration: 206.584127ms + duration: 128.337095ms - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 131 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-image-relaxed-goldstine","arch":"x86_64","extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889"}},"tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 459 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "459" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:49 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4163,10 +4165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d67a331a-138b-4bed-94a8-32946a597a15 + - 606317a8-ee79-4ca1-8531-3b3b87cb6094 status: 200 OK code: 200 - duration: 117.949429ms + duration: 1.1529741s - id: 84 request: proto: HTTP/1.1 @@ -4183,7 +4185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -4191,20 +4193,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "460" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4212,10 +4214,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f25e9516-0fcd-4264-927b-6282e1deb1d8 + - f4e2ab17-a8c9-4aa6-81b8-5100fb4233cb status: 200 OK code: 200 - duration: 113.971209ms + duration: 142.023873ms - id: 85 request: proto: HTTP/1.1 @@ -4232,7 +4234,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -4240,20 +4242,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:49.581371Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "460" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4261,10 +4263,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db49fac1-ecdf-4753-a996-558f97b5d6fd + - 704539f8-5290-4985-8783-3c7ea30abe22 status: 200 OK code: 200 - duration: 142.563472ms + duration: 135.276004ms - id: 86 request: proto: HTTP/1.1 @@ -4281,7 +4283,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -4289,20 +4291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 422 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4310,10 +4312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0859499-6621-41a3-97d3-dad9e0f8a8db + - c36d4315-cb1d-468f-9d8e-26cddbc2bd93 status: 200 OK code: 200 - duration: 63.338489ms + duration: 85.439212ms - id: 87 request: proto: HTTP/1.1 @@ -4330,7 +4332,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -4338,20 +4340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 429 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4359,50 +4361,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dc0da93-c4d0-417f-9c0d-a7b89a4225ca + - 21f8ec36-7e1b-4e23-9ad0-fe44f01a993d status: 200 OK code: 200 - duration: 61.750128ms + duration: 84.713171ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 126 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-tender-mayer","arch":"x86_64","extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7"}},"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1899 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4410,10 +4410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7b2db38-003a-408d-9fc0-42b1ccbb7ea6 + - cf3efa8a-d685-4b28-affe-09213dfa2d3d status: 200 OK code: 200 - duration: 376.264012ms + duration: 140.614151ms - id: 89 request: proto: HTTP/1.1 @@ -4430,7 +4430,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -4438,20 +4438,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 692 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.554665Z","id":"1195a79f-be26-43f6-a3e6-1489550257a7","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":21000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.554665Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4459,10 +4459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f879f5d7-bbdd-4e59-a1e9-aa949f68fc86 + - 5475eee6-23a9-4462-818d-b64f89b0c50e status: 200 OK code: 200 - duration: 79.999274ms + duration: 1.188756654s - id: 90 request: proto: HTTP/1.1 @@ -4479,7 +4479,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -4487,20 +4487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 698 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:12.908995Z","id":"3db676f9-9f4c-4d32-8107-9e79fe13102c","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:12.908995Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4508,10 +4508,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37e71193-2880-4da7-9d3f-432a09730791 + - 5612c1ec-2b42-41dc-a079-75132c4beb03 status: 200 OK code: 200 - duration: 95.484373ms + duration: 1.314878202s - id: 91 request: proto: HTTP/1.1 @@ -4528,7 +4528,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -4536,20 +4536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4557,10 +4557,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbdd5950-cb0a-4abb-b68e-850ed4c2e96b + - 53c273ed-4f02-497e-b397-62c94a1c236a status: 200 OK code: 200 - duration: 47.422634ms + duration: 777.72577ms - id: 92 request: proto: HTTP/1.1 @@ -4577,7 +4577,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -4585,20 +4585,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "420" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4606,10 +4606,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e46d89c-44b8-4b73-8734-90c9b634e095 + - 0b63415f-de7d-44ed-9753-86909a166fb8 status: 200 OK code: 200 - duration: 37.996328ms + duration: 126.834313ms - id: 93 request: proto: HTTP/1.1 @@ -4626,7 +4626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -4634,20 +4634,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 422 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "1901" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4655,10 +4655,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 965e7675-f082-4f1e-9706-6600eb993eae + - 7cd49bb9-756e-4807-9946-94d3cf351ed1 status: 200 OK code: 200 - duration: 110.263272ms + duration: 79.203115ms - id: 94 request: proto: HTTP/1.1 @@ -4675,7 +4675,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -4683,20 +4683,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 429 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4704,10 +4704,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61c09441-5055-4a01-86b4-6f6ca0fd2715 + - fa470e09-b99d-41eb-8ac3-0bba43710685 status: 200 OK code: 200 - duration: 119.477266ms + duration: 91.574136ms - id: 95 request: proto: HTTP/1.1 @@ -4724,7 +4724,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -4732,20 +4732,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:55.306042Z","id":"f4cef03a-a25c-4fbf-9bc0-c0b3e5f512c3","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:55.306042Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4753,10 +4753,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2c9023c-a30a-4d5b-8666-32359182e23e + - 38a713ac-f003-4917-a872-bfadbc0621ce status: 200 OK code: 200 - duration: 95.074011ms + duration: 148.537369ms - id: 96 request: proto: HTTP/1.1 @@ -4773,7 +4773,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -4781,20 +4781,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 143 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - - "700" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4802,10 +4802,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e718e969-16db-4fae-a9ff-487e796ab74e - status: 200 OK - code: 200 - duration: 131.522152ms + - 83cb37e1-0d4e-46e2-bd49-a0b9b7c0d3cb + status: 404 Not Found + code: 404 + duration: 26.165089ms - id: 97 request: proto: HTTP/1.1 @@ -4822,7 +4822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -4830,20 +4830,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 701 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:09.371140Z","id":"5282855d-c95e-48fa-8c1e-a11f06300853","product_resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:09.371140Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4851,10 +4851,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f252f1e6-3686-48d7-85c4-192ea44ec094 + - 38db5df4-d740-4b47-abb9-240a2a31ff4d status: 200 OK code: 200 - duration: 66.209716ms + duration: 250.239129ms - id: 98 request: proto: HTTP/1.1 @@ -4871,7 +4871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/user_data method: GET response: proto: HTTP/2.0 @@ -4879,20 +4879,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "420" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4900,10 +4900,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0adbcae-3691-4c0c-884d-927e56dfddcd + - f46f18f9-6b40-48c5-9646-caea1451b8ef status: 200 OK code: 200 - duration: 42.848094ms + duration: 120.033064ms - id: 99 request: proto: HTTP/1.1 @@ -4920,7 +4920,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/private_nics method: GET response: proto: HTTP/2.0 @@ -4928,20 +4928,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "421" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:18 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4949,10 +4951,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77f9ef80-96a4-4c24-a108-905b70eb12bf + - cb9c496c-c4a1-4281-8aed-2724c30fe1a9 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 45.803697ms + duration: 92.314884ms - id: 100 request: proto: HTTP/1.1 @@ -4969,7 +4973,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -4977,20 +4981,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 466 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:13.956984Z","zone":"fr-par-1"}' headers: Content-Length: - - "1901" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4998,10 +5002,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f11005cd-e399-44a0-bdfd-754aeaef05d4 + - af03d114-519e-49af-8226-6eddb1172fd1 status: 200 OK code: 200 - duration: 104.483749ms + duration: 870.174754ms - id: 101 request: proto: HTTP/1.1 @@ -5018,7 +5022,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -5026,20 +5030,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 698 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:12.908995Z","id":"3db676f9-9f4c-4d32-8107-9e79fe13102c","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:12.908995Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5047,10 +5051,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 623205de-9c18-4379-b0dd-ba6b02f26afc - status: 404 Not Found - code: 404 - duration: 36.31355ms + - 3116635f-9b5a-47e1-963e-497275043a4e + status: 200 OK + code: 200 + duration: 856.433374ms - id: 102 request: proto: HTTP/1.1 @@ -5067,7 +5071,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -5075,20 +5079,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 697 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:40.777542Z","id":"a27ffcf6-0e0a-403e-8dc2-9a8410d4de69","product_resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.777542Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5096,10 +5100,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dea8bac3-a5ff-4363-b0f8-7ea0dd1b7f8c + - f6f80b4b-4157-4606-95f1-03daa708c344 status: 200 OK code: 200 - duration: 57.398408ms + duration: 483.677686ms - id: 103 request: proto: HTTP/1.1 @@ -5116,7 +5120,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -5124,20 +5128,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "460" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5145,10 +5149,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2417d11-f6ce-4578-b284-45611d74ec75 + - f07a59d1-8fd0-4978-8028-a9d406b01d58 status: 200 OK code: 200 - duration: 152.313304ms + duration: 122.373423ms - id: 104 request: proto: HTTP/1.1 @@ -5165,7 +5169,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -5173,20 +5177,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 691 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:55.306042Z","id":"f4cef03a-a25c-4fbf-9bc0-c0b3e5f512c3","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:55.306042Z","zone":"fr-par-1"}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.959079+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","modification_date":"2025-10-15T15:03:57.959079+00:00","name":"tf-image-relaxed-goldstine","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5194,10 +5198,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5883a85d-b9d3-4f39-a9e0-4f2c0e5a3608 + - 17cf50b6-ddb2-4e16-8134-af80f4186f73 status: 200 OK code: 200 - duration: 155.918151ms + duration: 120.268256ms - id: 105 request: proto: HTTP/1.1 @@ -5214,7 +5218,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -5222,20 +5226,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 466 uncompressed: false - body: '{"user_data":[]}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:15.720574Z","id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","name":"tf-snapshot-boring-chaplygin","parent_volume":{"id":"c312ac33-5ca5-477b-8d00-28a444c676aa","name":"tf-volume-tender-volhard","status":"available","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:13.956984Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5243,10 +5247,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd89d006-acb4-4e36-acaa-80727b1c38ed + - 350595cb-da65-4f9f-ab84-2b700058965e status: 200 OK code: 200 - duration: 67.799451ms + duration: 594.617409ms - id: 106 request: proto: HTTP/1.1 @@ -5263,30 +5267,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/private_nics - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 0 uncompressed: false - body: '{"private_nics":[]}' + body: "" headers: - Content-Length: - - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:56 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5294,12 +5294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404055db-1ba2-417a-bc70-04bbf2c77a43 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 63.050618ms + - 007360d3-05fd-4f2e-a4cd-da48c852cc62 + status: 204 No Content + code: 204 + duration: 517.958865ms - id: 107 request: proto: HTTP/1.1 @@ -5316,7 +5314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -5324,20 +5322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 142 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","type":"not_found"}' headers: Content-Length: - - "700" + - "142" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5345,10 +5343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 365ec096-a95c-4d9a-841b-d51b7d7729ba - status: 200 OK - code: 200 - duration: 110.152165ms + - f3b288dd-f245-4da7-9c9f-de73a3218526 + status: 404 Not Found + code: 404 + duration: 28.453479ms - id: 108 request: proto: HTTP/1.1 @@ -5365,7 +5363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -5373,20 +5371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 697 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:58.000014Z","id":"cdd44312-591c-4775-9997-a8464752fb40","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:58.000014Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "697" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5394,10 +5392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d295af3a-0afd-4c93-9b18-a9493ed04976 + - 3c0a77f4-ab15-42ed-97c3-ad0b9ee35e9a status: 200 OK code: 200 - duration: 88.042238ms + duration: 438.771891ms - id: 109 request: proto: HTTP/1.1 @@ -5414,7 +5412,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -5422,20 +5420,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 698 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:41.216487+00:00","default_bootscript":null,"extra_volumes":{"1":{"id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"","size":0,"volume_type":"sbs_snapshot"}},"from_server":"","id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","modification_date":"2025-10-08T23:06:41.216487+00:00","name":"tf-image-tender-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:12.908995Z","id":"3db676f9-9f4c-4d32-8107-9e79fe13102c","product_resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":22000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:04:12.908995Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5443,10 +5441,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25b049a2-1d6f-4965-8983-ab93ada80ce1 + - 2f677846-9fb7-49ec-afae-f054e4651596 status: 200 OK code: 200 - duration: 80.98ms + duration: 446.33538ms - id: 110 request: proto: HTTP/1.1 @@ -5463,56 +5461,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 460 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:45.709207Z","id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","name":"tf-snapshot-happy-gates","parent_volume":{"id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","name":"tf-volume-musing-curran","status":"available","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:55.634364Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "460" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d889064b-f6a3-419a-ae3f-70ae9bc72410 - status: 200 OK - code: 200 - duration: 127.012339ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: DELETE response: proto: HTTP/2.0 @@ -5529,9 +5478,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5539,11 +5488,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfae92a3-8fa4-420b-8682-50c5b3d963d1 + - a755c27c-1316-4404-97fc-b1a8efa3a366 status: 204 No Content code: 204 - duration: 138.229102ms - - id: 112 + duration: 535.161654ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5559,7 +5508,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: GET response: proto: HTTP/2.0 @@ -5569,7 +5518,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","type":"not_found"}' headers: Content-Length: - "129" @@ -5578,9 +5527,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5588,11 +5537,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8c91155-26c6-47f5-b337-1a6ec30e6cc0 + - 28c3b5fe-632e-4355-9f8f-07b0c26f8b28 status: 404 Not Found code: 404 - duration: 49.141548ms - - id: 113 + duration: 75.881589ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5608,7 +5557,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -5616,20 +5565,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.399878Z","id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","last_detached_at":null,"name":"tf-volume-musing-curran","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:40.399878Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:08.657171Z","id":"c312ac33-5ca5-477b-8d00-28a444c676aa","last_detached_at":null,"name":"tf-volume-tender-volhard","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":21000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:08.657171Z","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5637,11 +5586,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9eb626a-c96d-4455-9565-24bbac76996f + - 48a3accd-5a99-4ac1-8da8-c095393c5fec status: 200 OK code: 200 - duration: 44.486567ms - - id: 114 + duration: 88.297585ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5657,7 +5606,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: DELETE response: proto: HTTP/2.0 @@ -5674,9 +5623,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5684,11 +5633,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4195c291-3e18-4b03-966e-67428dba22f4 + - 84640118-b95c-417f-ac6a-fde251dbfab5 status: 204 No Content code: 204 - duration: 81.54681ms - - id: 115 + duration: 150.551989ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5704,7 +5653,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: GET response: proto: HTTP/2.0 @@ -5714,7 +5663,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","type":"not_found"}' headers: Content-Length: - "127" @@ -5723,9 +5672,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:57 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5733,58 +5682,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19bb91ff-6946-481a-b414-d1400ab6c481 + - 719e555f-de2b-4914-88fa-f880379da7dc status: 404 Not Found code: 404 - duration: 75.782184ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8ebe89e2-1dd5-4b68-bf3f-af993c78ba28 - status: 204 No Content - code: 204 - duration: 460.116078ms - - id: 117 + duration: 105.029662ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5800,7 +5702,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -5808,20 +5710,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 142 + content_length: 471 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","type":"not_found"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:20.368244Z","zone":"fr-par-1"}' headers: Content-Length: - - "142" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5829,11 +5731,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1a2c618-4038-44dd-a303-3ce4b22e7cf4 - status: 404 Not Found - code: 404 - duration: 36.249222ms - - id: 118 + - 5be25726-7341-4220-8355-eb3330cb72dd + status: 200 OK + code: 200 + duration: 664.749824ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5849,7 +5751,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -5857,20 +5759,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 472 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:06:49.581371Z","id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","name":"tf-snapshot-lucid-perlman","parent_volume":{"id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","name":"tf-volume-kind-wiles","status":"available","type":"sbs_15k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:57.997385Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:05.527411Z","id":"6fb2faf1-07e8-41fd-9c72-82893d486889","name":"tf-snapshot-vigilant-villani","parent_volume":{"id":"911959ef-ca14-4d82-8371-e6528ccaa28b","name":"tf-volume-intelligent-meitner","status":"available","type":"sbs_15k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:20.298346Z","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5878,11 +5780,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec6c1875-f347-4ff8-abb7-451a120422ee + - 76fc341c-bc90-456a-8073-530d43166196 status: 200 OK code: 200 - duration: 142.663083ms - - id: 119 + duration: 667.62771ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5898,28 +5800,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 700 + content_length: 0 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:41.251194Z","id":"ce3c2970-0ce9-4ad0-9b84-d59f4207ece0","product_resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:41.251194Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "700" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5927,11 +5827,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66ce75fa-1156-41ab-a440-f7a0a36c4f22 - status: 200 OK - code: 200 - duration: 142.76951ms - - id: 120 + - 69a0849e-a3c0-45a1-8ad7-fbf4c26d56ac + status: 204 No Content + code: 204 + duration: 441.051345ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5947,7 +5847,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: DELETE response: proto: HTTP/2.0 @@ -5964,9 +5864,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5974,11 +5874,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1758da79-e557-4d9b-a256-79c97a82e4c9 + - c48996a5-4f24-4749-9853-56d89139c735 status: 204 No Content code: 204 - duration: 148.268795ms - - id: 121 + duration: 430.826116ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5994,7 +5894,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: GET response: proto: HTTP/2.0 @@ -6004,7 +5904,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"6fb2faf1-07e8-41fd-9c72-82893d486889","type":"not_found"}' headers: Content-Length: - "129" @@ -6013,9 +5913,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6023,11 +5923,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 626a7ccd-686b-4c83-b436-2adb3ccfd49d + - 63e38859-25e2-4df9-9df6-1fb7634ccedb status: 404 Not Found code: 404 - duration: 41.20548ms - - id: 122 + duration: 68.925943ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6043,7 +5943,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: GET response: proto: HTTP/2.0 @@ -6051,67 +5951,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 129 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:44.248595Z","id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","last_detached_at":null,"name":"tf-volume-kind-wiles","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:44.248595Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","type":"not_found"}' headers: Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:58 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65640220-3929-4312-80fc-27bd7b90281d - status: 200 OK - code: 200 - duration: 35.263636ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: + - "129" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6119,11 +5972,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c157253-9f61-48b5-84d5-f0761abaeeca - status: 204 No Content - code: 204 - duration: 71.464057ms - - id: 124 + - 8f8e398a-c1c0-4789-b44e-e23e657cfe15 + status: 404 Not Found + code: 404 + duration: 77.801522ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6139,7 +5992,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -6147,20 +6000,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 429 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:04:04.460826Z","id":"911959ef-ca14-4d82-8371-e6528ccaa28b","last_detached_at":null,"name":"tf-volume-intelligent-meitner","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":22000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:04:04.460826Z","zone":"fr-par-1"}' headers: Content-Length: - - "127" + - "429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:58 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6168,11 +6021,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 895b6e59-4c7e-4384-8345-fe4e1c9712dc - status: 404 Not Found - code: 404 - duration: 31.583942ms - - id: 125 + - feb7be58-7d41-4e5e-a30e-382262ef390c + status: 200 OK + code: 200 + duration: 84.878349ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6188,7 +6041,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -6196,20 +6049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 474 + content_length: 1899 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:53.038798Z","id":"92ac67b7-1927-431c-a56e-e4651d925394","name":"tf-snapshot-cranky-swirles","parent_volume":{"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:58.070784Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "474" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6217,11 +6070,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c87a896-50ef-490f-94dd-4869af63face + - 4d29f6ac-650c-4cc2-866a-54800c1aa89b status: 200 OK code: 200 - duration: 432.5829ms - - id: 126 + duration: 141.998741ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6237,7 +6090,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: DELETE response: proto: HTTP/2.0 @@ -6254,9 +6107,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6264,11 +6117,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 781dd86c-0c8c-43f1-8e22-ab305bae83f5 + - e32bc20b-1159-4bde-b8f9-911f9243ac31 status: 204 No Content code: 204 - duration: 295.243488ms - - id: 127 + duration: 173.234859ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6284,7 +6137,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -6292,20 +6145,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 1899 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"92ac67b7-1927-431c-a56e-e4651d925394","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:03:14.578715+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "129" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6313,11 +6166,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c1bc0bb-7a60-4c49-a14b-9a8c8874f56d - status: 404 Not Found - code: 404 - duration: 36.960097ms - - id: 128 + - 31429eaf-0778-4b7b-9460-a984023414d6 + status: 200 OK + code: 200 + duration: 178.06252ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6333,7 +6186,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: GET response: proto: HTTP/2.0 @@ -6341,20 +6194,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1901 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:05:44.029747+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"911959ef-ca14-4d82-8371-e6528ccaa28b","type":"not_found"}' headers: Content-Length: - - "1901" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:04 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6362,11 +6215,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d84f7a14-1a6f-4912-9d6b-e91812934fe8 - status: 200 OK - code: 200 - duration: 111.242061ms - - id: 129 + - bc6b0ada-e748-41aa-9620-445a9bdf3723 + status: 404 Not Found + code: 404 + duration: 98.382766ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6384,7 +6237,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/action method: POST response: proto: HTTP/2.0 @@ -6394,7 +6247,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3/action","href_result":"/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3","id":"3ce08eeb-2231-4d9f-956e-10403a5e8513","progress":0,"started_at":"2025-10-08T23:07:04.518311+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/31731a14-c18c-437b-ac5d-1dad59a6e124/action","href_result":"/servers/31731a14-c18c-437b-ac5d-1dad59a6e124","id":"b0b70986-0ed2-4a63-a141-0e9fb87a47c2","progress":0,"started_at":"2025-10-15T15:04:27.563864+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -6403,11 +6256,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:04 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3ce08eeb-2231-4d9f-956e-10403a5e8513 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0b70986-0ed2-4a63-a141-0e9fb87a47c2 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6415,11 +6268,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12e1b8fe-28d2-497f-93b0-803d9fbe6bdf + - 888a0b5d-a66e-4e98-b059-8a1a5a34a9f7 status: 202 Accepted code: 202 - duration: 428.192938ms - - id: 130 + duration: 272.090332ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6435,7 +6288,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -6443,20 +6296,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1864 + content_length: 1862 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:40.685532+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-cool-sutherland","id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"108","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b3","maintenances":[],"modification_date":"2025-10-08T23:07:04.148380+00:00","name":"tf-srv-cool-sutherland","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:09.237961+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-galois","id":"31731a14-c18c-437b-ac5d-1dad59a6e124","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"301","node_id":"98","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:15","maintenances":[],"modification_date":"2025-10-15T15:04:27.344995+00:00","name":"tf-srv-reverent-galois","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1864" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:04 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6464,11 +6317,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c93c40a-6058-4306-9a0d-de078a4fba06 + - 0653195f-e35e-4b1c-9c1a-f8d0f5619912 status: 200 OK code: 200 - duration: 98.220747ms - - id: 131 + duration: 119.675533ms + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6484,7 +6337,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -6494,7 +6347,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","type":"not_found"}' headers: Content-Length: - "143" @@ -6503,9 +6356,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6513,11 +6366,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f392b314-be36-4bfd-9cba-d788c6002331 + - 75b5f354-5993-4658-847b-1ff67d51ee7f status: 404 Not Found code: 404 - duration: 44.839969ms - - id: 132 + duration: 39.24309ms + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6533,7 +6386,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -6543,7 +6396,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","type":"not_found"}' headers: Content-Length: - "143" @@ -6552,9 +6405,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6562,11 +6415,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68f25565-776d-452a-b800-0f7a755ad63d + - afdbd84c-c8c9-415c-85b5-be094b082e69 status: 404 Not Found code: 404 - duration: 29.093398ms - - id: 133 + duration: 36.462156ms + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6582,7 +6435,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: GET response: proto: HTTP/2.0 @@ -6592,7 +6445,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:40.777542Z","id":"7dffeee6-16b9-4e18-8716-d0e06e012a61","last_detached_at":"2025-10-08T23:07:06.013843Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:06.013843Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:09.371140Z","id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","last_detached_at":"2025-10-15T15:04:29.361963Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:29.361963Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -6601,9 +6454,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6611,11 +6464,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50222838-0b55-4caa-8a4a-fb3c8d6adb1f + - 6b1cbc9c-9f08-4003-88f0-27f7f16fa928 status: 200 OK code: 200 - duration: 42.263848ms - - id: 134 + duration: 70.284544ms + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6631,7 +6484,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7dffeee6-16b9-4e18-8716-d0e06e012a61 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4ff80ffa-2ea3-4e3f-b057-2b96e87032ae method: DELETE response: proto: HTTP/2.0 @@ -6648,9 +6501,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6658,11 +6511,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05370d79-66d6-49b2-b71e-b4275ff10a17 + - 417e503e-3c62-4856-8474-829175642121 status: 204 No Content code: 204 - duration: 69.989433ms - - id: 135 + duration: 165.917729ms + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6678,7 +6531,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/0cc9439d-a2ab-4799-9223-a6c89be7d5c3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/f2e96ba0-d810-4afd-ae3f-69a5fc7091ea method: GET response: proto: HTTP/2.0 @@ -6688,7 +6541,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"0cc9439d-a2ab-4799-9223-a6c89be7d5c3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"f2e96ba0-d810-4afd-ae3f-69a5fc7091ea","type":"not_found"}' headers: Content-Length: - "142" @@ -6697,9 +6550,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6707,11 +6560,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75322656-26e2-408e-bbe5-4a32db07748c + - f7e0e951-b08f-4941-8a7b-4e5cf0f4319c status: 404 Not Found code: 404 - duration: 27.559718ms - - id: 136 + duration: 34.782678ms + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6727,7 +6580,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/3b900f53-f503-478e-a7cc-0ec2de63c27d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/6fb2faf1-07e8-41fd-9c72-82893d486889 method: DELETE response: proto: HTTP/2.0 @@ -6737,7 +6590,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"3b900f53-f503-478e-a7cc-0ec2de63c27d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"6fb2faf1-07e8-41fd-9c72-82893d486889","type":"not_found"}' headers: Content-Length: - "129" @@ -6746,9 +6599,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6756,11 +6609,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbfdb410-dddd-44ae-9851-9309cd241926 + - 6d8bd6b0-2c72-4e6b-8b2c-27a665a4ca9e status: 404 Not Found code: 404 - duration: 63.124109ms - - id: 137 + duration: 235.376026ms + - id: 134 request: proto: HTTP/1.1 proto_major: 1 @@ -6776,7 +6629,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/02264846-4c59-4a9f-9bd1-54ddcd3471e7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a method: DELETE response: proto: HTTP/2.0 @@ -6786,7 +6639,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"02264846-4c59-4a9f-9bd1-54ddcd3471e7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","type":"not_found"}' headers: Content-Length: - "129" @@ -6795,9 +6648,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6805,11 +6658,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15f3ffd7-adf8-4348-a0ce-96bc0c4e4f89 + - fc063947-a6a0-426e-97a5-2c06549b286b status: 404 Not Found code: 404 - duration: 62.734077ms - - id: 138 + duration: 156.480257ms + - id: 135 request: proto: HTTP/1.1 proto_major: 1 @@ -6825,7 +6678,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/92ac67b7-1927-431c-a56e-e4651d925394 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/cc5f71ff-df3b-4dc3-b21c-fe9565ec554d method: DELETE response: proto: HTTP/2.0 @@ -6835,7 +6688,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"92ac67b7-1927-431c-a56e-e4651d925394","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"cc5f71ff-df3b-4dc3-b21c-fe9565ec554d","type":"not_found"}' headers: Content-Length: - "129" @@ -6844,9 +6697,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6854,11 +6707,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d83f1bca-1fb9-4b14-a679-07fa2dd55824 + - 48c43181-a934-4d2b-a9ca-300b20bbe7c1 status: 404 Not Found code: 404 - duration: 59.392688ms - - id: 139 + duration: 142.893205ms + - id: 136 request: proto: HTTP/1.1 proto_major: 1 @@ -6874,7 +6727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ab565e65-d687-4db6-b68d-bd2bfa3f4fbb + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c312ac33-5ca5-477b-8d00-28a444c676aa method: DELETE response: proto: HTTP/2.0 @@ -6884,7 +6737,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"ab565e65-d687-4db6-b68d-bd2bfa3f4fbb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c312ac33-5ca5-477b-8d00-28a444c676aa","type":"not_found"}' headers: Content-Length: - "127" @@ -6893,9 +6746,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6903,11 +6756,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eef5623-2f9a-4b2a-81ac-45ec3c0dd6c3 + - 078fc65f-722f-46f7-ac7b-5aa23cd368ea status: 404 Not Found code: 404 - duration: 56.345307ms - - id: 140 + duration: 167.271138ms + - id: 137 request: proto: HTTP/1.1 proto_major: 1 @@ -6923,7 +6776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/859ed7a1-e11d-4125-9f37-60bc118bedf6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/911959ef-ca14-4d82-8371-e6528ccaa28b method: DELETE response: proto: HTTP/2.0 @@ -6933,7 +6786,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"859ed7a1-e11d-4125-9f37-60bc118bedf6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"911959ef-ca14-4d82-8371-e6528ccaa28b","type":"not_found"}' headers: Content-Length: - "127" @@ -6942,9 +6795,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6952,11 +6805,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a9ee1fd-e1f7-41c9-b0c7-0698ab56ae43 + - 4d1b1fde-9628-4b06-9b47-e46c205c189c status: 404 Not Found code: 404 - duration: 60.933613ms - - id: 141 + duration: 181.14108ms + - id: 138 request: proto: HTTP/1.1 proto_major: 1 @@ -6972,7 +6825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/7d478eb5-d135-434e-81e3-2b256f68c6e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/31731a14-c18c-437b-ac5d-1dad59a6e124 method: GET response: proto: HTTP/2.0 @@ -6982,7 +6835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"7d478eb5-d135-434e-81e3-2b256f68c6e3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"31731a14-c18c-437b-ac5d-1dad59a6e124","type":"not_found"}' headers: Content-Length: - "143" @@ -6991,9 +6844,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7001,7 +6854,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3b0cd21-548a-47e3-a370-98964084a83f + - 818aca0e-3c7a-424f-ba25-7338f60ce5d2 status: 404 Not Found code: 404 - duration: 52.633652ms + duration: 46.224238ms diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml index 3dfadfdf4..da4c1f401 100644 --- a/internal/services/instance/testdata/image-server.cassette.yaml +++ b/internal/services/instance/testdata/image-server.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00250e1-07b8-4b82-a7b3-e5d80f2ec560 + - 117ed2e0-26c3-49a3-8f1f-49028f8f4504 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 88.630402ms + duration: 35.874552ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b9a54ae-c7de-4818-b5ae-464ae7eb5e9c + - df613a73-c02a-4954-bffb-62c350602cbb X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.377184ms + duration: 47.566414ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de2f1997-fb4d-4213-82ce-389cb343e2ec + - 092a4e02-4f9f-48a5-b5d8-72d27e23cdc4 status: 200 OK code: 200 - duration: 39.416738ms + duration: 46.86512ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 236 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-dazzling-khorana","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-dazzling-panini","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:20.876900+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeda2ae1-8f63-470e-838b-fc4c6605aef7 + - f4f813a9-c250-4e11-bfb1-9e8e48e532c2 status: 201 Created code: 201 - duration: 548.038908ms + duration: 955.812063ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:20.876900+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74e7188d-2546-4946-96e5-3441788c6a6c + - 13a38b37-49bc-4f6e-af9a-b47657578e75 status: 200 OK code: 200 - duration: 89.288169ms + duration: 132.908594ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1740 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:51.430155+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:20.876900+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1740" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c2ab768-0346-469e-855c-8987f980b2af + - 790ecc87-611f-41a7-bc97-4503d1bbebb5 status: 200 OK code: 200 - duration: 105.97112ms + duration: 129.801722ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:20.998738Z","id":"0d5a53dd-6fe5-442b-a5cb-44bcf87f0c0b","product_resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:20.998738Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8dbddb8-6dcd-4c88-9a24-6fcabe55bd1d + - 9798e5fe-d428-4120-b40f-281550e4bc25 status: 200 OK code: 200 - duration: 55.687324ms + duration: 87.706922ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action","href_result":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","id":"5d9574a9-2d80-4b43-af48-577515d1b526","progress":0,"started_at":"2025-10-08T23:05:52.415270+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/290e3695-3812-41ae-8c8e-0da8937db71a/action","href_result":"/servers/290e3695-3812-41ae-8c8e-0da8937db71a","id":"bb163863-27d8-40a0-b4b9-d5ab1d20a794","progress":0,"started_at":"2025-10-15T15:03:21.885694+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d9574a9-2d80-4b43-af48-577515d1b526 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb163863-27d8-40a0-b4b9-d5ab1d20a794 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8decc10c-f8d0-4f42-8d71-c219262eea4a + - 39932a1b-2563-49a9-8824-f9892ea0cd03 status: 202 Accepted code: 202 - duration: 388.398329ms + duration: 269.201502ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1764 + content_length: 1762 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:52.081220+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:21.678220+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1764" + - "1762" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:52 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 581f2a9b-fbe6-4df9-8189-9025ebf63ab8 + - 3d8c81a0-195a-403b-8a43-385ee83ebb52 status: 200 OK code: 200 - duration: 83.502874ms + duration: 172.866881ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff13754c-40d2-42ec-b472-5f7a07e45798 + - 072ddf98-32b7-471c-9491-37a6dbdefce4 status: 200 OK code: 200 - duration: 106.740902ms + duration: 169.482467ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67649618-bb02-4300-a1cb-c20077887ab4 + - 2e3787d4-1302-437e-b7d8-0e2216f4d0df status: 200 OK code: 200 - duration: 102.332497ms + duration: 166.769914ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e9b347d-b21e-42c5-8147-63f875948b26 + - 1483899f-a466-4bb5-ae4a-216e8ae3902a status: 404 Not Found code: 404 - duration: 33.413357ms + duration: 33.035323ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:20.998738Z","id":"0d5a53dd-6fe5-442b-a5cb-44bcf87f0c0b","product_resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:20.998738Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8d59492-d90e-42c3-bdd2-48d0f1b93707 + - 488ee6b8-43be-48bc-9d9b-e9230315dbc9 status: 200 OK code: 200 - duration: 52.626864ms + duration: 120.112549ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2f5db0d-7e0e-4fcc-8766-3df2f4981b0b + - 72813366-212f-46f7-900c-a0d338cd30fb status: 200 OK code: 200 - duration: 51.011863ms + duration: 107.85128ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,24 +750,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f0ea02a-5db5-4be6-afbd-af20df8682e1 + - 5e02cbde-38d7-49e0-a538-1a46763cc838 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 72.749455ms + duration: 98.231251ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 155 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"d6387d09-1017-4c84-a841-599e71585f54","name":"tf-snapshot-compassionate-rubin","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' + body: '{"volume_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"tf-snapshot-keen-murdock","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -782,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 471 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "471" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7508a6a3-6200-44b6-b0d6-85d94b75241c + - f888e8f1-f173-4633-abb0-e27887df8816 status: 200 OK code: 200 - duration: 235.327898ms + duration: 789.653411ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -831,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 702 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70e4e02-f49e-4883-a132-0089b883e66c + - ab20ae43-2f87-4f23-bdb2-e2f51e747b80 status: 200 OK code: 200 - duration: 148.577281ms + duration: 393.715959ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 702 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d82bc40f-f5c3-4f06-ad34-ff78294c6019 + - a6744ae0-5f8b-41b5-8c69-8dd55a77baf2 status: 200 OK code: 200 - duration: 242.892965ms + duration: 529.364937ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -929,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 702 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94e65a5d-b201-4e7d-a9fc-611d84bacc27 + - 871df3d3-18ec-46ba-98c3-c881ad63f79c status: 200 OK code: 200 - duration: 439.335066ms + duration: 334.309005ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -978,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 702 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dd1f7ff-c467-430e-bebc-995794e09892 + - 01aa5e2c-d9d3-464f-80fc-6ba3d8954dc1 status: 200 OK code: 200 - duration: 610.200686ms + duration: 1.042453049s - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -1027,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 702 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "702" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6109204-60d3-4a2b-9237-7b8a7240837a + - 14cb1778-837c-4ab1-bd33-765064fa9f63 status: 200 OK code: 200 - duration: 266.11615ms + duration: 584.263246ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -1076,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 709 + content_length: 472 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:58.107139Z","id":"3a97a528-8975-41e9-94ef-69020feab6c7","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "709" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f29018e-3447-4b05-97ee-5977196e8f4d + - 72fff2d6-9fe3-4734-9a3a-a8426a1e0f18 status: 200 OK code: 200 - duration: 316.59231ms + duration: 467.631656ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -1125,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 472 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,71 +1146,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fccbc8ea-0cd5-4dd2-a2c7-e72c958faad4 + - 2f62eccf-02bc-49ce-b74f-4b73c174c77f status: 200 OK code: 200 - duration: 368.755681ms + duration: 852.078237ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 479 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:05:58.054632Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "479" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 923ac514-2ab2-4c6a-b59f-b2e7c1920f69 - status: 200 OK - code: 200 - duration: 128.837292ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 198 + content_length: 199 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-unruffled-keldysh","root_volume":"7c04256d-ce96-4195-ae92-01c45f334af7","arch":"x86_64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["test_remove_tags"],"public":false}' + body: '{"name":"tf-image-magical-heisenberg","root_volume":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","arch":"x86_64","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test_remove_tags"],"public":false}' form: {} headers: Content-Type: @@ -1225,22 +1176,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,11 +1199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e65fd24-03d0-451e-ac2d-db35440ba354 + - 5f7ce4f8-eba1-4f58-8dce-b480502d11f2 status: 201 Created code: 201 - duration: 554.908594ms - - id: 25 + duration: 800.104722ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1268,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,11 +1248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0272b294-9d90-4762-a913-ab77edb50ce7 + - 696d0a59-4570-44e4-915a-486a8d7c175d status: 200 OK code: 200 - duration: 66.09474ms - - id: 26 + duration: 121.393043ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1317,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -1325,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,11 +1297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6d709e7-3c34-4b48-aa8c-ebda67be262b + - ccf04e8a-eb5d-4e78-80ec-bbd0da5e1b21 status: 200 OK code: 200 - duration: 75.123823ms - - id: 27 + duration: 101.642182ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1366,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -1374,20 +1325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,11 +1346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d8ccd92-4ac7-43fc-b4b5-b062b2678bca + - 0b1e7b3c-dcdc-4ca8-83bc-28fb2e3b60bb status: 200 OK code: 200 - duration: 103.625368ms - - id: 28 + duration: 181.846049ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1415,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -1423,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,11 +1395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c7d1e55-6d0e-4b23-9e3c-039c5cb23cb0 + - 3f149822-76eb-424f-beaf-609ac046886c status: 200 OK code: 200 - duration: 128.575397ms - - id: 29 + duration: 255.045479ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1464,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -1472,20 +1423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,11 +1444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b061aa1-b97a-451c-89fd-a00c153f976f + - bf616cea-6004-48fa-81e2-647102d399f8 status: 200 OK code: 200 - duration: 63.21125ms - - id: 30 + duration: 112.899564ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1513,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -1521,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,11 +1493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24ddb214-c96c-4b3f-a9c8-5db46cc82912 + - bde34574-5fc0-40a6-9bd7-764b1de1a688 status: 200 OK code: 200 - duration: 101.064966ms - - id: 31 + duration: 162.39509ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1562,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -1572,7 +1523,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' headers: Content-Length: - "143" @@ -1581,9 +1532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc66afd4-6861-4194-8198-59d7fafa5206 + - 86a30da1-a5f9-4724-b17d-14500dba5caa status: 404 Not Found code: 404 - duration: 38.867263ms - - id: 32 + duration: 30.748436ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1611,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -1621,7 +1572,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:20.998738Z","id":"0d5a53dd-6fe5-442b-a5cb-44bcf87f0c0b","product_resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:20.998738Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1630,9 +1581,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a57fa7a6-975b-48e9-81f5-da2557c91764 + - c425328f-5e5c-4608-9b1f-daaece2fb00f status: 200 OK code: 200 - duration: 45.458742ms - - id: 33 + duration: 70.648106ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1660,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data method: GET response: proto: HTTP/2.0 @@ -1679,9 +1630,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,11 +1640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 042bb2ce-e2b6-4f28-a9cd-246a98eb9362 + - 4b8daf25-2ab4-40aa-b349-c6116d4ef98f status: 200 OK code: 200 - duration: 66.790758ms - - id: 34 + duration: 93.919818ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1709,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics method: GET response: proto: HTTP/2.0 @@ -1728,11 +1679,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,13 +1691,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc134ba0-cf7c-41b5-b35c-63d1f51bee8c + - 49fa510c-a35e-4499-af5c-61cc07dc0cc2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.55748ms - - id: 35 + duration: 106.888868ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1762,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -1770,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,11 +1742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68257f3d-16b4-4be6-9e61-bdb069d540b6 + - ed4d1859-1fc8-4699-9874-8021c5cbd143 status: 200 OK code: 200 - duration: 103.051555ms - - id: 36 + duration: 129.87782ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1811,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -1819,20 +1770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,11 +1791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2f594aa-2594-4f07-8736-adad85ace807 + - 3d8c35bd-0aec-4770-ab1b-4e1c94ead627 status: 200 OK code: 200 - duration: 67.974651ms - - id: 37 + duration: 138.844176ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1860,7 +1811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -1868,20 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,11 +1840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74b7e168-c92d-4243-bb52-5f2db0d4ce8f + - fbe09856-0176-4e5b-acf3-1ec39822ccf6 status: 200 OK code: 200 - duration: 98.807705ms - - id: 38 + duration: 140.572176ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1909,7 +1860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -1919,7 +1870,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' headers: Content-Length: - "143" @@ -1928,9 +1879,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,11 +1889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29e28232-e271-4675-8ff8-c94864da9b40 + - 9c7faa29-8126-41da-8023-a7874464fe99 status: 404 Not Found code: 404 - duration: 30.879801ms - - id: 39 + duration: 30.940917ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1958,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -1968,7 +1919,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:20.998738Z","id":"0d5a53dd-6fe5-442b-a5cb-44bcf87f0c0b","product_resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:20.998738Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1977,9 +1928,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,11 +1938,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11b64bba-ee6f-4424-8bc5-befcdf17eab9 + - d257434d-2f15-4081-9605-bfe32d64b50c status: 200 OK code: 200 - duration: 46.349511ms - - id: 40 + duration: 77.213362ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2007,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data method: GET response: proto: HTTP/2.0 @@ -2026,9 +1977,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,11 +1987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d54c53a-76d8-4417-b709-aa86fdb8bb2b + - 2d6f8824-e8b8-43af-a86a-89c0a714af1b status: 200 OK code: 200 - duration: 51.847073ms - - id: 41 + duration: 93.78744ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2056,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics method: GET response: proto: HTTP/2.0 @@ -2075,11 +2026,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,13 +2038,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473b88ce-8f61-4088-81dc-170a8acc1c8e + - a20f6aba-3f07-4107-bdbb-34ac28663dc1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.962923ms - - id: 42 + duration: 96.645317ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2109,7 +2060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -2117,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,11 +2089,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9113173-ca14-468d-bf52-514effff5157 + - 82d8f729-34bb-4d86-b75a-30b432baf080 status: 200 OK code: 200 - duration: 130.472389ms - - id: 43 + duration: 653.224883ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2158,7 +2109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2166,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,11 +2138,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f1b3b99-f4ee-4d6d-9da6-0c12a69d243c + - ee55dc53-2d90-4677-a4b5-3f43c6bda85a status: 200 OK code: 200 - duration: 65.321368ms - - id: 44 + duration: 108.320262ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2207,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2215,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,11 +2187,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3db02eef-10bd-403f-ade6-a03be62044b1 + - fd4e0af8-96d3-49e9-a889-566b4089ce00 status: 200 OK code: 200 - duration: 73.775605ms - - id: 45 + duration: 101.872526ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2256,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2264,20 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 604 + content_length: 605 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:30.814735+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:03:57.944490+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":["test_remove_tags"],"zone":"fr-par-1"}}' headers: Content-Length: - - "604" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,29 +2236,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2094fa0f-dfa6-46b5-a9bb-c78d9c1eca25 + - 03130356-21e5-4cec-81fc-426d464bcccf status: 200 OK code: 200 - duration: 71.297045ms - - id: 46 + duration: 112.774522ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 64 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-image-unruffled-keldysh","arch":"x86_64","tags":[]}' + body: '{"name":"tf-image-magical-heisenberg","arch":"x86_64","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: PATCH response: proto: HTTP/2.0 @@ -2315,20 +2266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,11 +2287,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 134a3f23-e435-471a-ae86-356718a3916e + - 381d8d83-1da9-497e-b1e1-475a64ab76dc status: 200 OK code: 200 - duration: 81.945546ms - - id: 47 + duration: 129.395087ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2356,7 +2307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2364,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,11 +2336,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e63686b-62d8-4fcb-aa1e-36d4c9c5b5e9 + - 3ed3b151-efdc-4a8e-be30-499a728fb527 status: 200 OK code: 200 - duration: 61.375039ms - - id: 48 + duration: 97.86798ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2405,7 +2356,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2413,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,11 +2385,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b356231-0f4c-406b-88fc-ad478f8b274f + - eb1c76ca-13af-4fd7-9721-d4a13d2bc2b1 status: 200 OK code: 200 - duration: 56.73771ms - - id: 49 + duration: 119.554892ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2454,7 +2405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -2462,20 +2413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,11 +2434,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 970e1464-a0d4-4308-8ef5-052e618eb34c + - ab8433de-b986-4849-91db-9b2812868128 status: 200 OK code: 200 - duration: 93.928939ms - - id: 50 + duration: 155.924435ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2503,7 +2454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -2511,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,11 +2483,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc4d6ca0-b0aa-4ace-904e-da214bb1811c + - ff22dcc7-fa1c-4ba2-802b-1c7d964cc2a6 status: 200 OK code: 200 - duration: 110.313574ms - - id: 51 + duration: 508.165351ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2552,7 +2503,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2560,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:33 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,11 +2532,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cad1673-ef5f-44b5-9efb-2e5a45708b24 + - 014edc69-ad01-4ec7-897a-f641a3bc7f0e status: 200 OK code: 200 - duration: 80.653282ms - - id: 52 + duration: 110.071306ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2601,7 +2552,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -2609,20 +2560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2630,11 +2581,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cb81885-d5c0-4e69-a6c4-d786ff05b620 + - 37f40d7c-0faa-4b42-9e1d-0acf635abe1c status: 200 OK code: 200 - duration: 116.222718ms - - id: 53 + duration: 162.090555ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2650,7 +2601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -2660,7 +2611,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' headers: Content-Length: - "143" @@ -2669,9 +2620,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2679,11 +2630,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d0efc31-d6e7-466e-93ae-c2e566675327 + - 6fe955b3-4312-43e2-a897-2e58eb20b1e1 status: 404 Not Found code: 404 - duration: 33.145306ms - - id: 54 + duration: 21.5899ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2699,7 +2650,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -2709,7 +2660,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:51.535079Z","id":"21cd167a-3aef-4bec-ad77-876aa35d9e35","product_resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:51.535079Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:20.998738Z","id":"0d5a53dd-6fe5-442b-a5cb-44bcf87f0c0b","product_resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:20.998738Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2718,9 +2669,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2728,11 +2679,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3b8c04a-e294-48b9-8c8d-943fca24907d + - aa56f5fa-ce7b-4b87-94fb-7ac87342b8f9 status: 200 OK code: 200 - duration: 40.874912ms - - id: 55 + duration: 84.99469ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2748,7 +2699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/user_data method: GET response: proto: HTTP/2.0 @@ -2767,9 +2718,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,11 +2728,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f9fc5e2-b4a7-440b-bdd1-c6c54a6a28f3 + - 0a58004d-5716-4db1-83df-44bb301c3133 status: 200 OK code: 200 - duration: 56.195626ms - - id: 56 + duration: 100.160789ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2797,7 +2748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/private_nics method: GET response: proto: HTTP/2.0 @@ -2816,11 +2767,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,13 +2779,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22cd33bd-5928-4f26-b23a-0f8ef57a5063 + - 75f1e6ca-e03e-44d1-a33b-b5475feea603 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.067617ms - - id: 57 + duration: 84.904722ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2850,7 +2801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -2858,20 +2809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,11 +2830,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba528164-3b28-4349-97f8-8b59a6165a77 + - cd300eb2-3820-4472-a8a6-ac4c210da9d3 status: 200 OK code: 200 - duration: 110.45691ms - - id: 58 + duration: 909.598939ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2899,7 +2850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2907,20 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2928,11 +2879,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2cfd999-b660-4057-ab16-905d9de27672 + - 6a7efc9f-c2c3-4289-9ad8-eb1429f3c92a status: 200 OK code: 200 - duration: 65.090289ms - - id: 59 + duration: 108.654661ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2948,7 +2899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -2956,20 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 587 uncompressed: false - body: '{"image":{"arch":"x86_64","creation_date":"2025-10-08T23:06:30.814735+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","modification_date":"2025-10-08T23:06:33.416815+00:00","name":"tf-image-unruffled-keldysh","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","public":false,"root_volume":{"id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"image":{"arch":"x86_64","creation_date":"2025-10-15T15:03:57.944490+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","modification_date":"2025-10-15T15:04:02.076527+00:00","name":"tf-image-magical-heisenberg","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","public":false,"root_volume":{"id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:34 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2977,11 +2928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 665dd390-b2e2-40dd-98b3-c6e6bd9d6207 + - ec2604c0-e957-41eb-a48e-e90410468f6f status: 200 OK code: 200 - duration: 74.656486ms - - id: 60 + duration: 121.034899ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2997,7 +2948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: DELETE response: proto: HTTP/2.0 @@ -3014,9 +2965,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3024,11 +2975,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e972ecd0-9e38-4984-bb74-0a671df04e00 + - 724a5e69-15f1-4251-a932-32ffa0d2a324 status: 204 No Content code: 204 - duration: 637.299955ms - - id: 61 + duration: 397.066889ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3044,7 +2995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -3054,7 +3005,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","type":"not_found"}' headers: Content-Length: - "142" @@ -3063,9 +3014,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3073,11 +3024,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8be2ad91-63c6-4f84-b544-7a1106fd6214 + - ac5d444d-0c24-4b47-a622-8a14b3ffc1a8 status: 404 Not Found code: 404 - duration: 29.17398ms - - id: 62 + duration: 32.016124ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3093,7 +3044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -3101,20 +3052,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 698 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:30.854796Z","id":"0029d291-3de1-4658-8eb3-97a9cdc25d2b","product_resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-08T23:06:30.854796Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:57.994482Z","id":"74e17970-82b0-400a-b96d-9ddff398921b","product_resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","product_resource_type":"instance_image","status":"attached","type":"link"}],"size":10000000000,"status":"in_use","tags":[],"updated_at":"2025-10-15T15:03:57.994482Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "698" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3122,11 +3073,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c97f323-c5b2-4ed8-94c1-db7d26d7690c + - 4066da9b-0f49-46c2-abe2-71847b31b2d8 status: 200 OK code: 200 - duration: 205.347789ms - - id: 63 + duration: 363.881875ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3142,7 +3093,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -3150,20 +3101,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 479 + content_length: 472 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:05:58.054632Z","id":"7c04256d-ce96-4195-ae92-01c45f334af7","name":"tf-snapshot-compassionate-rubin","parent_volume":{"id":"d6387d09-1017-4c84-a841-599e71585f54","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:06:35.615913Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:05.664604Z","zone":"fr-par-1"}' headers: Content-Length: - - "479" + - "472" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:40 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3171,11 +3122,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 684b4a0c-21ed-4d2d-a7e1-2bca4d6bb92f + - cdead153-6525-4f1a-a6e4-8b259dc72119 status: 200 OK code: 200 - duration: 156.304106ms - - id: 64 + duration: 401.000253ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3191,7 +3142,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: DELETE response: proto: HTTP/2.0 @@ -3208,9 +3159,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,11 +3169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc314342-505c-4976-a305-9e38846a35c5 + - 118d0f2b-8e7d-4343-b944-77fa8630c9f5 status: 204 No Content code: 204 - duration: 159.401282ms - - id: 65 + duration: 375.831052ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3238,7 +3189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: GET response: proto: HTTP/2.0 @@ -3248,7 +3199,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7c04256d-ce96-4195-ae92-01c45f334af7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","type":"not_found"}' headers: Content-Length: - "129" @@ -3257,9 +3208,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3267,10 +3218,59 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab913db8-95b0-4bfb-a79c-fa86fd996115 + - 48e06796-7900-49c1-bf92-9df25a93d438 status: 404 Not Found code: 404 - duration: 40.571618ms + duration: 91.729451ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1896 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1896" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3406b93f-277d-4cf6-882e-9920746e901b + status: 200 OK + code: 200 + duration: 145.732673ms - id: 66 request: proto: HTTP/1.1 @@ -3287,7 +3287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -3295,20 +3295,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:05:54.957335+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:03:24.645492+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3316,10 +3316,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c865ee47-c48c-46bd-a3da-2ce3f610838b + - 5862cd6f-c1d4-4abe-84ee-67a328866883 status: 200 OK code: 200 - duration: 110.527747ms + duration: 161.768073ms - id: 67 request: proto: HTTP/1.1 @@ -3338,7 +3338,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a/action method: POST response: proto: HTTP/2.0 @@ -3348,7 +3348,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3/action","href_result":"/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","id":"30ace198-c2f9-4580-8a42-dabb7c256ff1","progress":0,"started_at":"2025-10-08T23:06:41.485832+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/290e3695-3812-41ae-8c8e-0da8937db71a/action","href_result":"/servers/290e3695-3812-41ae-8c8e-0da8937db71a","id":"ffbc8b11-b63c-4a3f-9055-24e71ca89e61","progress":0,"started_at":"2025-10-15T15:04:12.478146+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3357,11 +3357,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30ace198-c2f9-4580-8a42-dabb7c256ff1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ffbc8b11-b63c-4a3f-9055-24e71ca89e61 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3369,10 +3369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8feef1-b684-4eb4-afdd-7ceca77dd23e + - 78495ba8-948a-4d60-858c-ce62e3759d8b status: 202 Accepted code: 202 - duration: 227.595046ms + duration: 306.14768ms - id: 68 request: proto: HTTP/1.1 @@ -3389,7 +3389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -3397,20 +3397,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1862 + content_length: 1859 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:51.430155+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-khorana","id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"1601","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b9","maintenances":[],"modification_date":"2025-10-08T23:06:41.314463+00:00","name":"tf-srv-dazzling-khorana","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"d6387d09-1017-4c84-a841-599e71585f54","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:04:12.227640+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1862" + - "1859" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:04:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3418,10 +3418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30ece163-6021-402c-906d-fc916ff3b812 + - 7c83138c-8161-4235-844f-b56282bbf313 status: 200 OK code: 200 - duration: 92.72158ms + duration: 151.484837ms - id: 69 request: proto: HTTP/1.1 @@ -3438,7 +3438,105 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1859 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:04:12.227640+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1859" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 864065ac-1be6-4af4-8373-4e0d09e13d5d + status: 200 OK + code: 200 + duration: 160.210039ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1859 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:20.876900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-panini","id":"290e3695-3812-41ae-8c8e-0da8937db71a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1302","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:1f","maintenances":[],"modification_date":"2025-10-15T15:04:12.227640+00:00","name":"tf-srv-dazzling-panini","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1859" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e6e04b16-d89a-4014-a5eb-c486093e001b + status: 200 OK + code: 200 + duration: 136.195658ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -3448,7 +3546,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","type":"not_found"}' headers: Content-Length: - "143" @@ -3457,9 +3555,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3467,11 +3565,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 039127af-8b81-4a31-9dba-abd567fc2b72 + - 0208e1f5-88ab-4d05-9595-b5601aaf7ace status: 404 Not Found code: 404 - duration: 50.969745ms - - id: 70 + duration: 42.87635ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3487,7 +3585,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -3497,7 +3595,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6387d09-1017-4c84-a841-599e71585f54","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","type":"not_found"}' headers: Content-Length: - "143" @@ -3506,9 +3604,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3516,11 +3614,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6107fc29-302a-4d8b-817a-fa213d3ee6f4 + - dbe9bc35-e5cf-43c4-ac64-b2f104929a67 status: 404 Not Found code: 404 - duration: 36.181117ms - - id: 71 + duration: 28.942227ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3536,7 +3634,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: GET response: proto: HTTP/2.0 @@ -3546,7 +3644,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:51.535079Z","id":"d6387d09-1017-4c84-a841-599e71585f54","last_detached_at":"2025-10-08T23:06:42.846130Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:42.846130Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:20.998738Z","id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","last_detached_at":"2025-10-15T15:04:23.965847Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:23.965847Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3555,9 +3653,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3565,11 +3663,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a9ac9a0-668e-4f56-bc61-acb241a49445 + - a7eacb25-65fb-448c-8f22-d4ac40a400d6 status: 200 OK code: 200 - duration: 42.614702ms - - id: 72 + duration: 83.407242ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3585,7 +3683,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6387d09-1017-4c84-a841-599e71585f54 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/818c356e-9ce7-4e2f-80ef-b8fc6cf403c1 method: DELETE response: proto: HTTP/2.0 @@ -3602,9 +3700,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3612,11 +3710,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a29e0c0c-4e1c-4833-9adf-450d0950038f + - a02455a3-8971-4973-adb2-e0a49a06763e status: 204 No Content code: 204 - duration: 66.75555ms - - id: 73 + duration: 178.870245ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3632,7 +3730,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/c24c965f-f0a0-4761-9722-ff9c8d5f47a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/images/ec67478d-9fa1-456d-a511-5ba5ddf60582 method: GET response: proto: HTTP/2.0 @@ -3642,7 +3740,7 @@ interactions: trailer: {} content_length: 142 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_image","resource_id":"c24c965f-f0a0-4761-9722-ff9c8d5f47a1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_image","resource_id":"ec67478d-9fa1-456d-a511-5ba5ddf60582","type":"not_found"}' headers: Content-Length: - "142" @@ -3651,9 +3749,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3661,11 +3759,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b54a6c1c-5e53-4000-a0f8-8805d52563d7 + - 8c59d1d6-df35-4b12-bc96-4d3bf82ec4ae status: 404 Not Found code: 404 - duration: 30.191304ms - - id: 74 + duration: 29.862543ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3681,7 +3779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/7c04256d-ce96-4195-ae92-01c45f334af7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 method: DELETE response: proto: HTTP/2.0 @@ -3691,7 +3789,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"7c04256d-ce96-4195-ae92-01c45f334af7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","type":"not_found"}' headers: Content-Length: - "129" @@ -3700,9 +3798,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3710,11 +3808,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a5c3726-6b43-40b3-9893-3f5bd618dcbc + - 2022eef7-95a5-4166-bf05-51b4ee4d6e55 status: 404 Not Found code: 404 - duration: 57.058401ms - - id: 75 + duration: 154.150253ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3730,7 +3828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/290e3695-3812-41ae-8c8e-0da8937db71a method: GET response: proto: HTTP/2.0 @@ -3740,7 +3838,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9cdbd5e4-dbf2-46e5-acfa-065ae792b9e3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"290e3695-3812-41ae-8c8e-0da8937db71a","type":"not_found"}' headers: Content-Length: - "143" @@ -3749,9 +3847,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3759,7 +3857,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98da47fc-9dea-47b7-9650-09979af74b60 + - 4b6f441f-ed24-431d-9913-8860fdc1d237 status: 404 Not Found code: 404 - duration: 48.800227ms + duration: 53.430736ms diff --git a/internal/services/instance/testdata/ip-basic.cassette.yaml b/internal/services/instance/testdata/ip-basic.cassette.yaml index 62a8dcb3a..b76aef7b6 100644 --- a/internal/services/instance/testdata/ip-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"e987690f-1d88-4c87-abb0-10c97c67d199","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.149.221","id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","ipam_id":"a4c62edb-42cc-479b-830c-21e3a9f659fb","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c03892ce-09d4-4573-8b90-47ec6e1c09ba + - 9501039a-c530-423e-9b9d-58ab9de83576 status: 201 Created code: 201 - duration: 533.782603ms + duration: 503.137097ms - id: 1 request: proto: HTTP/1.1 @@ -71,7 +71,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -80,22 +80,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"fae3512a-19bc-463a-bc99-2ae7fa443a59","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"76e59995-b3db-4b19-90c8-352d151230c4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -103,10 +103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d2a4351-4820-4af4-98da-d0a46faa0815 + - 79493963-225c-41e2-b5fc-9b9344a7b2c8 status: 201 Created code: 201 - duration: 624.256132ms + duration: 651.029586ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"e987690f-1d88-4c87-abb0-10c97c67d199","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.149.221","id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","ipam_id":"a4c62edb-42cc-479b-830c-21e3a9f659fb","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba3b7ddb-5562-4d23-8100-c903c0df3da8 + - d8eda11f-e0ad-440b-8682-41976e1489fd status: 200 OK code: 200 - duration: 90.973487ms + duration: 147.637932ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"fae3512a-19bc-463a-bc99-2ae7fa443a59","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"76e59995-b3db-4b19-90c8-352d151230c4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 195ad004-9561-459d-bc8e-b5d683f5afbf + - 352cec01-9eb8-40b8-91d7-f7dcf75459ed status: 200 OK code: 200 - duration: 88.204493ms + duration: 138.499918ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -229,20 +229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"fae3512a-19bc-463a-bc99-2ae7fa443a59","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"76e59995-b3db-4b19-90c8-352d151230c4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e5e485c-841c-4656-b50d-9b7f563d5783 + - 2f2053fb-f6e8-4970-8d2e-816b43408296 status: 200 OK code: 200 - duration: 92.410341ms + duration: 155.686645ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -278,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"e987690f-1d88-4c87-abb0-10c97c67d199","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.149.221","id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","ipam_id":"a4c62edb-42cc-479b-830c-21e3a9f659fb","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 874767e5-505b-45a7-8605-434914661a60 + - dce82a64-0c72-4568-b636-b0aa8f57479d status: 200 OK code: 200 - duration: 118.139084ms + duration: 116.720595ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -327,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"fae3512a-19bc-463a-bc99-2ae7fa443a59","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"76e59995-b3db-4b19-90c8-352d151230c4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9378df6-0d02-4a19-956f-6a009bfe7439 + - bfd3bf7b-8bf1-4ae1-b30c-aa311011091c status: 200 OK code: 200 - duration: 98.932634ms + duration: 112.796473ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 367 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"e987690f-1d88-4c87-abb0-10c97c67d199","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"163.172.149.221","id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","ipam_id":"a4c62edb-42cc-479b-830c-21e3a9f659fb","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "367" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44bcb590-5129-48b2-a412-09a1d1aca3f2 + - 34ad2d79-f18e-4eb7-a114-6dec807351ba status: 200 OK code: 200 - duration: 104.642872ms + duration: 122.570849ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: DELETE response: proto: HTTP/2.0 @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6866cd88-eee1-47b7-89a5-3839ed3b51c2 + - 05838984-07a7-48ce-8750-60f8bae64fa8 status: 204 No Content code: 204 - duration: 480.213546ms + duration: 334.044927ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: DELETE response: proto: HTTP/2.0 @@ -481,9 +481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a74a0e4-664f-415d-91ae-240d0ab8f5f5 + - 2bc673c4-3779-474a-b761-483988231b4f status: 204 No Content code: 204 - duration: 556.777167ms + duration: 337.863644ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc3454a7-458f-4bd3-9e3e-fb6b8ceb183f - status: 403 Forbidden - code: 403 - duration: 101.48488ms + - 6b670cb5-3199-422f-95da-634ebc448965 + status: 404 Not Found + code: 404 + duration: 46.118423ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/5e1fe2cf-537e-4763-9643-89980a20a0b0 method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"5e1fe2cf-537e-4763-9643-89980a20a0b0","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:18 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,7 +589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f59bf118-6876-4d9f-8b16-a75dd17368dd - status: 403 Forbidden - code: 403 - duration: 113.721278ms + - 1c22c82e-0892-444b-a919-dc21b30ddb1b + status: 404 Not Found + code: 404 + duration: 44.370988ms diff --git a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml index caee6bf7e..7212f9b78 100644 --- a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:47 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79b35aa1-5e72-4ef9-9f70-64e911ab83cd + - a021db93-cb05-4975-97c3-707bc49f4f34 status: 201 Created code: 201 - duration: 824.338208ms + duration: 364.710172ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:47 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,28 +99,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7b0119a-ab3e-4c63-9bda-30825cec9494 + - e075b1f4-d22d-43d1-b10a-8a47eaeab0e6 status: 200 OK code: 200 - duration: 142.726333ms + duration: 128.346723ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 190 + content_length: 189 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"51.15.250.217","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"51.158.97.50","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records method: PATCH response: @@ -129,20 +129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 147 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "148" + - "147" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d712536d-52a8-499c-8f84-9b71675e8e22 + - a52e38c8-d268-4650-b4f1-0093fe656571 status: 200 OK code: 200 - duration: 462.615417ms + duration: 177.342598ms - id: 3 request: proto: HTTP/1.1 @@ -169,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&type=A method: GET response: @@ -178,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 164 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d17b6966-8913-415f-b9e6-b5cfbf33b83c + - 8811792f-c2eb-476b-9459-6ba230c4f189 status: 200 OK code: 200 - duration: 88.6835ms + duration: 101.905204ms - id: 4 request: proto: HTTP/1.1 @@ -218,7 +218,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&page=1&type=A method: GET response: @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 164 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfc0da12-8b9f-4222-9c4e-8339ef4b24f6 + - 928f0a97-944a-47ab-b898-746c7dc41c4b status: 200 OK code: 200 - duration: 89.075583ms + duration: 102.151696ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=decd3535-bf1e-4e37-b30b-9936e865cae8&name=&order_by=name_asc&page=1&type=unknown + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 164 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9a9bde2-3ebe-405f-9f80-8e27bdcf768b + - 63eb3eb9-063c-4db1-9544-fafedf562fb6 status: 200 OK code: 200 - duration: 92.089459ms + duration: 96.838931ms - id: 6 request: proto: HTTP/1.1 @@ -316,7 +316,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:28:48Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c4f7858-3cc5-4424-9493-0c328c265a1c + - 56102b76-601a-4658-bb14-43c7a974de9a status: 200 OK code: 200 - duration: 98.488416ms + duration: 99.958957ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:48 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c453237-68b8-4470-b07d-676abb583dcf + - 83b930b7-e7da-48f5-8c96-a61cbb177aa4 status: 200 OK code: 200 - duration: 94.693542ms + duration: 109.974466ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=decd3535-bf1e-4e37-b30b-9936e865cae8&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 164 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:49 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2301eea0-e479-4cc8-bb08-4c3445472d67 + - c16a84a9-ad5e-40ca-bfc6-026304cbe3ed status: 200 OK code: 200 - duration: 106.350375ms + duration: 108.14128ms - id: 9 request: proto: HTTP/1.1 @@ -463,7 +463,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:28:48Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:49 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29328e83-d8ab-4e7c-8b87-a41f83338d7b + - 3d2c67c3-6eab-4960-b6ba-a52e4eaf10ab status: 200 OK code: 200 - duration: 96.764625ms + duration: 85.159915ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -521,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:49 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d512fd16-3f66-4fa9-a971-4cd79b202f32 + - 80a05fbb-c36a-4b77-9d3e-1d0d74ae47ee status: 200 OK code: 200 - duration: 110.035541ms + duration: 143.326547ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=decd3535-bf1e-4e37-b30b-9936e865cae8&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -570,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 164 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "165" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:49 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1f92216-98be-46d0-af80-f61b02327ab0 + - 912f0cf8-ab33-4804-8763-dbe11eb402a2 status: 200 OK code: 200 - duration: 89.473667ms + duration: 87.458052ms - id: 12 request: proto: HTTP/1.1 @@ -610,7 +610,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:28:48Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -630,9 +630,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:49 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e08210a-8c69-40e9-8718-f2f57870c415 + - e7dc52ef-4f1e-4396-956e-aa204fdc30cb status: 200 OK code: 200 - duration: 87.626958ms + duration: 113.542122ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +659,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -668,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:28:50 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ed2f68-7626-4be4-8082-3a7b6b0f4147 + - cff4e34a-1f19-42f7-8374-f2be10f4e8c6 status: 200 OK code: 200 - duration: 105.717166ms + duration: 132.85285ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: PATCH response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 331 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"details":[{"argument_name":"reverse","help_message":"Your reverse must resolve. Ensure the command ''dig +short tf-reverse-instance.scaleway-terraform.com'' matches your IP address ''51.158.97.50''. If it does, please contact our support.","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' headers: Content-Length: - - "405" + - "331" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:00 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,48 +740,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d799c985-52ea-4f29-a69e-f2f8e08c578f - status: 200 OK - code: 200 - duration: 481.091459ms + - f64852f0-f43f-4b1b-a8eb-7e7075ac60f4 + status: 400 Bad Request + code: 400 + duration: 203.56986ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 56 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"reverse":"tf-reverse-instance.scaleway-terraform.com"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 404 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "405" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:00 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6005ab92-c0fd-4bca-8378-9928d268ae3e + - c73f4692-6fc4-4ff0-bf62-90589bac6757 status: 200 OK code: 200 - duration: 107.520583ms + duration: 321.850344ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -817,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 404 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "405" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cad4cc7-0aca-41e6-94d4-ae0519c7c67d + - 229c6fc0-005b-4fd0-87bc-d29e86e8b8d2 status: 200 OK code: 200 - duration: 106.116291ms + duration: 126.975099ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=decd3535-bf1e-4e37-b30b-9936e865cae8&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -866,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 404 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "165" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23d15358-79d1-4f91-bc0a-f17390200fe5 + - 062d97c0-6912-4227-85fb-6e1c99ed352b status: 200 OK code: 200 - duration: 95.035584ms + duration: 106.92864ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -915,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 164 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:28:58Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "372" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9ee5dc7-e2d2-42d0-8be2-8f962d040026 + - 1f9d5b07-78f2-4f99-8f12-f3fa17d7f4c5 status: 200 OK code: 200 - duration: 98.058875ms + duration: 96.269925ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -964,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 372 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:13Z"}],"total_count":1}' headers: Content-Length: - - "405" + - "372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d78f40e-a896-4338-87af-017fdb3fac0e + - 5fe2d1f5-4855-48d2-b5ef-de46a922bc90 status: 200 OK code: 200 - duration: 105.162208ms + duration: 90.56292ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=decd3535-bf1e-4e37-b30b-9936e865cae8&name=&order_by=name_asc&page=1&type=A + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 165 + content_length: 404 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.15.250.217","id":"decd3535-bf1e-4e37-b30b-9936e865cae8","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "165" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:02 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6974272c-779c-4750-a62b-0373073d9f7f + - a010d2b6-376c-43e2-9900-6455201ad3e6 status: 200 OK code: 200 - duration: 92.350541ms + duration: 124.299945ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1062,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 404 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "405" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1290ec6a-0384-4e7f-9305-8cc44d506126 + - b1a53367-254d-4199-b9c0-90eb9215c320 status: 200 OK code: 200 - duration: 103.975166ms + duration: 111.408948ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 404 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "405" + - "404" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:01 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3133ac41-fb6b-429d-90e2-04b078a48a08 + - 0fd47677-656c-4f73-aa52-92f029265cfc status: 200 OK code: 200 - duration: 180.110042ms + duration: 114.266633ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1160,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 164 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:28:58Z"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "372" + - "164" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:02 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,50 +1183,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 095ece52-28b2-48f9-a964-07b3e9e24906 + - 93bc18bd-43eb-41d0-9500-22ac783f6b65 status: 200 OK code: 200 - duration: 91.379916ms + duration: 124.759357ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 16 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"reverse":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 372 uncompressed: false - body: '{"ip":{"address":"51.15.250.217","id":"2136a5a4-5f73-43b1-b390-9cfeac46050f","ipam_id":"1d125bc2-e709-49b8-b560-4c408b9580ba","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:13Z"}],"total_count":1}' headers: Content-Length: - - "365" + - "372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:02 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,29 +1232,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d41d3e53-15da-4558-90f0-6fb54f33471b + - c8daf97b-906a-4f39-98c8-e4a07be4ab20 status: 200 OK code: 200 - duration: 199.415708ms + duration: 89.880672ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 16 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"decd3535-bf1e-4e37-b30b-9936e865cae8"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"reverse":null}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: PATCH response: proto: HTTP/2.0 @@ -1262,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 364 uncompressed: false - body: '{"records":[]}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "14" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:02 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,60 +1283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd13ab76-6f0c-4219-8f7e-f7508dddb759 + - 0a26843c-4bfb-4444-970f-81be353b8f69 status: 200 OK code: 200 - duration: 127.260792ms + duration: 288.341782ms - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?name=&order_by=name_asc&type=unknown - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 313 - uncompressed: false - body: '{"records":[{"comment":null,"data":"ns0.dom.scw.cloud.","id":"870d5486-ed8e-4104-b355-2d8e8512aa83","name":"","priority":0,"ttl":1800,"type":"NS"},{"comment":null,"data":"ns1.dom.scw.cloud.","id":"e8f56bbc-19d2-41f4-a8fa-acef473dd5c9","name":"","priority":0,"ttl":1800,"type":"NS"}],"total_count":2}' - headers: - Content-Length: - - "313" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:29:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08e3426a-9c0a-4ca2-a66d-d41b44fed240 - status: 200 OK - code: 200 - duration: 95.133334ms - - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1353,7 +1304,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -1364,7 +1315,7 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"da609bec-185d-4756-8f95-763b4abd107b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "365" @@ -1373,11 +1324,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:02 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1385,146 +1336,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12871423-b353-496b-ae77-fb3de720d018 + - 566a610d-cce1-4aad-a4e1-acbbbbebb66a status: 201 Created code: 201 - duration: 462.001042ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 373 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:29:02Z"}],"total_count":1}' - headers: - Content-Length: - - "373" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:29:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 751f8a45-db2f-4845-8b74-a9751ba0fb64 - status: 200 OK - code: 200 - duration: 98.881625ms - - id: 29 + duration: 373.434831ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"changes":[{"delete":{"id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 365 - uncompressed: false - body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"da609bec-185d-4756-8f95-763b4abd107b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' - headers: - Content-Length: - - "365" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json - Date: - - Wed, 12 Feb 2025 16:29:02 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8b89adf3-0bdc-4c67-ba24-18b42ddb9913 - status: 200 OK - code: 200 - duration: 110.882167ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 373 + content_length: 14 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:29:02Z"}],"total_count":1}' + body: '{"records":[]}' headers: Content-Length: - - "373" + - "14" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:08 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1532,11 +1387,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7758f2f5-15d3-4304-acfe-074118e634f7 + - 50f5a4e7-712a-4234-b40c-10b8b93e06b2 status: 200 OK code: 200 - duration: 103.703208ms - - id: 31 + duration: 146.043224ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1551,8 +1406,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zone=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1560,69 +1415,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 - uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-02-12T16:29:09Z"}],"total_count":1}' - headers: - Content-Length: - - "372" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 12 Feb 2025 16:29:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f35f7c6-ef53-4a01-99ed-bbbe523b5904 - status: 200 OK - code: 200 - duration: 101.151792ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com?project_id=105bdce1-64c0-48ab-899d-868455867ecf - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2 + content_length: 365 uncompressed: false - body: '{}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "2" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:13 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1630,11 +1436,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80ac6f8a-cdad-46f9-b1ba-743151abc472 + - f2b5b061-6d37-4665-8ebe-841c8ca0808f status: 200 OK code: 200 - duration: 204.84425ms - - id: 33 + duration: 118.831457ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1649,8 +1455,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/2136a5a4-5f73-43b1-b390-9cfeac46050f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: DELETE response: proto: HTTP/2.0 @@ -1667,9 +1473,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:13 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1677,11 +1483,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31cd3aeb-4299-4d28-8813-8975af5ac5f3 + - 2626f8e4-5195-4779-aaa9-362459b0bc2f status: 204 No Content code: 204 - duration: 485.199542ms - - id: 34 + duration: 410.390802ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1696,8 +1502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1707,7 +1513,7 @@ interactions: trailer: {} content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"da609bec-185d-4756-8f95-763b4abd107b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "365" @@ -1716,9 +1522,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:13 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1726,11 +1532,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d9397ea-0338-418d-beac-1afb4b75c925 + - 5b08ac4f-ca7d-4433-aa49-5210b6f2af52 status: 200 OK code: 200 - duration: 101.496875ms - - id: 35 + duration: 131.518425ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1745,8 +1551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: DELETE response: proto: HTTP/2.0 @@ -1763,9 +1569,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:14 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1773,11 +1579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4193ce-dcd4-4f71-87f0-44296002f925 + - a85643b6-0935-4972-bf38-31f32f8e659d status: 204 No Content code: 204 - duration: 626.661208ms - - id: 36 + duration: 304.215795ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1792,8 +1598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.5; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1801,20 +1607,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 12 Feb 2025 16:29:15 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,7 +1628,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be60bff0-4be9-43aa-8847-3ae93454c2d5 - status: 403 Forbidden - code: 403 - duration: 110.6985ms + - 8cab7869-a153-4c77-b16b-00daf21ab638 + status: 404 Not Found + code: 404 + duration: 43.784295ms diff --git a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml index e035eb896..13c716326 100644 --- a/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/ip-routed-ipv6.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"40766c8d-667e-4d42-926c-4e4379f10f03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"7fe64a99-2542-4e46-8871-5fa2db4ba362","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b9ff514-95df-46a5-8d90-b8de9110b6a5 + - 21cb6f92-93f0-44fc-aef8-57a6d7fa6e93 status: 201 Created code: 201 - duration: 767.917611ms + duration: 397.184395ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"40766c8d-667e-4d42-926c-4e4379f10f03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"7fe64a99-2542-4e46-8871-5fa2db4ba362","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1857c2a3-97ff-43af-8deb-6efdeb00dee3 + - 4dbcdde8-2242-4c9b-9cac-204e0c0c6a44 status: 200 OK code: 200 - duration: 221.546793ms + duration: 119.589427ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"40766c8d-667e-4d42-926c-4e4379f10f03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"7fe64a99-2542-4e46-8871-5fa2db4ba362","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03ab44f0-398c-4d9e-a0bc-4ae785727f7a + - 59211579-de6a-4024-b826-90e24017542a status: 200 OK code: 200 - duration: 109.529919ms + duration: 136.532946ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"b0a149f5-38d7-40f1-bc76-a707a9eb92c0","ipam_id":"40766c8d-667e-4d42-926c-4e4379f10f03","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:2883::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"7fe64a99-2542-4e46-8871-5fa2db4ba362","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4936e46-2874-4171-b45e-6eabc386b690 + - 1cd53a3c-7be5-4bde-8d7b-d65d97262fee status: 200 OK code: 200 - duration: 154.357482ms + duration: 119.656333ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: DELETE response: proto: HTTP/2.0 @@ -234,9 +234,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b6eaa4c-fb33-4b26-b3b7-c4bf7b7ca177 + - 26bd4e95-4555-4a45-845c-e8000f2a283b status: 204 No Content code: 204 - duration: 497.975193ms + duration: 396.835556ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +263,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/b0a149f5-38d7-40f1-bc76-a707a9eb92c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"88201074-761e-4ed1-83b4-f7fc97b5599f","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,7 +293,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70fa4972-3686-4403-be2f-9a7bc82b89f5 - status: 403 Forbidden - code: 403 - duration: 79.321344ms + - 0d68ff1c-cf33-4d64-8a1e-5c98b24b73b9 + status: 404 Not Found + code: 404 + duration: 39.761589ms diff --git a/internal/services/instance/testdata/ip-tags.cassette.yaml b/internal/services/instance/testdata/ip-tags.cassette.yaml index 3faeb172c..472bcbcf3 100644 --- a/internal/services/instance/testdata/ip-tags.cassette.yaml +++ b/internal/services/instance/testdata/ip-tags.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3c6b626-9abc-499c-9335-780daaa9e7ce + - 793cd24e-301e-4246-a3b4-23a305e6a964 status: 201 Created code: 201 - duration: 631.573649ms + duration: 342.324802ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82a8917f-f38a-4ffd-bdcd-559e1ae6b5df + - 224d3be5-27fb-449c-b887-69709039c418 status: 200 OK code: 200 - duration: 102.234957ms + duration: 105.568183ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b628a8ff-614d-43b3-becb-1628f1e51293 + - ac908699-0817-4291-a7b9-1d3fbab4d5bc status: 200 OK code: 200 - duration: 135.391621ms + duration: 118.015941ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:08 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 024119a2-7fed-405e-b185-6bbcae61597c + - 0f750a17-b5bd-49f7-963a-f36bdd98e9c7 status: 200 OK code: 200 - duration: 421.817209ms + duration: 100.706653ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4e2f87c-3d72-4c75-b5e0-eb3859acaccb + - 1ce26b19-9493-41cf-ab2f-a2c6a07c8c63 status: 200 OK code: 200 - duration: 98.668037ms + duration: 104.726386ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: PATCH response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 377 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "376" + - "377" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06259bbc-f289-4f14-ad02-62ee668dbdf7 + - a67c6e7f-8dbd-46b7-ac57-ea6a4663db34 status: 200 OK code: 200 - duration: 199.008701ms + duration: 182.600909ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 377 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "376" + - "377" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 002f4829-2362-4266-bcfd-50871e159ab0 + - 6bea8386-43f2-4b05-95fa-0e0bbfb94878 status: 200 OK code: 200 - duration: 125.184588ms + duration: 109.776661ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 377 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "376" + - "377" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8768f348-5f87-4cb7-b32c-706af2bb9d29 + - 7594e854-8695-498a-a3ab-34cc5d41df9f status: 200 OK code: 200 - duration: 92.041609ms + duration: 105.503574ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 377 uncompressed: false - body: '{"ip":{"address":"51.15.214.32","id":"6bf067b6-e5ab-4940-a451-8fb70cab0d32","ipam_id":"809a586d-9460-424c-9557-210b1aef9cee","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"59765361-e378-4005-a9c2-f292de6e6bf2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":["foo","bar"],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "376" + - "377" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22fb5044-2e82-4f7f-af46-0bcae3e2c665 + - bcb5ca0e-f0c2-4762-9749-7853badc5fd0 status: 200 OK code: 200 - duration: 132.758482ms + duration: 124.450532ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: DELETE response: proto: HTTP/2.0 @@ -481,9 +481,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42a3dcf5-1e4b-4503-931f-36a40ed0a653 + - dca9771d-11a2-42fe-98b8-11131277ced8 status: 204 No Content code: 204 - duration: 606.095823ms + duration: 345.373762ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/6bf067b6-e5ab-4940-a451-8fb70cab0d32 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,7 +540,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a973e591-706f-4fe7-9147-30f6e30a0d06 - status: 403 Forbidden - code: 403 - duration: 144.815564ms + - 8f59899d-8b5d-4fa8-86f7-95fb20214d15 + status: 404 Not Found + code: 404 + duration: 53.747468ms diff --git a/internal/services/instance/testdata/ip-with-zone.cassette.yaml b/internal/services/instance/testdata/ip-with-zone.cassette.yaml index 798aa88d7..7cae2e7d9 100644 --- a/internal/services/instance/testdata/ip-with-zone.cassette.yaml +++ b/internal/services/instance/testdata/ip-with-zone.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"483298b5-0dd9-410d-a5ff-2a8450831d01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"f628caff-a366-4010-90b0-dc83907a64f7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dae756a-c032-4472-9530-da75db21e78e + - d1fc72ed-f03b-4994-ab3f-d4d122cf82f0 status: 201 Created code: 201 - duration: 580.961075ms + duration: 421.233885ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"483298b5-0dd9-410d-a5ff-2a8450831d01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"f628caff-a366-4010-90b0-dc83907a64f7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb466998-89da-406b-9370-0e239ce79e4f + - 082aeadf-4112-46ea-8404-472d13f9abb8 status: 200 OK code: 200 - duration: 88.897343ms + duration: 132.255165ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"483298b5-0dd9-410d-a5ff-2a8450831d01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"f628caff-a366-4010-90b0-dc83907a64f7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc33e886-fd23-4e52-b809-a7b538a89f70 + - 5ff08295-5973-445b-913d-c2d07e66cc3d status: 200 OK code: 200 - duration: 111.745824ms + duration: 103.463012ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"483298b5-0dd9-410d-a5ff-2a8450831d01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"f628caff-a366-4010-90b0-dc83907a64f7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:11 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc1caa1c-2e74-4670-812c-487356a796ed + - 0b29f88e-9e97-4a08-baab-3b15403e4337 status: 200 OK code: 200 - duration: 89.690961ms + duration: 120.990306ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.15.135.95","id":"24d12111-e484-4cba-aca8-1984cca2cf55","ipam_id":"483298b5-0dd9-410d-a5ff-2a8450831d01","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"f628caff-a366-4010-90b0-dc83907a64f7","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "364" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:12 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b7b117-2e14-4380-b4bb-db4fc91c3cc0 + - 87cb2de2-9297-47ad-8f3a-0edf0f7a6654 status: 200 OK code: 200 - duration: 121.68791ms + duration: 106.155608ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/24d12111-e484-4cba-aca8-1984cca2cf55 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: DELETE response: proto: HTTP/2.0 @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42ebb97d-e7a5-441a-9a0a-e7e356d7270d + - 51e724f4-6eb6-4cd9-9349-83931eab5160 status: 204 No Content code: 204 - duration: 486.108293ms + duration: 407.192619ms - id: 6 request: proto: HTTP/1.1 @@ -314,7 +314,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips method: POST response: @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"3f40ded2-9f32-41e6-a1de-b1ad7887fea6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' + body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"389b8979-b928-4299-bb70-52a29a585952","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' headers: Content-Length: - "366" @@ -334,11 +334,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Location: - https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a22e117-fdb0-4f1b-8d39-26945d9790e4 + - 27e75c1e-44dd-475c-9122-be5ef483cae4 status: 201 Created code: 201 - duration: 731.665844ms + duration: 679.412983ms - id: 7 request: proto: HTTP/1.1 @@ -365,7 +365,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 method: GET response: @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"3f40ded2-9f32-41e6-a1de-b1ad7887fea6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' + body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"389b8979-b928-4299-bb70-52a29a585952","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' headers: Content-Length: - "366" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:14 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e78eac8-6efc-46cf-9bc3-87e38ca2f5e2 + - 278fad44-1b93-4920-93af-bdbdd132676d status: 200 OK code: 200 - duration: 174.763992ms + duration: 175.990514ms - id: 8 request: proto: HTTP/1.1 @@ -414,7 +414,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 method: GET response: @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"3f40ded2-9f32-41e6-a1de-b1ad7887fea6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' + body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"389b8979-b928-4299-bb70-52a29a585952","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' headers: Content-Length: - "366" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:15 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d52eae3-9ab8-4a6e-b5e0-3f0561baf025 + - 6d24df60-cec1-405c-9643-d304b4838c02 status: 200 OK code: 200 - duration: 151.693724ms + duration: 145.870122ms - id: 9 request: proto: HTTP/1.1 @@ -463,7 +463,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 method: GET response: @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 366 uncompressed: false - body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"3f40ded2-9f32-41e6-a1de-b1ad7887fea6","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' + body: '{"ip":{"address":"51.158.170.116","id":"568e7532-0df9-41a9-987e-26c056725953","ipam_id":"389b8979-b928-4299-bb70-52a29a585952","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"nl-ams-1"}}' headers: Content-Length: - "366" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87b07be6-1c0f-4ad7-bb2f-1575707fee8f + - 19f595d1-40c3-4bc9-83ce-e619e0ce61c0 status: 200 OK code: 200 - duration: 146.388895ms + duration: 152.803955ms - id: 10 request: proto: HTTP/1.1 @@ -512,7 +512,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 method: DELETE response: @@ -530,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4340e8b-891c-4bb3-9510-bbe14bec2fb9 + - 6a8749c2-c4aa-4b17-b9b0-d86a7807074f status: 204 No Content code: 204 - duration: 570.38043ms + duration: 463.694788ms - id: 11 request: proto: HTTP/1.1 @@ -559,7 +559,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/nl-ams-1/ips/568e7532-0df9-41a9-987e-26c056725953 method: GET response: @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 129 + content_length: 139 uncompressed: false - body: '{"details":[{"action":"read","resource":"compute_ips"}],"message":"insufficient permissions","type":"permissions_denied"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"568e7532-0df9-41a9-987e-26c056725953","type":"not_found"}' headers: Content-Length: - - "129" + - "139" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:17 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,7 +589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c03f2a4f-053a-44ef-ab24-fd5637be1fba - status: 403 Forbidden - code: 403 - duration: 155.229495ms + - c38c8e57-15eb-436b-922d-da088e27a857 + status: 404 Not Found + code: 404 + duration: 83.077353ms diff --git a/internal/services/instance/testdata/placement-group-basic.cassette.yaml b/internal/services/instance/testdata/placement-group-basic.cassette.yaml index 721b21520..beac030dd 100644 --- a/internal/services/instance/testdata/placement-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 140 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-zen-saha","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"tf-pg-peaceful-greider","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a2bca17-d415-41b3-8c3c-8269bb602737 + - 5e667c41-9bd6-4ee3-9e60-6b6c280b38e1 status: 201 Created code: 201 - duration: 374.918546ms + duration: 167.410643ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db663264-0f21-4a51-946d-f30d69bbea50 + - 7d6a76ad-b4ca-43fd-b9bc-8b9c60805172 status: 200 OK code: 200 - duration: 176.667693ms + duration: 97.951934ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1a93fc1-432a-4b44-9347-7f99ed86dc14 + - f642e8af-eb09-492d-b7cd-0352d4e94c3c status: 200 OK code: 200 - duration: 250.113719ms + duration: 100.53161ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0825406-486d-4782-a773-6e10a18ac45e + - d0a9f85f-34cd-4f4f-bf7f-4047443f2108 status: 200 OK code: 200 - duration: 115.619841ms + duration: 100.544594ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d63b7515-2e98-467f-ab17-a565008beb33 + - fabafa11-ede5-4c5d-b09f-9751b4e960ab status: 200 OK code: 200 - duration: 184.596033ms + duration: 101.754402ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: PATCH response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 315 + content_length: 323 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "315" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 305a6512-e377-4c5f-83bd-4f8df2c8717b + - 8794e0ed-5158-43af-a3dc-d50daf9625ec status: 200 OK code: 200 - duration: 230.107949ms + duration: 141.220335ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -325,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 315 + content_length: 323 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "315" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c2e54b0-a996-4dae-a77e-ed765f9fb49c + - da8d8962-c0fb-46be-8ff5-5626058069bc status: 200 OK code: 200 - duration: 117.373429ms + duration: 112.8826ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 315 + content_length: 323 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "315" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b4688c7-b8bf-4ad4-ae70-3d92bb2aaf0c + - aa46e47e-69b1-4145-9b87-5202445e7414 status: 200 OK code: 200 - duration: 111.613016ms + duration: 115.433562ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -423,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 315 + content_length: 323 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "315" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f061d12-ca28-4d09-bd78-ee37d7f8b691 + - 8c74e735-c4fa-455b-bd11-1a6293b53b6d status: 200 OK code: 200 - duration: 120.490455ms + duration: 93.918636ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -472,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 315 + content_length: 323 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "315" + - "323" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4882490f-c30a-425e-9b86-4719e46daec3 + - 979db0fc-14b9-4d9d-85ae-4d9f7c346474 status: 200 OK code: 200 - duration: 125.316536ms + duration: 95.059775ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: PATCH response: proto: HTTP/2.0 @@ -523,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ded6bfa5-3c4a-4c73-9455-fb64c69ea4e1 + - 6423c5f1-b8bf-43ad-ba0e-ab1cf61fb22b status: 200 OK code: 200 - duration: 216.296906ms + duration: 160.425313ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -572,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bdd2d12-ad53-4fd4-a6b4-1c52d8c30f52 + - 84a13b58-6183-4219-acde-7b7aee388df7 status: 200 OK code: 200 - duration: 116.273015ms + duration: 125.703893ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -621,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a762d740-e98a-4519-9d06-4ee443109b87 + - c277d398-5a21-49d2-aab1-74d6f69c659b status: 200 OK code: 200 - duration: 106.121797ms + duration: 103.75356ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -670,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 328 uncompressed: false - body: '{"placement_group":{"id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","name":"tf-pg-zen-saha","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"4840ff42-8220-4925-a97b-628c1fb3efd8","name":"tf-pg-peaceful-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "320" + - "328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8932ce24-1f0d-4109-a541-c82eea366af9 + - 893ba025-986d-443d-9b00-443e4ffe3038 status: 200 OK code: 200 - duration: 89.223144ms + duration: 108.664966ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: DELETE response: proto: HTTP/2.0 @@ -728,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 15 Oct 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc3346a0-4593-482b-ac01-012e3260e87c + - 869e49ec-5232-409f-b4cf-b7f8ac227090 status: 204 No Content code: 204 - duration: 206.823048ms + duration: 156.412213ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/e45a49be-1750-4df0-82b6-a5a8f27b59a3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/4840ff42-8220-4925-a97b-628c1fb3efd8 method: GET response: proto: HTTP/2.0 @@ -768,7 +768,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"e45a49be-1750-4df0-82b6-a5a8f27b59a3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"4840ff42-8220-4925-a97b-628c1fb3efd8","type":"not_found"}' headers: Content-Length: - "152" @@ -777,9 +777,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 15 Oct 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,7 +787,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69a5ccf2-97dc-40fe-b857-2c4c2ea8eb08 + - 21a705a6-451d-4ebf-9f9b-acd3268f65cf status: 404 Not Found code: 404 - duration: 40.596507ms + duration: 31.261546ms diff --git a/internal/services/instance/testdata/placement-group-rename.cassette.yaml b/internal/services/instance/testdata/placement-group-rename.cassette.yaml index d7df702b1..5c878a2ee 100644 --- a/internal/services/instance/testdata/placement-group-rename.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-rename.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"foo","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","policy_mode":"enforced","policy_type":"low_latency"}' + body: '{"name":"foo","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"low_latency"}' form: {} headers: Content-Type: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a468ba02-479e-47aa-a7bf-0f20b962077c + - b63b9f55-5d25-4f09-a8cb-640478c81af6 status: 201 Created code: 201 - duration: 154.825756ms + duration: 228.831792ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b3ac3f0-ca4b-4355-8545-3642f984cfe6 + - 888f24d8-a640-4a2a-be50-52132474e249 status: 200 OK code: 200 - duration: 74.480201ms + duration: 95.522629ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc63009f-a032-4969-b980-2e85694c9023 + - 2200f5a0-9244-4bee-92e3-ec438266c524 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 71.450158ms + duration: 50.280351ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36ca6079-b832-4c5b-9c5f-765cb011da21 + - f4a54ad8-2839-4b34-951e-98bb5e7f7c78 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 54.071297ms + duration: 36.085465ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,22 +254,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e666c52a-fdc7-48fd-acbf-24b73515e2a1 + - 05b20c1d-5441-4db7-8c73-37206c85efd8 status: 200 OK code: 200 - duration: 53.838255ms + duration: 44.888695ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 289 + content_length: 295 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-busy-meitner","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","placement_group":"c50eb217-377a-40e3-84cb-4c101bc6a228"}' + body: '{"name":"tf-srv-infallible-meitner","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":"21ee6fd0-a17b-4c15-bf99-a0283e87333d"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2014 + content_length: 2026 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:45.532780+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2014" + - "2026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fbf8c38-b4f8-45ab-aa58-f432d738ecce + - 28881ac4-b929-4177-951b-249e39555241 status: 201 Created code: 201 - duration: 458.332353ms + duration: 2.43657347s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2014 + content_length: 2026 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:45.532780+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2014" + - "2026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842621d9-3f17-46de-886a-cf98a281743e + - a2259d6c-7297-441f-9879-d4e20f25996f status: 200 OK code: 200 - duration: 119.298937ms + duration: 135.249143ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2014 + content_length: 2026 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:25.973457+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:45.532780+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2014" + - "2026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e3be35b-f755-47b7-b8fb-49fc396c72b1 + - 3081d7fa-c854-4885-a52b-f5cc6755cc9e status: 200 OK code: 200 - duration: 111.883432ms + duration: 138.350485ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.654834Z","id":"57924322-6f78-496a-adc4-f2920dfb99c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.654834Z","id":"27e970e2-0dae-4696-a717-08b849304a91","product_resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.654834Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d156a0fc-ac8a-4c40-90fb-f094866531c3 + - b5923b6d-c0b6-4668-90d6-518a247c7191 status: 200 OK code: 200 - duration: 37.00749ms + duration: 85.841536ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action","href_result":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1","id":"66b18433-aaef-47b7-95a6-891d2c2e22ea","progress":0,"started_at":"2025-10-08T23:05:26.720061+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/action","href_result":"/servers/ae493a7a-4b7f-421c-854d-6adc7771633f","id":"21ec3051-b649-4bf9-aa95-7f4b7f87276e","progress":0,"started_at":"2025-10-15T15:03:47.829443+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/66b18433-aaef-47b7-95a6-891d2c2e22ea + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/21ec3051-b649-4bf9-aa95-7f4b7f87276e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19c3f6dd-44a6-4957-b884-c7b3715281cf + - 5b44cfbb-6987-466e-937e-7fcb0f17ddae status: 202 Accepted code: 202 - duration: 186.985625ms + duration: 235.268312ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -535,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2036 + content_length: 2048 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:26.576681+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:47.649492+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2036" + - "2048" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70a7b50c-1b5c-4bc2-a4b4-45097ce26754 + - 82e35aae-72ae-4a7f-92cd-b74b24b56674 status: 200 OK code: 200 - duration: 105.129211ms + duration: 130.07271ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -584,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:50.114036+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f523924-b99a-4828-a23b-38f3d2e1d4ae + - 874d5829-32ee-4964-94ab-c5e03f91127d status: 200 OK code: 200 - duration: 96.551471ms + duration: 150.281066ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:50.114036+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caed9a07-c215-4259-b4aa-dc0c68c205a2 + - fab53447-9a17-4d22-b1e3-ea3666da7b43 status: 200 OK code: 200 - duration: 121.40724ms + duration: 162.769053ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 377a9540-8036-44e3-99db-1703f7cdcdb2 + - 0d83eb3a-6ca4-45a3-98ba-ba57147b3f39 status: 404 Not Found code: 404 - duration: 29.296425ms + duration: 50.925484ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.654834Z","id":"57924322-6f78-496a-adc4-f2920dfb99c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.654834Z","id":"27e970e2-0dae-4696-a717-08b849304a91","product_resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.654834Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a714c42-5e80-4166-8ec1-3f163dac3cfb + - 642958ab-9c55-48f4-9f4e-38bc3c9fc288 status: 200 OK code: 200 - duration: 45.749561ms + duration: 98.472916ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e455280f-713f-4473-a552-048519b0b3f4 + - 9f0b67aa-e611-44bf-b7eb-7213ffc5ae55 status: 200 OK code: 200 - duration: 63.765852ms + duration: 88.821586ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c60bcc-8f6a-4dc1-8526-284d19a46bd3 + - 9e3e033c-c97f-4ca1-8bb2-965bf2e44342 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.133539ms + duration: 93.910355ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c20a975e-2267-459a-8ae3-1b237586912d + - 1124ba0d-2c86-4760-a237-93496e14be33 status: 200 OK code: 200 - duration: 63.787803ms + duration: 88.941811ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce5c36f7-a821-4df0-90be-3159d41e3935 + - 126d9d88-bac5-4716-a63a-0097542b1696 status: 200 OK code: 200 - duration: 62.957956ms + duration: 100.221976ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:50.114036+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca6c4819-6cbb-4608-be79-cfc327376cc2 + - 0105d2f0-12b5-4e59-90e7-8bab11359a93 status: 200 OK code: 200 - duration: 123.157933ms + duration: 136.352028ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a529f0e6-0cb0-4e4f-a448-223377a83e74 + - e9c1841b-d547-4a86-bdcf-833429fffbf5 status: 404 Not Found code: 404 - duration: 34.275748ms + duration: 28.214395ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.654834Z","id":"57924322-6f78-496a-adc4-f2920dfb99c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.654834Z","id":"27e970e2-0dae-4696-a717-08b849304a91","product_resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.654834Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33eb1fdc-2111-4ce3-805a-63fa0a11fa55 + - b2496ffb-3375-4787-8f55-9b0de23a5210 status: 200 OK code: 200 - duration: 62.15527ms + duration: 75.660838ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce88d676-c771-42cc-9e2f-01685ddc55a9 + - 29e523bd-b2de-481d-8aa7-1f548bf3d237 status: 200 OK code: 200 - duration: 60.820607ms + duration: 76.602814ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d89a70fc-20c2-42ad-bb22-49ca1a78ac79 + - 968c19bd-6ec7-4d8d-8e4a-a5430e8d00ed X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.384525ms + duration: 85.693924ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b2248da-0910-4569-a244-edf4d348474e + - f250c8c3-eb2e-4f69-9577-0de4488fdf43 status: 200 OK code: 200 - duration: 52.771919ms + duration: 91.121789ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2171 + content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:29.465867+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"foo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:50.114036+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"foo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2171" + - "2181" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaf1b593-3f48-47c2-ade8-885a814cfb8b + - 0eaa0a2b-8ebe-4b18-886a-cd22fb9a1187 status: 200 OK code: 200 - duration: 91.891679ms + duration: 158.469886ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e028c6b2-f79a-4c4f-b4e2-883bf9f051a2 + - 1d53ca48-4fcf-4ffd-a4e3-390fe055ec59 status: 404 Not Found code: 404 - duration: 28.421564ms + duration: 28.470214ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:26.059582Z","id":"37d5a9fc-2237-4f38-a7fd-d899cef7071d","product_resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.059582Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.654834Z","id":"57924322-6f78-496a-adc4-f2920dfb99c2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.654834Z","id":"27e970e2-0dae-4696-a717-08b849304a91","product_resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.654834Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b78db54-8529-4f70-8299-f8d5fc2c246c + - 80f96d34-c5ba-4c6d-8832-3e188492c956 status: 200 OK code: 200 - duration: 46.374008ms + duration: 76.350912ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf244255-acb6-445a-9c7e-ac44e3f8ab30 + - ab9f1212-07e7-44ef-84bc-69fd205ace26 status: 200 OK code: 200 - duration: 67.325065ms + duration: 95.335066ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a118e9-2929-44d3-bb8f-a26451ff19d4 + - 011160d4-7fc0-4013-a2cd-7a7ff186fa02 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.257529ms + duration: 88.655887ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1521,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: PATCH response: proto: HTTP/2.0 @@ -1529,20 +1529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:33.784203+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:55.249997+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7052e4e-ed1c-4e3a-b110-52bad58d2f64 + - 6de59b48-47a1-425a-9e6e-671448b47ce0 status: 200 OK code: 200 - duration: 200.957829ms + duration: 217.463977ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -1578,20 +1578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:33.784203+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:55.249997+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:34 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,64 +1599,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0ad2e54-52c0-48b4-929f-7166586bbaa8 + - 2f41ff88-abe2-4a78-a22f-eaab3e27d6b8 status: 200 OK code: 200 - duration: 104.376764ms + duration: 165.954125ms - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 353 - uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1/action","href_result":"/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1","id":"3d052ea3-5d20-4ef7-a7f8-a87e21f8c632","progress":0,"started_at":"2025-10-08T23:05:34.196597+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:34 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3d052ea3-5d20-4ef7-a7f8-a87e21f8c632 - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a1786d38-3501-4c60-a453-ed68735c98c5 - status: 202 Accepted - code: 202 - duration: 190.470203ms - - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1672,7 +1619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -1680,20 +1627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 1901 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:55.249997+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "1901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:34 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,48 +1648,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44a33189-40d2-4f10-88c2-d0dc15e7dfd6 + - 322b7fa4-406a-4a48-93bf-89c8cbb065d8 status: 200 OK code: 200 - duration: 96.815037ms - - id: 34 + duration: 183.90305ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/ae493a7a-4b7f-421c-854d-6adc7771633f/action","href_result":"/servers/ae493a7a-4b7f-421c-854d-6adc7771633f","id":"528526f5-5ed7-47b4-9142-476ba8d3089e","progress":0,"started_at":"2025-10-15T15:03:56.005797+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:39 GMT + - Wed, 15 Oct 2025 15:03:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/528526f5-5ed7-47b4-9142-476ba8d3089e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,11 +1701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f21dd09a-a672-46bf-9368-c445529bc40c - status: 200 OK - code: 200 - duration: 97.277122ms - - id: 35 + - f73bd708-8ab3-4363-9eb7-8996e25f7b2c + status: 202 Accepted + code: 202 + duration: 282.146077ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1770,7 +1721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -1778,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 1864 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.973457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-busy-meitner","id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1302","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ab","maintenances":[],"modification_date":"2025-10-08T23:05:34.048067+00:00","name":"tf-srv-busy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:45.532780+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-infallible-meitner","id":"ae493a7a-4b7f-421c-854d-6adc7771633f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"202","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3d","maintenances":[],"modification_date":"2025-10-15T15:03:55.784552+00:00","name":"tf-srv-infallible-meitner","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"57924322-6f78-496a-adc4-f2920dfb99c2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "1864" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,11 +1750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4470a336-9565-4e56-ae3d-ee985f024d61 + - 260fbcf7-4feb-47dd-9a8b-5b7f90e8bd18 status: 200 OK code: 200 - duration: 95.228616ms - - id: 36 + duration: 157.257406ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1819,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9ab19edc-a091-45b4-bc6e-9f5ae10358e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae493a7a-4b7f-421c-854d-6adc7771633f method: GET response: proto: HTTP/2.0 @@ -1829,7 +1780,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9ab19edc-a091-45b4-bc6e-9f5ae10358e1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae493a7a-4b7f-421c-854d-6adc7771633f","type":"not_found"}' headers: Content-Length: - "143" @@ -1838,9 +1789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1848,11 +1799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07e8606a-b20d-480a-a70f-d78ba5b3f1ad + - be955638-c622-4e57-82c1-da85a3754980 status: 404 Not Found code: 404 - duration: 54.260692ms - - id: 37 + duration: 48.285799ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1868,7 +1819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1878,7 +1829,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"57924322-6f78-496a-adc4-f2920dfb99c2","type":"not_found"}' headers: Content-Length: - "143" @@ -1887,9 +1838,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1897,11 +1848,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b50cf5da-0353-4c05-bd9c-167096d7fba6 + - 7d1156a4-8900-4ec0-b65c-2c85e770a1ec status: 404 Not Found code: 404 - duration: 30.225033ms - - id: 38 + duration: 27.537107ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1917,7 +1868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: GET response: proto: HTTP/2.0 @@ -1927,7 +1878,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:26.059582Z","id":"fe46c3fa-f96c-4e46-9c2e-94f40b741a24","last_detached_at":"2025-10-08T23:05:45.405466Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:45.405466Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.654834Z","id":"57924322-6f78-496a-adc4-f2920dfb99c2","last_detached_at":"2025-10-15T15:03:57.441529Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:57.441529Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -1936,9 +1887,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,11 +1897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69d5f856-59d6-4fde-ade1-8e231096fc36 + - 28cb198e-c8da-4d37-8612-298f285f04c9 status: 200 OK code: 200 - duration: 49.522666ms - - id: 39 + duration: 95.462962ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1966,7 +1917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe46c3fa-f96c-4e46-9c2e-94f40b741a24 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/57924322-6f78-496a-adc4-f2920dfb99c2 method: DELETE response: proto: HTTP/2.0 @@ -1983,9 +1934,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1993,11 +1944,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8e2a27d-57a5-4ded-83c7-673dbe9004f3 + - 95ed193e-d1a3-4479-88eb-1348c635c0fa status: 204 No Content code: 204 - duration: 75.707236ms - - id: 40 + duration: 173.390814ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,7 +1966,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: PATCH response: proto: HTTP/2.0 @@ -2025,7 +1976,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2034,9 +1985,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,11 +1995,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43a56a42-b75f-4019-a8ba-3fd11eaf3fca + - 03ac5920-3eca-43d3-b11e-4220023e93c5 status: 200 OK code: 200 - duration: 86.733921ms - - id: 41 + duration: 120.449738ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2064,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -2074,7 +2025,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2083,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2093,11 +2044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d43fc2a-8dd8-4bf2-b779-299029ed24c4 + - 04e7eca5-6acd-4dda-a3da-616be499fb8d status: 200 OK code: 200 - duration: 53.28839ms - - id: 42 + duration: 87.275264ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2113,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -2123,7 +2074,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2132,9 +2083,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2142,11 +2093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72e3ee4a-d989-4107-96d3-99a926ef82c0 + - ace29e62-1892-40dd-99d8-1817289b19af status: 200 OK code: 200 - duration: 66.068062ms - - id: 43 + duration: 92.000862ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2162,7 +2113,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -2172,7 +2123,7 @@ interactions: trailer: {} content_length: 304 uncompressed: false - body: '{"placement_group":{"id":"c50eb217-377a-40e3-84cb-4c101bc6a228","name":"bar","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","name":"bar","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"low_latency","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "304" @@ -2181,9 +2132,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2191,11 +2142,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c9b6cd1-8c61-4865-98f7-178aeb057d09 + - a8fa2aea-e3ce-4cf3-a9e1-68f49e29ac88 status: 200 OK code: 200 - duration: 63.114872ms - - id: 44 + duration: 96.473457ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2211,7 +2162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: DELETE response: proto: HTTP/2.0 @@ -2228,9 +2179,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,11 +2189,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1d8e59c-66ab-4b43-ad85-afe1786dcbfb + - 36f0a1ee-2dbf-477e-b7ed-18d1b65adefe status: 204 No Content code: 204 - duration: 89.637517ms - - id: 45 + duration: 135.832484ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2258,7 +2209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/c50eb217-377a-40e3-84cb-4c101bc6a228 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/21ee6fd0-a17b-4c15-bf99-a0283e87333d method: GET response: proto: HTTP/2.0 @@ -2268,7 +2219,7 @@ interactions: trailer: {} content_length: 152 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"c50eb217-377a-40e3-84cb-4c101bc6a228","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_placement_group","resource_id":"21ee6fd0-a17b-4c15-bf99-a0283e87333d","type":"not_found"}' headers: Content-Length: - "152" @@ -2277,9 +2228,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,7 +2238,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5bee2b7-d786-4877-9121-92b5c92de10d + - 17fa3ee4-e594-4e8e-a870-b096acc7e157 status: 404 Not Found code: 404 - duration: 30.291406ms + duration: 31.732732ms diff --git a/internal/services/instance/testdata/placement-group-tags.cassette.yaml b/internal/services/instance/testdata/placement-group-tags.cassette.yaml index 2eafb82f1..70624db6e 100644 --- a/internal/services/instance/testdata/placement-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/placement-group-tags.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-zealous-wilbur","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' + body: '{"name":"tf-pg-jovial-dewdney","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_type":"max_availability"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 815a1c87-626f-461d-98cc-9cba795b705b + - ecacd10b-1701-4180-bc99-140f07c5fa62 status: 201 Created code: 201 - duration: 637.433764ms + duration: 187.350974ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87a45350-7796-4e2b-8a4e-304121bf4a70 + - c729c2df-a776-4022-aaef-0264b9c894a8 status: 200 OK code: 200 - duration: 139.772718ms + duration: 140.65592ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -138,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 560245f5-5dfc-408b-9d75-63d65493b48c + - 40065ffb-1cbe-4aa2-93b9-08e0b268517f status: 200 OK code: 200 - duration: 108.880631ms + duration: 119.922393ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ebc940a-f5b8-4ebc-9d99-af2edb58ad78 + - cb2578a8-5c14-49d2-85ae-fded350672fa status: 200 OK code: 200 - duration: 129.157399ms + duration: 110.549507ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8dbbc839-3c43-41d1-81e1-0dd18d72c9dd + - 88341b42-7670-49fb-924b-8a5749b49f0c status: 200 OK code: 200 - duration: 105.311037ms + duration: 114.333569ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: PATCH response: proto: HTTP/2.0 @@ -278,7 +278,7 @@ interactions: trailer: {} content_length: 338 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - "338" @@ -287,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b38fa98-e509-489b-a02d-5e78bab4df28 + - fc76e00e-771b-4bca-b754-c1d75afbedc2 status: 200 OK code: 200 - duration: 155.889585ms + duration: 137.438261ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 338 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - "338" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47ed778d-7486-47ce-810f-e15f8e653b0c + - f486bb2f-14b6-4d15-890e-698a0e4f0b31 status: 200 OK code: 200 - duration: 148.484957ms + duration: 111.790743ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 338 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - "338" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5436cbc-958b-4b13-aada-a48ded98de4a + - ccb30cc3-ad19-4e4a-9b5b-c358603b5b1e status: 200 OK code: 200 - duration: 100.083443ms + duration: 131.627481ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 338 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - "338" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf160a95-48c1-4f52-9352-f58bf75ebc1c + - fdc7df71-4a4e-44c4-80a7-93476b6d1433 status: 200 OK code: 200 - duration: 130.114554ms + duration: 93.677788ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 338 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - "338" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7e12855-cbce-4851-8efe-29953131d4b9 + - 1308a41d-f0a9-4880-984a-c82a65df34c4 status: 200 OK code: 200 - duration: 140.6482ms + duration: 118.962125ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: PATCH response: proto: HTTP/2.0 @@ -525,7 +525,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -534,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77e285a6-50cf-479b-9f1a-f1c2145cbeea + - babcd689-0bca-4a7e-8a7c-0771b988f7f7 status: 200 OK code: 200 - duration: 148.71547ms + duration: 188.657295ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -574,7 +574,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf53af95-f3e6-4a9e-b9e4-6aa5aa246234 + - b9f63149-5c28-4c05-a6d7-61f931eaf106 status: 200 OK code: 200 - duration: 115.335276ms + duration: 116.754057ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -623,7 +623,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -632,9 +632,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1293cf3f-aa90-455a-9b70-d568e5bbc66f + - 8661f547-f949-47a2-b3fd-14b893bfab42 status: 200 OK code: 200 - duration: 129.398762ms + duration: 116.967657ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: GET response: proto: HTTP/2.0 @@ -672,7 +672,7 @@ interactions: trailer: {} content_length: 326 uncompressed: false - body: '{"placement_group":{"id":"d383f88b-e974-4543-8f03-ce3faaf70e9d","name":"tf-pg-zealous-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"83e39b4c-ceda-4318-b2ae-d963e6e445a8","name":"tf-pg-jovial-dewdney","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"optional","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "326" @@ -681,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 548e4f22-05c9-4b82-82ae-81c43e5fa82f + - 2099adbe-3ec2-4ee9-a6fb-b432665a69ba status: 200 OK code: 200 - duration: 176.080512ms + duration: 104.051651ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/d383f88b-e974-4543-8f03-ce3faaf70e9d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/83e39b4c-ceda-4318-b2ae-d963e6e445a8 method: DELETE response: proto: HTTP/2.0 @@ -728,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:02 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,7 +738,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1294307e-ea7a-4c3a-8748-19da44570c4d + - a9ead164-31ed-4f83-8c16-ef12205e9765 status: 204 No Content code: 204 - duration: 208.846823ms + duration: 196.05959ms diff --git a/internal/services/instance/testdata/private-nic-basic.cassette.yaml b/internal/services/instance/testdata/private-nic-basic.cassette.yaml index e032d43a3..dbadd6fd3 100644 --- a/internal/services/instance/testdata/private-nic-basic.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddc89154-c22a-4d7c-8a45-311cab0b5a85 + - a1370906-7b58-41c0-9e30-e010b064d732 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.625688ms + duration: 48.022591ms - id: 1 request: proto: HTTP/1.1 @@ -65,7 +65,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccPrivateNIC_Basic","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' + body: '{"name":"TestAccPrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' + body: '{"created_at":"2025-10-15T15:03:25.745883Z","custom_routes_propagation_enabled":true,"id":"f8de6068-e0d4-4cd1-abba-590686dcf13a","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:25.745883Z"}' headers: Content-Length: - "421" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dc56d7e-211a-41ee-920c-d4a486f25033 + - e8ba21ca-de47-4cea-aded-9702e16f7bc3 status: 200 OK code: 200 - duration: 72.10889ms + duration: 75.836118ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f8de6068-e0d4-4cd1-abba-590686dcf13a method: GET response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 421 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' + body: '{"created_at":"2025-10-15T15:03:25.745883Z","custom_routes_propagation_enabled":true,"id":"f8de6068-e0d4-4cd1-abba-590686dcf13a","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:25.745883Z"}' headers: Content-Length: - "421" @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c9e74d9-d073-4a42-8cf7-f33da9dafba5 + - 52445c98-a528-48d2-94a4-715a6c8fcb1d status: 200 OK code: 200 - duration: 30.921136ms + duration: 26.442256ms - id: 3 request: proto: HTTP/1.1 @@ -178,22 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55f6acbe-3ffd-4e34-aaee-669840fda422 + - 39347a34-6224-4d7c-9667-cc19bdc815a3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 54.382104ms + duration: 49.700375ms - id: 4 request: proto: HTTP/1.1 @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,29 +252,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d74337aa-6628-4c3e-8e60-b7c4ff02366e + - 1365e326-c355-4164-8ceb-1cdd6f8139b4 status: 200 OK code: 200 - duration: 108.889699ms + duration: 44.57507ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 232 + content_length: 217 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-brave-bouman","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -282,22 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1109 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:25.858621Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:25.858621Z","id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"},{"created_at":"2025-10-15T15:03:25.858621Z","id":"232beefd-9733-4e61-a41b-12c59d16ea3c","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f0ec::/64","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}],"tags":[],"updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}' headers: Content-Length: - - "1734" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8eaf0b8e-f53f-493a-b057-fb046770580f - status: 201 Created - code: 201 - duration: 472.008855ms + - 8be6949a-498b-4b23-ac34-252393521efd + status: 200 OK + code: 200 + duration: 605.73213ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/20265fc3-cff5-42ad-8c18-f277f51d18d1 method: GET response: proto: HTTP/2.0 @@ -333,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1109 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:25.858621Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:25.858621Z","id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"},{"created_at":"2025-10-15T15:03:25.858621Z","id":"232beefd-9733-4e61-a41b-12c59d16ea3c","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f0ec::/64","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}],"tags":[],"updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}' headers: Content-Length: - - "1734" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,29 +352,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8803fc06-dd4c-478b-a8bc-546f86167067 + - 5a231369-e87c-45bd-abdf-1aea288898af status: 200 OK code: 200 - duration: 94.82672ms + duration: 29.570058ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 217 + content_length: 228 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Basic","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","default_route_propagation_enabled":false}' + body: '{"name":"tf-srv-sad-pare","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -384,20 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1726 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:26.486183+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1109" + - "1726" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaee099c-c760-46d7-9ec8-3ad03bf788ee - status: 200 OK - code: 200 - duration: 737.408533ms + - aa0179ad-af92-4eda-adf4-44a1e4964b94 + status: 201 Created + code: 201 + duration: 1.263856885s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 1726 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:26.486183+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1109" + - "1726" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3230ef9d-317d-40e9-945e-641f0e5066d8 + - 20c6fd00-88cd-404d-aa17-a2501b1583e7 status: 200 OK code: 200 - duration: 24.433078ms + duration: 143.991823ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1726 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:21.464314+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:26.486183+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1734" + - "1726" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 611a0ebc-f7a5-4e57-9763-da0f5eab0a37 + - 43f0d5e5-6296-43a4-bfcf-d468aa39e9c5 status: 200 OK code: 200 - duration: 95.442171ms + duration: 140.453853ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:26.629420Z","id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:26.629420Z","id":"b34b64e6-5380-47c1-af3b-900c585b30ee","product_resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:26.629420Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0b811c4-3bac-4b86-83a4-4fc12af1dd0e + - a59f3f5f-f666-4663-9757-f5ad916a4b17 status: 200 OK code: 200 - duration: 53.77049ms + duration: 80.202011ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action","href_result":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36","id":"a030acb0-6feb-4639-a468-a058ef4b1cac","progress":0,"started_at":"2025-10-08T23:05:22.168273+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action","href_result":"/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5","id":"8054d131-41a6-45b7-bffc-d37952ffe03b","progress":0,"started_at":"2025-10-15T15:03:27.734252+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a030acb0-6feb-4639-a468-a058ef4b1cac + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8054d131-41a6-45b7-bffc-d37952ffe03b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ccb5cd1-216a-478b-aec4-145e2ac38553 + - 35c4966b-f4ea-4670-8c24-214e31305bba status: 202 Accepted code: 202 - duration: 186.874121ms + duration: 303.176451ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1748 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:22.033570+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:27.492746+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1756" + - "1748" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a23c66f4-61c5-4227-9af1-1b4b612037d5 + - 2f73752e-d9aa-40e2-82d1-3137c5519389 status: 200 OK code: 200 - duration: 98.673064ms + duration: 142.572113ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1882 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d19fc53-df87-4bc3-a684-7350a27262aa + - f89f66a9-4827-4cc7-b512-2a929c042639 status: 200 OK code: 200 - duration: 117.353875ms + duration: 130.523638ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1882 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1832ae08-c9e2-4774-9360-bc6b094d7749 + - e9e2cb2e-3216-4476-8796-f63030904d26 status: 200 OK code: 200 - duration: 104.54581ms + duration: 214.997722ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' headers: Content-Length: - "143" @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12a84ec9-70ed-4207-9b6a-c22aeb28e9ca + - 6e0e2967-716f-4b0c-b4f5-8344b8eba4af status: 404 Not Found code: 404 - duration: 33.341729ms + duration: 27.120099ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -831,7 +831,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:26.629420Z","id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:26.629420Z","id":"b34b64e6-5380-47c1-af3b-900c585b30ee","product_resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:26.629420Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b33968d-7d34-468a-8cce-bd3ffa1e95d1 + - 3a28be86-bb66-4338-8030-c80a6987188f status: 200 OK code: 200 - duration: 52.790555ms + duration: 92.33188ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/user_data method: GET response: proto: HTTP/2.0 @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6108d5f9-4054-4ab2-a491-19e44ea3efc1 + - 9f1f6dae-0552-4ab0-8eb1-85c7d85d9937 status: 200 OK code: 200 - duration: 54.365151ms + duration: 90.189775ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics method: GET response: proto: HTTP/2.0 @@ -938,11 +938,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,12 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ab195de-8d51-4294-a1fe-7dc6f44fd929 + - f8244daa-8812-4914-abed-7c6dca72f0f3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.292775ms + duration: 103.284577ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1882 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c36c8544-82ad-43d7-a4bd-1bd054df17e7 + - abe19d76-0dc3-403f-83e4-339935dc2147 status: 200 OK code: 200 - duration: 111.673473ms + duration: 141.993476ms - id: 20 request: proto: HTTP/1.1 @@ -1016,14 +1016,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a"}' + body: '{"private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics method: POST response: proto: HTTP/2.0 @@ -1033,7 +1033,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1042,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 315ebadb-0fe6-4cc2-b100-f536dec8c1b1 + - 03ac9246-e618-423a-acdd-097db5444e36 status: 201 Created code: 201 - duration: 800.733369ms + duration: 669.04726ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +1072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1091,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2cb03bf-5df3-48cd-92ce-20c117958110 + - d9c90ae4-a2ab-4310-8ba2-3f7da35c713b status: 200 OK code: 200 - duration: 59.978498ms + duration: 101.996283ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1131,7 +1131,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7b66c27-ec2b-4fcd-8860-1da5280c70ba + - 2ca610df-2b56-4575-9c31-5c8628161754 status: 200 OK code: 200 - duration: 58.014609ms + duration: 98.410608ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f4c67be-f63c-4cb4-9700-f8aa7c735e10 + - ef9ba1ee-1900-477b-b654-630b133e773b status: 200 OK code: 200 - duration: 54.224308ms + duration: 111.317984ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7d9029-eead-4d46-b3e7-443dd4b46e7b + - cb4ddbf3-a3a2-4e8c-bed2-f32079300e51 status: 200 OK code: 200 - duration: 59.697193ms + duration: 124.524713ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1278,7 +1278,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:34.002941+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e34bf71a-1a20-4e9c-9122-5e7c18af74f2 + - 4a5e2938-9808-4612-b490-e5ef6da30a10 status: 200 OK code: 200 - duration: 59.858511ms + duration: 109.513532ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1325,20 +1325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c54e2e59-0d17-4b69-9bf3-437c7739cc84 + - 24ec6501-32a1-48d6-bd56-c523125e6348 status: 200 OK code: 200 - duration: 60.397257ms + duration: 137.885469ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1374,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:59 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aef77e0e-a5b3-4494-aa3e-dbb9cf34b8fb + - 15b0ae83-160e-452a-9067-bc72268163bd status: 200 OK code: 200 - duration: 72.577296ms + duration: 102.33893ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -1423,20 +1423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 2340 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d4c4ef9-172a-4db8-ac7f-6cdd22dde05f + - e47c7964-b158-46f1-b4df-c0f5a636fb5e status: 200 OK code: 200 - duration: 59.084283ms + duration: 147.857932ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=20265fc3-cff5-42ad-8c18-f277f51d18d1&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1472,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1060 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f0ec:8469:c40d:cdd5:29f5/64","created_at":"2025-10-15T15:03:34.235237Z","id":"88e82565-bdde-414f-b28a-990a511a61cd","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"232beefd-9733-4e61-a41b-12c59d16ea3c"},"tags":[],"updated_at":"2025-10-15T15:03:34.235237Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:03:34.071513Z","id":"63c9049d-31f3-4afb-87f6-07a7ab568ffa","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b"},"tags":[],"updated_at":"2025-10-15T15:03:34.071513Z","zone":null}],"total_count":2}' headers: Content-Length: - - "473" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f5aad2a-5f79-4da5-b853-456f76f0c190 + - 02a7b19a-6d11-467b-9b2a-f0cb4cddc2ce status: 200 OK code: 200 - duration: 50.057032ms + duration: 197.944969ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1521,20 +1521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:05:28.061252+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f64e29e-2b7c-447b-947a-916aab56ace0 + - ddab3716-d850-4f28-b516-b28bf82f3e83 status: 200 OK code: 200 - duration: 63.876716ms + duration: 104.795254ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f8de6068-e0d4-4cd1-abba-590686dcf13a method: GET response: proto: HTTP/2.0 @@ -1570,20 +1570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 421 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:25.745883Z","custom_routes_propagation_enabled":true,"id":"f8de6068-e0d4-4cd1-abba-590686dcf13a","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:25.745883Z"}' headers: Content-Length: - - "475" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3f7cee-c36e-4d08-9d94-009c80051afd + - a1216d5d-38fd-465b-bdae-b18f6476cd04 status: 200 OK code: 200 - duration: 50.920189ms + duration: 35.267558ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/20265fc3-cff5-42ad-8c18-f277f51d18d1 method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1109 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:25.858621Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:25.858621Z","id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"},{"created_at":"2025-10-15T15:03:25.858621Z","id":"232beefd-9733-4e61-a41b-12c59d16ea3c","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:f0ec::/64","updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}],"tags":[],"updated_at":"2025-10-15T15:03:25.858621Z","vpc_id":"f8de6068-e0d4-4cd1-abba-590686dcf13a"}' headers: Content-Length: - - "475" + - "1109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f75ace7a-cab0-425d-ad14-d346980f0863 + - f14b72b3-2871-4d39-a32c-b3c911b3cc66 status: 200 OK code: 200 - duration: 60.068762ms + duration: 26.050581ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -1668,20 +1668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 2340 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56e085fd-a524-4551-bbcd-9329b7630597 + - 9fa6e1b5-7d34-4dd9-b744-1787d869fb11 status: 200 OK code: 200 - duration: 102.13326ms + duration: 148.433081ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b32949d8-3db8-4189-a3d1-d8120647099a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' headers: Content-Length: - - "1066" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9fc844f-ccbf-47e0-bdb9-3cf1ab996741 - status: 200 OK - code: 200 - duration: 47.763853ms + - c33aa67e-ccf9-45bf-8d47-0f1d7cc42b33 + status: 404 Not Found + code: 404 + duration: 27.336552ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -1766,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 701 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:26.629420Z","id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:26.629420Z","id":"b34b64e6-5380-47c1-af3b-900c585b30ee","product_resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:26.629420Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df6aaf9c-4945-4ea8-ad44-cb3f5f7d8f0e + - 861ec458-3448-4ab1-9d6a-0c5c81dab569 status: 200 OK code: 200 - duration: 53.952866ms + duration: 79.009109ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/user_data method: GET response: proto: HTTP/2.0 @@ -1815,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.122760Z","custom_routes_propagation_enabled":true,"id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f","is_default":false,"name":"TestAccPrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:21.122760Z"}' + body: '{"user_data":[]}' headers: Content-Length: - - "421" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6811c78d-2a07-486d-93d0-6a51c4bff25e + - e6720d37-57c6-4436-84fd-9466c167f20b status: 200 OK code: 200 - duration: 28.23307ms + duration: 94.353382ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics method: GET response: proto: HTTP/2.0 @@ -1864,20 +1864,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1109 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.236847Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b32949d8-3db8-4189-a3d1-d8120647099a","name":"TestAccScalewayInstancePrivateNIC_Basic","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:21.236847Z","id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.28.0/22","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"},{"created_at":"2025-10-08T23:05:21.236847Z","id":"d14cd50a-6190-48ed-8851-26596d959745","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:aaef::/64","updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}],"tags":[],"updated_at":"2025-10-08T23:05:21.236847Z","vpc_id":"5c0b3ea9-ae41-447b-85fa-d5d2b496869f"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1109" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1887,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 659d1a6e-9613-4a1c-8a97-c763e04c7f0d + - 14ca8458-dec1-4cbc-9309-001b427e72f4 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 20.60901ms + duration: 91.885235ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1913,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 1060 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f0ec:8469:c40d:cdd5:29f5/64","created_at":"2025-10-15T15:03:34.235237Z","id":"88e82565-bdde-414f-b28a-990a511a61cd","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"232beefd-9733-4e61-a41b-12c59d16ea3c"},"tags":[],"updated_at":"2025-10-15T15:03:34.235237Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:03:34.071513Z","id":"63c9049d-31f3-4afb-87f6-07a7ab568ffa","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b"},"tags":[],"updated_at":"2025-10-15T15:03:34.071513Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2349" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59f822f0-cc6c-45a6-b296-3b6aad76f11a + - 8a9d6350-c272-4387-b75b-65fbc5bd5a4e status: 200 OK code: 200 - duration: 105.230496ms + duration: 25.229923ms - id: 39 request: proto: HTTP/1.1 @@ -1954,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -1962,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,10 +1987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c30b8c9a-4baf-4cb5-8f02-57e9c290197f - status: 404 Not Found - code: 404 - duration: 30.217856ms + - fe72d6d6-bfef-4c53-a1b1-9dcd801ac3c1 + status: 200 OK + code: 200 + duration: 124.742685ms - id: 40 request: proto: HTTP/1.1 @@ -2003,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -2011,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2340 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:21.546032Z","id":"9824c0af-8915-41ed-900a-5ef64659a9f7","product_resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:21.546032Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2340" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 330249ca-def6-4d89-b602-4f4d28ac61df + - dc2f1f3b-0a52-4355-b9b3-4afbae1660b0 status: 200 OK code: 200 - duration: 49.038484ms + duration: 153.329621ms - id: 41 request: proto: HTTP/1.1 @@ -2052,7 +2056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/user_data + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=20265fc3-cff5-42ad-8c18-f277f51d18d1&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=4fa22ed6-0508-4e33-933b-9f0e5b6c5a64&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2060,20 +2064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1060 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fd5f:519c:6d46:f0ec:8469:c40d:cdd5:29f5/64","created_at":"2025-10-15T15:03:34.235237Z","id":"88e82565-bdde-414f-b28a-990a511a61cd","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"232beefd-9733-4e61-a41b-12c59d16ea3c"},"tags":[],"updated_at":"2025-10-15T15:03:34.235237Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:03:34.071513Z","id":"63c9049d-31f3-4afb-87f6-07a7ab568ffa","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","mac_address":"02:00:00:15:22:F2","name":"tf-srv-sad-pare","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"0078b40f-ea4f-4e0c-8630-d599abb9d53b"},"tags":[],"updated_at":"2025-10-15T15:03:34.071513Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f2d1b2f-bb27-41bd-9d00-50319c67ec78 + - 2a37c61c-5729-4d40-9f31-e5268a1c447e status: 200 OK code: 200 - duration: 41.848998ms + duration: 44.459317ms - id: 42 request: proto: HTTP/1.1 @@ -2101,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -2109,22 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 475 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:33.755801+00:00","id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","ipam_ip_ids":["63c9049d-31f3-4afb-87f6-07a7ab568ffa","88e82565-bdde-414f-b28a-990a511a61cd"],"mac_address":"02:00:00:15:22:f2","modification_date":"2025-10-15T15:03:59.144324+00:00","private_network_id":"20265fc3-cff5-42ad-8c18-f277f51d18d1","server_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2132,12 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c61b219-6308-415d-bfd9-fa72f7c63e29 - X-Total-Count: - - "1" + - 2fef3376-3181-42c1-bc86-e078b370dfb3 status: 200 OK code: 200 - duration: 46.723866ms + duration: 103.252453ms - id: 43 request: proto: HTTP/1.1 @@ -2154,28 +2154,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 0 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' + body: "" headers: - Content-Length: - - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d44e348-c1b2-4648-860e-431e353b1d58 - status: 200 OK - code: 200 - duration: 25.336615ms + - e64b6ed8-91ff-48cf-b06b-f7cff49a470f + status: 204 No Content + code: 204 + duration: 394.675607ms - id: 44 request: proto: HTTP/1.1 @@ -2203,7 +2201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -2211,20 +2209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 148 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"4fa22ed6-0508-4e33-933b-9f0e5b6c5a64","type":"not_found"}' headers: Content-Length: - - "475" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,10 +2230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f6577cd-d329-4d62-8a59-8fe07cbea869 - status: 200 OK - code: 200 - duration: 64.510699ms + - 78cb9ed5-92e1-4177-b3f2-117fd8946acc + status: 404 Not Found + code: 404 + duration: 85.467396ms - id: 45 request: proto: HTTP/1.1 @@ -2252,7 +2250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -2260,20 +2258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2349 + content_length: 1882 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2349" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,10 +2279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 546abac2-962e-4dcb-85ea-eb66447b5630 + - e5882e9f-9040-4be4-a1c0-fedea9ebef72 status: 200 OK code: 200 - duration: 118.359492ms + duration: 142.017127ms - id: 46 request: proto: HTTP/1.1 @@ -2301,7 +2299,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b32949d8-3db8-4189-a3d1-d8120647099a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=867ecb94-82c6-4b20-b03e-5597be1b1f8f&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -2309,20 +2307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1882 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:aaef:8c55:d401:256:d54/64","created_at":"2025-10-08T23:05:28.317984Z","id":"39b956c1-bfda-42ed-a59d-883eb6eff43d","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d14cd50a-6190-48ed-8851-26596d959745"},"tags":[],"updated_at":"2025-10-08T23:05:28.317984Z","zone":null},{"address":"172.16.28.2/22","created_at":"2025-10-08T23:05:28.157059Z","id":"9bb467b0-e978-4ba9-bf58-8c556c04ea3c","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","mac_address":"02:00:00:10:77:48","name":"tf-srv-brave-bouman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5c0b2fe4-b40f-4609-8e0f-82f51bbbd9f9"},"tags":[],"updated_at":"2025-10-08T23:05:28.157059Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:03:30.323340+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1066" + - "1882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,205 +2328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8829340-11b8-48de-8808-88a895f8434c + - 8cb2fe52-7299-447d-9300-14d62824bfb0 status: 200 OK code: 200 - duration: 50.244075ms + duration: 152.823483ms - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 475 - uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:27.880982+00:00","id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","ipam_ip_ids":["9bb467b0-e978-4ba9-bf58-8c556c04ea3c","39b956c1-bfda-42ed-a59d-883eb6eff43d"],"mac_address":"02:00:00:10:77:48","modification_date":"2025-10-08T23:06:16.098990+00:00","private_network_id":"b32949d8-3db8-4189-a3d1-d8120647099a","server_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","state":"available","tags":[],"zone":"fr-par-1"}}' - headers: - Content-Length: - - "475" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 926ae6de-5fe7-4107-8659-a45baa9911be - status: 200 OK - code: 200 - duration: 52.194428ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 25c736a4-3786-47a9-815f-084a567264ac - status: 204 No Content - code: 204 - duration: 311.559323ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 148 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"867ecb94-82c6-4b20-b03e-5597be1b1f8f","type":"not_found"}' - headers: - Content-Length: - - "148" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7792e57c-0960-4caf-a2ba-576a823a1dc9 - status: 404 Not Found - code: 404 - duration: 59.2468ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1891 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:05:24.495594+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1891" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 55746d16-a5f8-48f1-b8d1-2b5e99ede3d4 - status: 200 OK - code: 200 - duration: 97.766681ms - - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2546,7 +2350,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action method: POST response: proto: HTTP/2.0 @@ -2556,7 +2360,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/action","href_result":"/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36","id":"7a308b48-8056-4d81-a7b3-511682b53305","progress":0,"started_at":"2025-10-08T23:06:21.281892+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/action","href_result":"/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5","id":"aa222fb6-c9e1-499a-8ee2-5456440bc8bc","progress":0,"started_at":"2025-10-15T15:04:03.041216+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2565,11 +2369,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:21 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7a308b48-8056-4d81-a7b3-511682b53305 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa222fb6-c9e1-499a-8ee2-5456440bc8bc Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,11 +2381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0d28699-f742-466d-aaac-51a1e9ba4660 + - f13570a7-4211-4afb-8ce3-46540888f901 status: 202 Accepted code: 202 - duration: 186.827249ms - - id: 52 + duration: 313.006692ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2597,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 1845 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.486183+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-pare","id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"303","node_id":"26","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:29","maintenances":[],"modification_date":"2025-10-15T15:04:02.807947+00:00","name":"tf-srv-sad-pare","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "1845" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:21 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,11 +2430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2419c742-7d8e-4d5d-89b4-ff8e2f761e5f + - 5dccc4ca-bfd1-4b43-acdd-93b1ba1c9b6a status: 200 OK code: 200 - duration: 97.613548ms - - id: 53 + duration: 150.818266ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2646,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b32949d8-3db8-4189-a3d1-d8120647099a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/20265fc3-cff5-42ad-8c18-f277f51d18d1 method: DELETE response: proto: HTTP/2.0 @@ -2663,9 +2467,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:22 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2673,11 +2477,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd19a5b3-01cc-4034-a266-4965c09687aa + - 85bd6944-0060-44f4-a192-8b900cb341c2 status: 204 No Content code: 204 - duration: 1.199415973s - - id: 54 + duration: 1.364658226s + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2693,7 +2497,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c0b3ea9-ae41-447b-85fa-d5d2b496869f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f8de6068-e0d4-4cd1-abba-590686dcf13a method: DELETE response: proto: HTTP/2.0 @@ -2710,9 +2514,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:22 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2720,109 +2524,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21b8f0a0-ddf8-47af-8320-30759900c33b + - d739f789-b828-4d3b-877a-c06a92094bab status: 204 No Content code: 204 - duration: 135.525634ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1854" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a58843c6-d9a0-42a0-97cc-6633ce3060bc - status: 200 OK - code: 200 - duration: 100.987676ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1854 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:21.464314+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-bouman","id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1801","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a7","maintenances":[],"modification_date":"2025-10-08T23:06:21.136906+00:00","name":"tf-srv-brave-bouman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1854" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e1f9591e-1aa4-40c3-81b3-f7edbca13acb - status: 200 OK - code: 200 - duration: 124.224579ms - - id: 57 + duration: 148.398019ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2838,7 +2544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5 method: GET response: proto: HTTP/2.0 @@ -2848,7 +2554,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","type":"not_found"}' headers: Content-Length: - "143" @@ -2857,9 +2563,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2867,11 +2573,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496cc2c2-e874-4ce5-9ddc-7673b0bd885c + - dfb06d6a-0482-4e9f-8f92-97503ebc585e status: 404 Not Found code: 404 - duration: 48.643559ms - - id: 58 + duration: 49.311956ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2887,7 +2593,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -2897,7 +2603,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","type":"not_found"}' headers: Content-Length: - "143" @@ -2906,9 +2612,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2916,11 +2622,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88adb5cf-9e6b-4a9f-ade9-4d38c02a7877 + - 9263125b-3df9-4168-9771-5fe04a5bfd62 status: 404 Not Found code: 404 - duration: 38.732764ms - - id: 59 + duration: 25.781508ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2936,7 +2642,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: GET response: proto: HTTP/2.0 @@ -2946,7 +2652,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:21.546032Z","id":"bd5a207c-3980-42b6-8734-09ea2e97e5e9","last_detached_at":"2025-10-08T23:06:33.009239Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:33.009239Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:26.629420Z","id":"b80cb9a3-a38a-48e8-bb86-fbd2e5528e92","last_detached_at":"2025-10-15T15:04:04.512373Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:04.512373Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2955,9 +2661,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2965,11 +2671,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d08bfcd-ecc6-4c41-80b9-ea727888dfae + - 632664dd-08f3-4859-8f5c-694362b2416d status: 200 OK code: 200 - duration: 43.425254ms - - id: 60 + duration: 91.286839ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2985,7 +2691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/bd5a207c-3980-42b6-8734-09ea2e97e5e9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b80cb9a3-a38a-48e8-bb86-fbd2e5528e92 method: DELETE response: proto: HTTP/2.0 @@ -3002,9 +2708,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3012,11 +2718,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48cfa034-80b0-4002-bce3-7d417bf85234 + - 6cf1dc5a-66fb-417c-ad11-eec993520a2f status: 204 No Content code: 204 - duration: 93.302969ms - - id: 61 + duration: 177.568155ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3032,7 +2738,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9fc16062-307b-4a18-8f0f-ba204f13fc36/private_nics/867ecb94-82c6-4b20-b03e-5597be1b1f8f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a302a7f3-6488-4ed7-9285-579dc7e9b6a5/private_nics/4fa22ed6-0508-4e33-933b-9f0e5b6c5a64 method: GET response: proto: HTTP/2.0 @@ -3042,7 +2748,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9fc16062-307b-4a18-8f0f-ba204f13fc36","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a302a7f3-6488-4ed7-9285-579dc7e9b6a5","type":"not_found"}' headers: Content-Length: - "143" @@ -3051,9 +2757,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3061,7 +2767,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63bb4bdc-19c1-40ec-91fe-64332682a500 + - ca7b1801-5fff-4449-8313-b7178067a4fa status: 404 Not Found code: 404 - duration: 38.739747ms + duration: 22.273933ms diff --git a/internal/services/instance/testdata/private-nic-tags.cassette.yaml b/internal/services/instance/testdata/private-nic-tags.cassette.yaml index 661f6ba8e..986a68a2f 100644 --- a/internal/services/instance/testdata/private-nic-tags.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-tags.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25952774-429d-40cc-bef4-6aa79365260c + - 1a4cf7a8-265c-48c6-a490-322e6161bf49 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.336272ms + duration: 70.526263ms - id: 1 request: proto: HTTP/1.1 @@ -65,7 +65,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccPrivateNIC_Tags","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' + body: '{"name":"TestAccPrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e1e17d4-ab89-4c2d-ae6d-3d30a9a53bd4 + - 137bff2a-9d0d-41e9-8681-5f89e24498b5 status: 200 OK code: 200 - duration: 61.092024ms + duration: 114.32135ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -129,20 +129,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 14295 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "420" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +152,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8c4229f-0934-4e99-ac20-828e92eb9356 + - 535f9ed9-4411-4dfe-8a24-f10b613c9db7 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 37.16909ms + duration: 57.52599ms - id: 3 request: proto: HTTP/1.1 @@ -170,7 +174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -178,22 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 420 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - - "19730" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc8a04d1-8bc7-43a2-8a9d-53f7d025cef4 - X-Total-Count: - - "75" + - 383cd457-f885-45db-a580-f8745fb99052 status: 200 OK code: 200 - duration: 47.014837ms + duration: 23.046432ms - id: 4 request: proto: HTTP/1.1 @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,29 +252,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4216161e-d6be-43c7-be60-9b4ab08096b9 + - b28756f4-adf5-4afc-bcd3-20d24725f8a8 status: 200 OK code: 200 - duration: 45.153088ms + duration: 46.639888ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 236 + content_length: 216 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-musing-morse","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -282,22 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1742" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76b4fafe-d738-4b4b-b5a6-ce2310e42c62 - status: 201 Created - code: 201 - duration: 492.941214ms + - 11dd4650-1caa-49c9-884d-0f09b235e0cf + status: 200 OK + code: 200 + duration: 623.774326ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -333,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1742" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,28 +352,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84ddf5f4-e5d1-487c-a875-d3757ff4cd93 + - 88378d62-3a12-40c7-a50e-a627594c1508 status: 200 OK code: 200 - duration: 93.608385ms + duration: 21.082561ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 236 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-keen-ritchie","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1742" @@ -393,9 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,50 +405,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d42e48-4202-4cc2-a075-72832e375c0c - status: 200 OK - code: 200 - duration: 109.318223ms + - a5f5125a-3d5c-45c5-810a-6b999b250167 + status: 201 Created + code: 201 + duration: 1.390871112s - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 216 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_Tags","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1742 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1107" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da91d3b6-86d6-4200-9cd3-4f112201d1d5 + - 17b8f9d9-46df-476d-ada5-97a139c8603b status: 200 OK code: 200 - duration: 802.824681ms + duration: 144.99726ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1742 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1107" + - "1742" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcac6682-289f-4a38-9877-57ec44d0f4f4 + - 9faa3334-a497-4e4a-910a-cd24fca2af8c status: 200 OK code: 200 - duration: 29.295425ms + duration: 151.951355ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1742" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9ef966e-bdd6-4ddc-ad02-7434f0328695 + - b6b7e3b0-5711-4d04-ba78-85ab0dd429e1 status: 200 OK code: 200 - duration: 108.152665ms + duration: 129.235182ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b80324-bd42-4167-87ef-e2909712ae33 + - c389fe2f-9c2f-483c-b4aa-f580c069b2bb status: 404 Not Found code: 404 - duration: 37.374761ms + duration: 25.917503ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b09f2f0-a429-47a1-96e0-414e0f205ca6 + - 810d611e-4d2d-4780-8c74-6581c25b7083 status: 200 OK code: 200 - duration: 43.209809ms + duration: 96.295579ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b58123d2-e315-4453-9e5c-089a57cb7ca0 + - e797025a-ceec-4803-b629-e63f0cdd86d8 status: 200 OK code: 200 - duration: 57.888629ms + duration: 110.592704ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52208f7a-443b-469e-a8cd-257ceec631cf + - a9a16b42-676c-4f5a-9980-ac5b64b0cf28 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.148636ms + duration: 101.902838ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -782,7 +782,7 @@ interactions: trailer: {} content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1742" @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b335acba-8821-4596-a2cd-400757711f5b + - 7403d82e-3929-4697-affb-b1c0f5010873 status: 200 OK code: 200 - duration: 93.56829ms + duration: 153.943148ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c"}' + body: '{"private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a169085d-1f6f-4fb8-a95d-7e32608c18d5 + - 9eb184a6-9ab1-4c3d-b29b-b686e9f9c2d7 status: 201 Created code: 201 - duration: 454.341903ms + duration: 560.283883ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bca6d45c-d616-422a-97e4-b2782d12092e + - 1fd8168a-bdf0-4bf9-a479-0c57cc5a68c4 status: 200 OK code: 200 - duration: 56.972852ms + duration: 94.989353ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ad81c14-fa5f-40b9-8a26-114656e5de54 + - 5038316c-4491-487f-8da9-69e3974f4a7a status: 200 OK code: 200 - duration: 57.046439ms + duration: 90.875493ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deabba80-7dd4-4f1b-95dd-7e8105314db1 + - 4e72596d-dad0-4b58-aec3-e3f64a3e662a status: 200 OK code: 200 - duration: 100.020331ms + duration: 132.453305ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1027,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79bb854d-502c-4d1b-9843-f5e59a8e686c + - 0e800930-00fa-41aa-807f-598c93031336 status: 200 OK code: 200 - duration: 65.400834ms + duration: 50.831074ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e692457-1142-475f-9ffe-46729b4e9d5c + - c209d409-e63f-45a7-aa76-4d6b3ea78d13 status: 200 OK code: 200 - duration: 53.801678ms + duration: 109.568737ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -1127,7 +1127,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -1136,9 +1136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b50bd377-ca19-4b8b-a187-c257c83ff3e3 + - 1e2ff8e9-94e7-4040-a3d9-ec134d6fddc5 status: 200 OK code: 200 - duration: 30.651016ms + duration: 34.254538ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1107" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40a820d8-0112-4858-8f50-0dc0c8461bc0 + - 146e6b40-33be-447e-9eec-9989b3315c3b status: 200 OK code: 200 - duration: 23.108504ms + duration: 26.533908ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -1225,7 +1225,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -1234,9 +1234,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6198267e-3afe-40ea-8c7c-c5da17fd58b8 + - aac4ef69-27b8-4797-bbc8-e347ee4b74d9 status: 200 OK code: 200 - duration: 110.824934ms + duration: 137.801208ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -1274,7 +1274,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -1283,9 +1283,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37055f98-457c-456c-9cc5-e7030ff311c6 + - 9f37e4ce-4e1e-4d60-b490-72ffe56cbf13 status: 404 Not Found code: 404 - duration: 27.339402ms + duration: 27.795512ms - id: 26 request: proto: HTTP/1.1 @@ -1313,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -1323,7 +1323,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1332,9 +1332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91214cc3-739e-4c00-aad0-35e9bc6c2a81 + - 3d72cd64-3247-437c-afc3-4bd1d2c9ef23 status: 200 OK code: 200 - duration: 40.231072ms + duration: 94.605914ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -1381,9 +1381,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40a92367-0e11-4a7c-8faa-a27ba7132b13 + - 58ed46c2-f175-444b-9747-cbf04d0e50ac status: 200 OK code: 200 - duration: 54.863705ms + duration: 92.899657ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -1421,7 +1421,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1430,11 +1430,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,12 +1442,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34a5c65a-882e-48b4-aa37-fd8dd1730143 + - 1ac737e5-ee27-42ec-b1c3-a65350ba65b2 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 58.857604ms + duration: 88.776629ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1472,20 +1472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b207dd0-d1d7-4cb1-9770-f84bbd8d75e0 + - d9590732-2080-440f-a8b2-e699fe5579d2 status: 200 OK code: 200 - duration: 31.065193ms + duration: 24.391513ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -1523,7 +1523,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1532,9 +1532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,10 +1542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa818016-b212-4088-be9e-065e7b9fc273 + - 7faade8a-c45c-42f4-baad-b6a809473c4f status: 200 OK code: 200 - duration: 56.576658ms + duration: 112.800424ms - id: 31 request: proto: HTTP/1.1 @@ -1562,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -1572,7 +1572,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -1581,9 +1581,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,10 +1591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8706803b-673e-4e61-9861-30e49279b745 + - 5bc2806e-ce19-4344-9621-e2da18de5de1 status: 200 OK code: 200 - duration: 85.358993ms + duration: 164.485448ms - id: 32 request: proto: HTTP/1.1 @@ -1611,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1619,20 +1619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,10 +1640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d5a0802-81f0-47ce-8715-807f82b7bf17 + - fc6635f9-ee80-4e8f-b18a-bc7c16ad4199 status: 200 OK code: 200 - duration: 46.434582ms + duration: 55.626542ms - id: 33 request: proto: HTTP/1.1 @@ -1660,7 +1660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -1670,7 +1670,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -1679,9 +1679,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,10 +1689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 076736b6-c75e-4b5b-acfe-63ef1d453411 + - 129ec86e-e0df-4808-a068-c6cb157d48b7 status: 200 OK code: 200 - duration: 27.003089ms + duration: 35.157952ms - id: 34 request: proto: HTTP/1.1 @@ -1709,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -1717,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1107" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d7b5fc4-ba92-40d5-9b02-93407ef86067 + - 468cb8d7-2157-40b3-8981-703ab477c302 status: 200 OK code: 200 - duration: 30.55059ms + duration: 29.457448ms - id: 35 request: proto: HTTP/1.1 @@ -1758,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -1768,7 +1768,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -1777,9 +1777,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d959eef-61a8-4621-985e-e59438d05c87 + - df5965b0-ff58-4035-9eb6-64185c5c5460 status: 200 OK code: 200 - duration: 89.442887ms + duration: 149.409786ms - id: 36 request: proto: HTTP/1.1 @@ -1807,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -1817,7 +1817,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -1826,9 +1826,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c63ded-8e6c-480c-a4dd-957b0c49677d + - f65a6843-4df1-4bc2-b817-183614cd1c4c status: 404 Not Found code: 404 - duration: 28.526921ms + duration: 27.845035ms - id: 37 request: proto: HTTP/1.1 @@ -1856,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -1866,7 +1866,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1875,9 +1875,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88e7a4a9-adc2-4df4-9103-4c63c4a05d72 + - af1f02e2-99ea-4fd1-827f-6987df962c9d status: 200 OK code: 200 - duration: 43.434765ms + duration: 77.755856ms - id: 38 request: proto: HTTP/1.1 @@ -1905,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -1924,9 +1924,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3521130d-d490-4595-98c3-6337fc6eb0bd + - dc0c17a9-33dd-4cf5-a283-31153487a1a7 status: 200 OK code: 200 - duration: 49.389004ms + duration: 88.712871ms - id: 39 request: proto: HTTP/1.1 @@ -1954,7 +1954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -1964,7 +1964,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -1973,11 +1973,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,12 +1985,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e447df58-bb63-48a0-b163-0188cdbb894d + - 43f7df30-01e7-4732-91ec-8fb2394feb33 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 81.029954ms + duration: 110.517166ms - id: 40 request: proto: HTTP/1.1 @@ -2007,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2015,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b418ddcf-f654-4087-ade8-e85e7f93cdf9 + - 2eaab452-0ef9-495b-86a5-3ef64b37bf20 status: 200 OK code: 200 - duration: 31.286072ms + duration: 22.251373ms - id: 41 request: proto: HTTP/1.1 @@ -2056,7 +2056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -2066,7 +2066,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2075,9 +2075,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92a47791-cb30-447d-8c5a-6c5f7bfcc31f + - c89aad72-2750-4fad-9708-056980af491e status: 200 OK code: 200 - duration: 51.255131ms + duration: 109.618171ms - id: 42 request: proto: HTTP/1.1 @@ -2105,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -2115,7 +2115,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:20.528704+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:23.968448+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -2124,9 +2124,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea07632d-1aac-4850-9dfb-8fc708a3311f + - ec906f2b-ea65-4345-bf83-eca0b632ca76 status: 200 OK code: 200 - duration: 113.426763ms + duration: 163.115743ms - id: 43 request: proto: HTTP/1.1 @@ -2154,7 +2154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2162,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b483f4e3-3303-41a5-ae76-953b4999afa2 + - c563a264-2b1a-4f95-818a-41a337a108cb status: 200 OK code: 200 - duration: 52.140331ms + duration: 59.359549ms - id: 44 request: proto: HTTP/1.1 @@ -2205,7 +2205,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: PATCH response: proto: HTTP/2.0 @@ -2215,7 +2215,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2224,9 +2224,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 906bb8a8-30fe-4df9-83df-1ed9944cc7c4 + - 9ba3bc16-77cc-401b-89e1-5c8d8cd89536 status: 200 OK code: 200 - duration: 80.82843ms + duration: 171.389149ms - id: 45 request: proto: HTTP/1.1 @@ -2254,7 +2254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -2264,7 +2264,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2273,9 +2273,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fb90267-541e-4c56-9942-953f8867f7bf + - 3553399a-b316-4462-85cf-04502d372770 status: 200 OK code: 200 - duration: 70.432854ms + duration: 104.478038ms - id: 46 request: proto: HTTP/1.1 @@ -2303,7 +2303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -2313,7 +2313,7 @@ interactions: trailer: {} content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2214" @@ -2322,9 +2322,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54843cf2-04cb-4070-bf29-17a329f2b4fc + - 780385ad-0efa-4a53-a0df-603c351adfa5 status: 200 OK code: 200 - duration: 103.881631ms + duration: 151.589463ms - id: 47 request: proto: HTTP/1.1 @@ -2352,7 +2352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2360,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 607e6de1-de4e-43bd-b911-ae4f4ac3ad6f + - a1bfea58-1e9c-4aa7-aad6-8a7c5549a3f8 status: 200 OK code: 200 - duration: 79.654396ms + duration: 53.57069ms - id: 48 request: proto: HTTP/1.1 @@ -2401,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -2411,7 +2411,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2420,9 +2420,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57f1e9e0-1db0-46be-9bef-7411050dc69d + - 6d003600-7760-4e65-a168-706b1b489d1b status: 200 OK code: 200 - duration: 63.102787ms + duration: 106.212028ms - id: 49 request: proto: HTTP/1.1 @@ -2450,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -2460,7 +2460,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -2469,9 +2469,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daa8fe3e-4b5f-4f7b-bb4c-c7746b984ccc + - cacc1ed1-34fe-47ac-bb7d-a92ebeef48d8 status: 200 OK code: 200 - duration: 29.984952ms + duration: 103.014606ms - id: 50 request: proto: HTTP/1.1 @@ -2499,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -2507,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1107" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12679d5c-e623-4648-8e74-7e75bd0193f2 + - b7d177a6-7469-45b0-a203-1f06be84475a status: 200 OK code: 200 - duration: 37.488831ms + duration: 26.10216ms - id: 51 request: proto: HTTP/1.1 @@ -2548,7 +2548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -2558,7 +2558,7 @@ interactions: trailer: {} content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2214" @@ -2567,9 +2567,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a60fa98-1b7c-4aaa-9fe0-dd6bfb2d3e4d + - af999b0a-9bbe-4261-a7f6-939c2367e8d8 status: 200 OK code: 200 - duration: 118.135635ms + duration: 148.539346ms - id: 52 request: proto: HTTP/1.1 @@ -2597,7 +2597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -2607,7 +2607,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -2616,9 +2616,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6e04b1b-4cab-4a57-8231-a38fac575115 + - 93c3b716-3be1-46a3-9f97-416ba40ae522 status: 404 Not Found code: 404 - duration: 29.953965ms + duration: 28.043508ms - id: 53 request: proto: HTTP/1.1 @@ -2646,7 +2646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -2656,7 +2656,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2665,9 +2665,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,10 +2675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf71d21c-39e2-4e3f-8dfc-4149c9a93ee8 + - a51ddbdb-13ab-48c8-8912-5561c12eaf0c status: 200 OK code: 200 - duration: 43.583871ms + duration: 75.602482ms - id: 54 request: proto: HTTP/1.1 @@ -2695,7 +2695,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -2714,9 +2714,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45300ec5-836b-410f-8f6f-9b21b30d22ab + - f9a6d0b9-ad22-42b7-857c-0ede126c190a status: 200 OK code: 200 - duration: 61.339811ms + duration: 127.339665ms - id: 55 request: proto: HTTP/1.1 @@ -2744,7 +2744,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -2754,7 +2754,7 @@ interactions: trailer: {} content_length: 492 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' headers: Content-Length: - "492" @@ -2763,11 +2763,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,12 +2775,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 099f53d0-f84f-43f7-aef5-ee5f0b41cc33 + - fe0b5351-f774-40c5-a966-4d5de074edfc X-Total-Count: - "1" status: 200 OK code: 200 - duration: 69.208547ms + duration: 97.847983ms - id: 56 request: proto: HTTP/1.1 @@ -2797,7 +2797,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2805,20 +2805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2826,10 +2826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25866e8c-f782-407b-b820-11975a6500fd + - 8ff1b6ba-cc8a-44ab-be4e-354f16cb593c status: 200 OK code: 200 - duration: 32.099498ms + duration: 29.438703ms - id: 57 request: proto: HTTP/1.1 @@ -2846,7 +2846,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -2856,7 +2856,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -2865,9 +2865,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2875,10 +2875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cdead14-e179-45d9-9cba-b152ca365d2c + - 6e63657c-94ce-42ec-b6a4-0babfa8b5071 status: 200 OK code: 200 - duration: 51.705816ms + duration: 89.125776ms - id: 58 request: proto: HTTP/1.1 @@ -2895,7 +2895,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -2905,7 +2905,7 @@ interactions: trailer: {} content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2214" @@ -2914,9 +2914,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2924,10 +2924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61b158d7-cf58-4afb-a3fd-b938d198ba4a + - c2a90b8b-ed2c-4b4f-bd7c-c6ffc86d976c status: 200 OK code: 200 - duration: 93.011717ms + duration: 154.650672ms - id: 59 request: proto: HTTP/1.1 @@ -2944,7 +2944,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2952,20 +2952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2973,10 +2973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a456b9a-df59-4379-9209-18de8f5c0837 + - fe0e3b61-f580-46b9-afd9-b5b77efe54cb status: 200 OK code: 200 - duration: 55.477392ms + duration: 76.034832ms - id: 60 request: proto: HTTP/1.1 @@ -2993,7 +2993,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -3003,7 +3003,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -3012,9 +3012,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,10 +3022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e657dd01-0c17-4adc-a971-5efc1e36d77d + - 3a0f9489-53cc-4b6b-86aa-e67297d7e644 status: 200 OK code: 200 - duration: 22.575006ms + duration: 31.882994ms - id: 61 request: proto: HTTP/1.1 @@ -3042,7 +3042,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -3050,20 +3050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1107" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3071,10 +3071,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 819f38c6-a28b-44fc-a653-0c30b8c947ae + - dcc9420b-8c87-456c-ae53-8b51192a3409 status: 200 OK code: 200 - duration: 22.142975ms + duration: 22.038975ms - id: 62 request: proto: HTTP/1.1 @@ -3091,7 +3091,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -3101,7 +3101,7 @@ interactions: trailer: {} content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2214" @@ -3110,9 +3110,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3120,10 +3120,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fb5c04f-6f54-4d28-b2b8-b264530fce00 + - db2d5af5-1588-43a7-82ad-3d84a305c165 status: 200 OK code: 200 - duration: 105.116168ms + duration: 157.334901ms - id: 63 request: proto: HTTP/1.1 @@ -3140,7 +3140,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -3150,7 +3150,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -3159,9 +3159,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,10 +3169,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b7d546d-dec0-4ea5-8a08-0aabe01f3e73 + - c53d66a0-08f8-4013-9d95-661e65b1a89d status: 404 Not Found code: 404 - duration: 41.106833ms + duration: 26.426107ms - id: 64 request: proto: HTTP/1.1 @@ -3189,7 +3189,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -3199,7 +3199,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3208,9 +3208,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,10 +3218,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffcbf8c7-553e-46ac-97ec-c53e50bfdd6f + - 1cd2d63b-47b0-42bc-831a-c0a2a9ece147 status: 200 OK code: 200 - duration: 46.445301ms + duration: 78.619416ms - id: 65 request: proto: HTTP/1.1 @@ -3238,7 +3238,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -3257,9 +3257,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3267,10 +3267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c97c6f7c-2158-4b24-9402-68ef5ca1c6cb + - ae40b16d-d1e2-4229-b5db-fcccac276023 status: 200 OK code: 200 - duration: 49.463572ms + duration: 112.831826ms - id: 66 request: proto: HTTP/1.1 @@ -3287,7 +3287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -3297,7 +3297,7 @@ interactions: trailer: {} content_length: 492 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}]}' headers: Content-Length: - "492" @@ -3306,11 +3306,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3318,12 +3318,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9596acb-88f9-422b-b270-54d425305f55 + - 38c7a537-4dc5-4adc-a676-9ca76a550f91 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 53.07977ms + duration: 102.635266ms - id: 67 request: proto: HTTP/1.1 @@ -3340,7 +3340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3348,20 +3348,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3369,10 +3369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8da643a-9f53-481c-9f6e-daf2406b39c0 + - 9c91c941-a9e9-48c2-943f-4bd761380928 status: 200 OK code: 200 - duration: 37.549894ms + duration: 46.666882ms - id: 68 request: proto: HTTP/1.1 @@ -3389,7 +3389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -3399,7 +3399,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}}' headers: Content-Length: - "489" @@ -3408,9 +3408,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3418,10 +3418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce36ea3d-71cf-4a15-a6ca-373bc295ac72 + - a3c7efa6-c345-4940-9423-0986976c0af4 status: 200 OK code: 200 - duration: 66.031401ms + duration: 101.829827ms - id: 69 request: proto: HTTP/1.1 @@ -3438,7 +3438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -3448,7 +3448,7 @@ interactions: trailer: {} content_length: 2214 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:22.935577+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:26.970194+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":["tag1","tag2"],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2214" @@ -3457,9 +3457,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3467,10 +3467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 451b54bd-8c5a-42c4-a822-cd57404d986b + - 9f38c771-4393-4b0b-a701-15f9833c25eb status: 200 OK code: 200 - duration: 100.390936ms + duration: 119.512027ms - id: 70 request: proto: HTTP/1.1 @@ -3487,7 +3487,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3495,20 +3495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3516,10 +3516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b96f982e-81d1-4aaf-8e75-eac1f6869189 + - c992698e-42d6-4b2a-be6f-ad78f3cd07a1 status: 200 OK code: 200 - duration: 53.721569ms + duration: 210.09237ms - id: 71 request: proto: HTTP/1.1 @@ -3538,7 +3538,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: PATCH response: proto: HTTP/2.0 @@ -3548,7 +3548,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3557,9 +3557,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3567,10 +3567,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 969b96ee-72a2-4eaa-863d-7fa205aecca4 + - 4c22185c-d671-4d27-9aa2-aa61a4e47ada status: 200 OK code: 200 - duration: 91.564365ms + duration: 184.109935ms - id: 72 request: proto: HTTP/1.1 @@ -3587,7 +3587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -3597,7 +3597,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3606,9 +3606,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3616,10 +3616,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c5f1793-685c-44da-93b5-5ff2b9295314 + - a991a4b4-4fc9-46c4-952d-de69e3d2022c status: 200 OK code: 200 - duration: 61.973003ms + duration: 121.405637ms - id: 73 request: proto: HTTP/1.1 @@ -3636,7 +3636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -3646,7 +3646,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -3655,9 +3655,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3665,10 +3665,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f969a3ae-e65d-4e0f-9904-15ad9c3341f5 + - daef9319-fe62-4926-ad24-8bc893a0dd28 status: 200 OK code: 200 - duration: 104.074668ms + duration: 154.065848ms - id: 74 request: proto: HTTP/1.1 @@ -3685,7 +3685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3693,20 +3693,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3714,10 +3714,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89d9e9da-2021-4783-9f6f-1c43bb503ce0 + - fdf40f3d-dad9-446e-95fd-91aad2bbbeef status: 200 OK code: 200 - duration: 42.01765ms + duration: 45.52405ms - id: 75 request: proto: HTTP/1.1 @@ -3734,7 +3734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -3744,7 +3744,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3753,9 +3753,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3763,10 +3763,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5de47edd-5cb8-480d-a09d-6bb7702d6461 + - 8bf54a77-bf83-4f56-8d70-e53f0be85795 status: 200 OK code: 200 - duration: 45.595327ms + duration: 106.609116ms - id: 76 request: proto: HTTP/1.1 @@ -3783,7 +3783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: GET response: proto: HTTP/2.0 @@ -3793,7 +3793,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.171518Z","custom_routes_propagation_enabled":true,"id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:19.171518Z"}' + body: '{"created_at":"2025-10-15T15:03:21.305696Z","custom_routes_propagation_enabled":true,"id":"502a4d25-0c13-44ff-8bf5-5918146b16ca","is_default":false,"name":"TestAccPrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:21.305696Z"}' headers: Content-Length: - "420" @@ -3802,9 +3802,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3812,10 +3812,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7ec5001-1c87-4839-a61c-b43def87e2e2 + - 0c4c8b89-cd9b-48c2-8505-028a319fa239 status: 200 OK code: 200 - duration: 21.263607ms + duration: 23.507968ms - id: 77 request: proto: HTTP/1.1 @@ -3832,7 +3832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: GET response: proto: HTTP/2.0 @@ -3840,20 +3840,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1107 + content_length: 1108 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.351811Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:19.351811Z","id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.4.0/22","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"},{"created_at":"2025-10-08T23:05:19.351811Z","id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:dac1::/64","updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}],"tags":[],"updated_at":"2025-10-08T23:05:19.351811Z","vpc_id":"ea2b36cf-6fc0-48c8-a1b8-f7281670e94f"}' + body: '{"created_at":"2025-10-15T15:03:21.400227Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"97608715-a3a6-4d99-a2a0-f6c868534046","name":"TestAccScalewayInstancePrivateNIC_Tags","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:21.400227Z","id":"df6c41b0-c4c6-4d57-b824-b6b258da1289","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.28.0/22","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"},{"created_at":"2025-10-15T15:03:21.400227Z","id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:574c::/64","updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}],"tags":[],"updated_at":"2025-10-15T15:03:21.400227Z","vpc_id":"502a4d25-0c13-44ff-8bf5-5918146b16ca"}' headers: Content-Length: - - "1107" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3861,10 +3861,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 576007a5-1d98-4648-9a94-844b717c5723 + - 963d627c-ab25-41fc-a3f3-2931b5a54327 status: 200 OK code: 200 - duration: 26.945211ms + duration: 23.881308ms - id: 78 request: proto: HTTP/1.1 @@ -3881,7 +3881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -3891,7 +3891,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -3900,9 +3900,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3910,10 +3910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65a8e0ab-293a-4224-91cd-e02ef8249d18 + - 0c97401c-4b24-4486-9281-bb2118a2b643 status: 200 OK code: 200 - duration: 90.937886ms + duration: 150.64692ms - id: 79 request: proto: HTTP/1.1 @@ -3930,7 +3930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -3940,7 +3940,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -3949,9 +3949,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3959,10 +3959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed1a771b-01e1-4f73-8c4c-97805afbdf59 + - fe23ce75-0db3-40b4-9270-72ece14bc7ac status: 404 Not Found code: 404 - duration: 30.84802ms + duration: 27.510991ms - id: 80 request: proto: HTTP/1.1 @@ -3979,7 +3979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -3989,7 +3989,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3998,9 +3998,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4008,10 +4008,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69781574-e6d5-47e4-bf24-36800285b9a5 + - aa7da06d-e280-4e17-a86b-115747405356 status: 200 OK code: 200 - duration: 48.989925ms + duration: 94.929015ms - id: 81 request: proto: HTTP/1.1 @@ -4028,7 +4028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/user_data method: GET response: proto: HTTP/2.0 @@ -4047,9 +4047,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4057,10 +4057,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5972b4d-44b4-460c-be44-e320c952d182 + - 79986144-7baf-4b8e-ab15-91036e4d9412 status: 200 OK code: 200 - duration: 58.930457ms + duration: 104.676675ms - id: 82 request: proto: HTTP/1.1 @@ -4077,7 +4077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics method: GET response: proto: HTTP/2.0 @@ -4087,7 +4087,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -4096,11 +4096,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4108,12 +4108,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0607440e-3c2b-43b8-b989-4b31c851b51c + - 46994587-21a1-40d9-9e98-460c7216e52e X-Total-Count: - "1" status: 200 OK code: 200 - duration: 56.238521ms + duration: 105.838062ms - id: 83 request: proto: HTTP/1.1 @@ -4130,7 +4130,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4138,20 +4138,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4159,10 +4159,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ad37b18-b48d-42d5-9cb0-f4f2ec70abe2 + - d8160de9-d25d-452e-ad57-6554d6ced571 status: 200 OK code: 200 - duration: 28.388184ms + duration: 26.501689ms - id: 84 request: proto: HTTP/1.1 @@ -4179,7 +4179,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -4189,7 +4189,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4198,9 +4198,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4208,10 +4208,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bc3c6f4-12c0-447b-8566-2a74a376c988 + - 044d4899-4dde-4aa3-9bc8-e9de5180ae0e status: 200 OK code: 200 - duration: 52.765578ms + duration: 107.687678ms - id: 85 request: proto: HTTP/1.1 @@ -4228,7 +4228,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4238,7 +4238,7 @@ interactions: trailer: {} content_length: 2200 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2200" @@ -4247,9 +4247,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4257,10 +4257,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24df4fd5-0b5c-4c32-a779-e128ce51a623 + - 6ff1a802-22ca-4281-93c3-b7079933ad95 status: 200 OK code: 200 - duration: 101.419339ms + duration: 152.673038ms - id: 86 request: proto: HTTP/1.1 @@ -4277,7 +4277,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=393c3672-cbc4-459b-a420-dd6eb8630e6c&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=badf7a7f-96f0-45b1-be67-3b7ba7984fa9&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=97608715-a3a6-4d99-a2a0-f6c868534046&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=8a958753-4198-46c8-8527-d082156da7cb&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4285,20 +4285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1068 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:dac1:16ff:e855:9b44:ebe3/64","created_at":"2025-10-08T23:05:20.761731Z","id":"9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b4a24a32-0aaa-44e1-b2b0-77d14ca290d5"},"tags":[],"updated_at":"2025-10-08T23:05:20.761731Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-08T23:05:20.640156Z","id":"c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","mac_address":"02:00:00:1F:88:26","name":"tf-srv-musing-morse","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc4e55d5-16ab-4b7b-ad9d-553fcc4fa926"},"tags":[],"updated_at":"2025-10-08T23:05:20.640156Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:574c:a6ad:7a35:443d:b907/64","created_at":"2025-10-15T15:03:24.196305Z","id":"31d631d4-1b65-4c41-a0e9-7509c4117aff","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"cad7ddca-33f0-4afe-919c-d0cec5b350fb"},"tags":[],"updated_at":"2025-10-15T15:03:24.196305Z","zone":null},{"address":"172.17.28.2/22","created_at":"2025-10-15T15:03:24.076770Z","id":"52b9f629-7518-4c02-acb2-e084a2818871","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"8a958753-4198-46c8-8527-d082156da7cb","mac_address":"02:00:00:1F:47:69","name":"tf-srv-keen-ritchie","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"df6c41b0-c4c6-4d57-b824-b6b258da1289"},"tags":[],"updated_at":"2025-10-15T15:03:24.076770Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1067" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4306,10 +4306,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1169f03b-f5f9-4246-afb7-63e275897fe6 + - 561e4b20-0301-4e14-a71e-9bee057382ff status: 200 OK code: 200 - duration: 55.232257ms + duration: 43.225493ms - id: 87 request: proto: HTTP/1.1 @@ -4326,7 +4326,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -4336,7 +4336,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:20.410443+00:00","id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","ipam_ip_ids":["c6ca9d58-c1d5-46c2-8f06-55fbc09379dd","9f4e03f7-d4ce-4ca9-8900-2436b5bc53e0"],"mac_address":"02:00:00:1f:88:26","modification_date":"2025-10-08T23:05:25.242889+00:00","private_network_id":"393c3672-cbc4-459b-a420-dd6eb8630e6c","server_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:23.747898+00:00","id":"8a958753-4198-46c8-8527-d082156da7cb","ipam_ip_ids":["52b9f629-7518-4c02-acb2-e084a2818871","31d631d4-1b65-4c41-a0e9-7509c4117aff"],"mac_address":"02:00:00:1f:47:69","modification_date":"2025-10-15T15:03:29.885781+00:00","private_network_id":"97608715-a3a6-4d99-a2a0-f6c868534046","server_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4345,9 +4345,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4355,10 +4355,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c037c5-8056-4067-817b-efb7d8c50503 + - 48a5b8c9-b7a7-42f4-95ce-5b1651f05900 status: 200 OK code: 200 - duration: 49.215111ms + duration: 87.312981ms - id: 88 request: proto: HTTP/1.1 @@ -4375,7 +4375,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: DELETE response: proto: HTTP/2.0 @@ -4392,9 +4392,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4402,10 +4402,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 954d27db-818f-4f26-aa67-56c1ea988101 + - af0dfbde-db85-4531-b493-4721ca2badf2 status: 204 No Content code: 204 - duration: 209.021933ms + duration: 358.438855ms - id: 89 request: proto: HTTP/1.1 @@ -4422,7 +4422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -4432,7 +4432,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"badf7a7f-96f0-45b1-be67-3b7ba7984fa9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"8a958753-4198-46c8-8527-d082156da7cb","type":"not_found"}' headers: Content-Length: - "148" @@ -4441,9 +4441,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4451,10 +4451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38873d7d-ae76-42ff-bc68-3d382a64b151 + - b81f9235-9b98-4818-881d-cdf95c9cb6e6 status: 404 Not Found code: 404 - duration: 76.655871ms + duration: 100.600967ms - id: 90 request: proto: HTTP/1.1 @@ -4471,7 +4471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4481,7 +4481,7 @@ interactions: trailer: {} content_length: 1742 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:19.457969+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1742" @@ -4490,9 +4490,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4500,10 +4500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc31b297-17e0-4cf3-848f-78efc227380d + - 44ebcd7f-0589-4693-88ae-4e9817053dc2 status: 200 OK code: 200 - duration: 120.534978ms + duration: 145.112741ms - id: 91 request: proto: HTTP/1.1 @@ -4520,7 +4520,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1742 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:22.029595+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1742" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 429be305-5eff-4f7e-8fab-ff89eca6408a + status: 200 OK + code: 200 + duration: 163.06609ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -4530,7 +4579,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:19.543294Z","id":"a9037ec6-c716-4c80-8ff0-d4bfbba64d46","product_resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:19.543294Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:22.188254Z","id":"203f39c0-7027-4437-b7ad-adf8c0536a6f","product_resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:22.188254Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4539,9 +4588,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4549,11 +4598,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d265821-6794-48af-aac3-21adda17f018 + - d24c273a-4b61-41c9-90d3-5796bc09a8f9 status: 200 OK code: 200 - duration: 56.506477ms - - id: 92 + duration: 79.427252ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4571,7 +4620,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/action method: POST response: proto: HTTP/2.0 @@ -4581,7 +4630,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action","href_result":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1","id":"1911b001-df59-4695-852c-c8e305ecd072","progress":0,"started_at":"2025-10-08T23:05:27.245892+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/action","href_result":"/servers/b87b4df2-b953-4b58-a18a-065774f5cd53","id":"9e61e945-949d-4a6b-9612-86d2b3557690","progress":0,"started_at":"2025-10-15T15:03:32.884515+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -4590,11 +4639,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1911b001-df59-4695-852c-c8e305ecd072 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e61e945-949d-4a6b-9612-86d2b3557690 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4602,11 +4651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb24c831-0816-4536-a11e-3c9d7d105c56 + - 9f59e94e-1a35-4a34-814c-417dd8ed9e92 status: 202 Accepted code: 202 - duration: 191.091169ms - - id: 93 + duration: 280.990012ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4622,7 +4671,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4632,7 +4681,7 @@ interactions: trailer: {} content_length: 1764 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:27.098929+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:32.688588+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1764" @@ -4641,9 +4690,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4651,11 +4700,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bcf4a94-e9b6-4241-b671-69cef0ca51cd + - 3237074f-caf5-4429-8aaf-07c3dbc367d6 status: 200 OK code: 200 - duration: 89.626656ms - - id: 94 + duration: 129.869823ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4671,7 +4720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/393c3672-cbc4-459b-a420-dd6eb8630e6c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/97608715-a3a6-4d99-a2a0-f6c868534046 method: DELETE response: proto: HTTP/2.0 @@ -4688,9 +4737,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4698,11 +4747,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54a2f58f-fd8b-4aaa-8dcb-932df8ae03dd + - f25c0468-5de6-4634-b079-0706af4f2d4c status: 204 No Content code: 204 - duration: 1.124101566s - - id: 95 + duration: 1.178739211s + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4718,7 +4767,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ea2b36cf-6fc0-48c8-a1b8-f7281670e94f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/502a4d25-0c13-44ff-8bf5-5918146b16ca method: DELETE response: proto: HTTP/2.0 @@ -4735,9 +4784,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4745,11 +4794,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cda4c02-44ab-4828-83fb-78d8ee9698b7 + - cc9b1168-53c6-48f5-95a4-f31f987488b4 status: 204 No Content code: 204 - duration: 155.700464ms - - id: 96 + duration: 139.34391ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4765,7 +4814,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4773,20 +4822,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1898 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:29.855517+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"76","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:35.459024+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4794,11 +4843,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9573d1b1-df71-4657-b983-498b60d4a5bc + - 2d184a24-34c3-4aaa-8a03-681f6f459944 status: 200 OK code: 200 - duration: 104.6435ms - - id: 97 + duration: 154.699938ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4816,7 +4865,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/action method: POST response: proto: HTTP/2.0 @@ -4826,7 +4875,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/action","href_result":"/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1","id":"323a8301-7e15-4284-b749-7c80fcb72d5e","progress":0,"started_at":"2025-10-08T23:05:32.619443+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/action","href_result":"/servers/b87b4df2-b953-4b58-a18a-065774f5cd53","id":"24b9df79-9a5a-4b95-afcc-61358b7bf7b4","progress":0,"started_at":"2025-10-15T15:03:38.499568+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4835,11 +4884,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/323a8301-7e15-4284-b749-7c80fcb72d5e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/24b9df79-9a5a-4b95-afcc-61358b7bf7b4 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4847,11 +4896,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10ed87e3-cccd-42b8-958e-7aa3a04477d1 + - 9ed6567f-e896-42d0-bc0a-664521fa5c10 status: 202 Accepted code: 202 - duration: 174.490756ms - - id: 98 + duration: 310.516698ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4867,7 +4916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4875,20 +4924,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1862 + content_length: 1861 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:19.457969+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-morse","id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a5","maintenances":[],"modification_date":"2025-10-08T23:05:32.488586+00:00","name":"tf-srv-musing-morse","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"98781ed6-edbb-4221-b074-89b332d1fba8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:22.029595+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-keen-ritchie","id":"b87b4df2-b953-4b58-a18a-065774f5cd53","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"501","node_id":"76","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:23","maintenances":[],"modification_date":"2025-10-15T15:03:38.261202+00:00","name":"tf-srv-keen-ritchie","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1862" + - "1861" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4896,11 +4945,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f34267-6cf0-468e-bf2c-15c51e4c4464 + - c91d9add-48c3-40e3-a545-e4418a35e027 status: 200 OK code: 200 - duration: 107.01915ms - - id: 99 + duration: 147.447294ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4916,7 +4965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53 method: GET response: proto: HTTP/2.0 @@ -4926,7 +4975,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","type":"not_found"}' headers: Content-Length: - "143" @@ -4935,9 +4984,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4945,11 +4994,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f462debf-3db2-44f3-925e-a972e5c25a88 + - e9aa177c-5b01-4453-8615-2a51f2576f13 status: 404 Not Found code: 404 - duration: 65.660611ms - - id: 100 + duration: 42.22342ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4965,7 +5014,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -4975,7 +5024,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"98781ed6-edbb-4221-b074-89b332d1fba8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","type":"not_found"}' headers: Content-Length: - "143" @@ -4984,9 +5033,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4994,11 +5043,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d5e5ae3-5eb8-4a9e-88ea-810166d5a36f + - 998ee682-68ea-4936-9515-30f74c836891 status: 404 Not Found code: 404 - duration: 33.85117ms - - id: 101 + duration: 32.314206ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5014,7 +5063,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: GET response: proto: HTTP/2.0 @@ -5024,7 +5073,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:19.543294Z","id":"98781ed6-edbb-4221-b074-89b332d1fba8","last_detached_at":"2025-10-08T23:05:34.212440Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:34.212440Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:22.188254Z","id":"3d6bd8d8-aef3-4af7-9285-559bda6f3d15","last_detached_at":"2025-10-15T15:03:40.491421Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:40.491421Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5033,9 +5082,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5043,11 +5092,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e29ee019-3384-4d7a-af90-806f5c54a73e + - 432acbc5-498a-4e3a-a4a1-1bc4ebcc5cca status: 200 OK code: 200 - duration: 49.930484ms - - id: 102 + duration: 86.292188ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5063,7 +5112,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/98781ed6-edbb-4221-b074-89b332d1fba8 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3d6bd8d8-aef3-4af7-9285-559bda6f3d15 method: DELETE response: proto: HTTP/2.0 @@ -5080,9 +5129,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:37 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5090,11 +5139,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1366e4ed-3dbc-4db5-bac5-19c03b377d4c + - 97ecfaa6-d4b9-4da2-bc21-4c4728f836ea status: 204 No Content code: 204 - duration: 67.376368ms - - id: 103 + duration: 186.755486ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5110,7 +5159,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/aa5f83b5-9ba9-4dd9-9910-c80213b643e1/private_nics/badf7a7f-96f0-45b1-be67-3b7ba7984fa9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b87b4df2-b953-4b58-a18a-065774f5cd53/private_nics/8a958753-4198-46c8-8527-d082156da7cb method: GET response: proto: HTTP/2.0 @@ -5120,7 +5169,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"aa5f83b5-9ba9-4dd9-9910-c80213b643e1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b87b4df2-b953-4b58-a18a-065774f5cd53","type":"not_found"}' headers: Content-Length: - "143" @@ -5129,9 +5178,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5139,7 +5188,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a34ca9-9422-4020-9f9d-b80ef866f4f8 + - ca5399fa-12bd-4879-9d3f-71dc161e942b status: 404 Not Found code: 404 - duration: 30.69794ms + duration: 35.663264ms diff --git a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml index 1ffcde8a8..a86ee72bf 100644 --- a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e600a96-3635-4b76-9ccb-2e64c1d2458e + - 8a06d5f7-cf15-44bb-b972-1113b20bbdb0 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.663411ms + duration: 42.256082ms - id: 1 request: proto: HTTP/1.1 @@ -65,7 +65,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' + body: '{"created_at":"2025-10-15T15:03:20.127615Z","custom_routes_propagation_enabled":true,"id":"ac7be18e-921a-4491-88bb-7d32dd1d4180","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:20.127615Z"}' headers: Content-Length: - "436" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf4c975-7390-4b0f-8afc-4a4c580312ca + - 8d23a16e-c308-413a-bd49-5aec33a8965a status: 200 OK code: 200 - duration: 78.050496ms + duration: 64.078559ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ac7be18e-921a-4491-88bb-7d32dd1d4180 method: GET response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' + body: '{"created_at":"2025-10-15T15:03:20.127615Z","custom_routes_propagation_enabled":true,"id":"ac7be18e-921a-4491-88bb-7d32dd1d4180","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:20.127615Z"}' headers: Content-Length: - "436" @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce673f0-bc85-4c68-9022-24c883d21acb + - e7d68336-e2ac-40ad-8882-98a12d71411a status: 200 OK code: 200 - duration: 29.24972ms + duration: 28.864274ms - id: 3 request: proto: HTTP/1.1 @@ -178,22 +178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe3a0b3-f06e-4ed5-9f85-d6abe2241a0a + - abd30099-db4f-444b-8cba-81babe7ba78c X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 54.294982ms + duration: 50.663559ms - id: 4 request: proto: HTTP/1.1 @@ -242,9 +242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,29 +252,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c5698d-fc60-48be-b8a1-e02cc55fe682 + - 426bfb9d-5084-4226-b65b-6d32c5b5094e status: 200 OK code: 200 - duration: 44.839357ms + duration: 42.476344ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 256 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -282,22 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:20.232034Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"744dc9d8-76a1-4114-8197-e95b052545c4","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:20.232034Z","id":"a115dc1b-379c-4fec-a800-951cadc5ab12","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"},{"created_at":"2025-10-15T15:03:20.232034Z","id":"4be298b2-37a1-4bf5-8868-ce1331cd18a2","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d0d8::/64","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}],"tags":[],"updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}' headers: Content-Length: - - "1777" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2295fd64-e0fa-4b3e-b9ff-fe0460d650b9 - status: 201 Created - code: 201 - duration: 535.259965ms + - 2289cf1f-2ebc-4c1c-b233-760980d63e57 + status: 200 OK + code: 200 + duration: 567.720511ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 method: GET response: proto: HTTP/2.0 @@ -333,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:20.232034Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"744dc9d8-76a1-4114-8197-e95b052545c4","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:20.232034Z","id":"a115dc1b-379c-4fec-a800-951cadc5ab12","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"},{"created_at":"2025-10-15T15:03:20.232034Z","id":"4be298b2-37a1-4bf5-8868-ce1331cd18a2","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d0d8::/64","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}],"tags":[],"updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}' headers: Content-Length: - - "1777" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,29 +352,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b1b7fc7-f70e-4f80-b83d-018b25d67fdb + - 5aa7fdcb-aa46-4b8d-82b4-4dba4bd1f8f6 status: 200 OK code: 200 - duration: 117.733863ms + duration: 24.571069ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 230 + content_length: 174 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","default_route_propagation_enabled":false}' + body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: proto: HTTP/2.0 @@ -384,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 369 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:20.876259Z","zone":null}' headers: Content-Length: - - "1108" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d74a99-fc74-43b3-9f7b-bfa7fa6bb78f + - 5cd60a3d-f17f-4a64-a901-a863c3fa6877 status: 200 OK code: 200 - duration: 701.339741ms + duration: 141.699959ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc method: GET response: proto: HTTP/2.0 @@ -433,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 369 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:20.876259Z","zone":null}' headers: Content-Length: - - "1108" + - "369" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 574fd2f3-d79e-4b10-8623-702e49d2a762 + - 60b94e4f-caa9-44aa-83cf-8cddff89e67c status: 200 OK code: 200 - duration: 26.172159ms + duration: 24.25193ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 method: GET response: proto: HTTP/2.0 @@ -482,20 +480,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1108 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:18.628491+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:20.232034Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"744dc9d8-76a1-4114-8197-e95b052545c4","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:20.232034Z","id":"a115dc1b-379c-4fec-a800-951cadc5ab12","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"},{"created_at":"2025-10-15T15:03:20.232034Z","id":"4be298b2-37a1-4bf5-8868-ce1331cd18a2","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d0d8::/64","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}],"tags":[],"updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}' headers: Content-Length: - - "1777" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,48 +501,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4757b7e-2351-45f6-bb70-2b619823eb12 + - a9d87a6b-2b8d-4a3e-a2d6-2e8373fbce8a status: 200 OK code: 200 - duration: 111.937697ms + duration: 30.672714ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 256 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1777 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:20.899323+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,50 +554,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7481afe-8e51-4cdf-a226-86117efb80ae - status: 200 OK - code: 200 - duration: 48.930236ms + - beb6089b-7ca1-46a5-a3cc-4a20233535ec + status: 201 Created + code: 201 + duration: 1.232633363s - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 174 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","source":{"private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 1777 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:19.360Z","zone":null}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:20.899323+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f3a1c71-4a32-4e4e-84a6-729501911aab + - 3547ef5c-c32b-44cc-bcac-b450d9ad6147 status: 200 OK code: 200 - duration: 252.95618ms + duration: 122.651551ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 1777 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:19.360Z","zone":null}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:20.899323+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,52 +652,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4439fca-12e9-49d0-a264-8006c84839d8 + - 223b0ff0-e4e2-453c-a5ec-7b39679847d4 status: 200 OK code: 200 - duration: 30.908584ms + duration: 132.433234ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 701 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action","href_result":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363","id":"40fac474-d68d-4fc5-8bc6-9baa2bfd871f","progress":0,"started_at":"2025-10-08T23:05:19.440107+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:21.026486Z","id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:21.026486Z","id":"dd93caac-6b0b-4518-af9a-62f30754e38f","product_resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:21.026486Z","zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/40fac474-d68d-4fc5-8bc6-9baa2bfd871f + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,48 +701,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9f6c9c4-fc65-4ec0-a962-b3475b2d3ef3 - status: 202 Accepted - code: 202 - duration: 187.075947ms + - d24e192a-c772-413d-8f1a-232425b15603 + status: 200 OK + code: 200 + duration: 82.099943ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action","href_result":"/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5","id":"92c40a61-f868-4cd2-828b-84ef115dcba5","progress":0,"started_at":"2025-10-15T15:03:22.010735+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1108" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/92c40a61-f868-4cd2-828b-84ef115dcba5 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66e33105-6f9b-495b-82ed-d43edc27b83c - status: 200 OK - code: 200 - duration: 27.851741ms + - 5ddf3e83-4d4f-4cea-a004-814f85f47e8c + status: 202 Accepted + code: 202 + duration: 300.735079ms - id: 15 request: proto: HTTP/1.1 @@ -774,7 +774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -784,7 +784,7 @@ interactions: trailer: {} content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:19.297996+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:21.818727+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1799" @@ -793,9 +793,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,10 +803,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a46d750c-b3d2-4a06-8d57-394c35e06058 + - bc9130eb-1245-4121-93c0-8737cb5c3c6f status: 200 OK code: 200 - duration: 95.07402ms + duration: 120.098117ms - id: 16 request: proto: HTTP/1.1 @@ -823,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1933" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd0e0329-616b-4d71-9b21-28eba666b1ac + - a53666a6-011f-4b3c-9447-6f987641feb5 status: 200 OK code: 200 - duration: 107.360626ms + duration: 130.435737ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1933" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a19f4d2-8ec4-489f-a6ee-39b4ef7a45d4 + - d8fff70f-3518-4263-8b9a-3f9f24b25a0d status: 200 OK code: 200 - duration: 89.54193ms + duration: 140.124605ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' headers: Content-Length: - "143" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07d117b7-d772-47af-a814-e04ebf4f4e2e + - 7650f23e-0767-4264-9edd-5d9a9e692ae3 status: 404 Not Found code: 404 - duration: 36.66785ms + duration: 28.752176ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:21.026486Z","id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:21.026486Z","id":"dd93caac-6b0b-4518-af9a-62f30754e38f","product_resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:21.026486Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa4ff3d6-177a-40e2-a8dc-6a83964e59fe + - 2076e61d-9afb-46ea-bc86-8f2a9eeb188c status: 200 OK code: 200 - duration: 40.624078ms + duration: 93.491638ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/user_data method: GET response: proto: HTTP/2.0 @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a3673c1-772d-465f-9b73-fd527333d2c2 + - ba63df95-ae83-4aef-aaf9-f846109c2e98 status: 200 OK code: 200 - duration: 51.747563ms + duration: 99.878047ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics method: GET response: proto: HTTP/2.0 @@ -1087,11 +1087,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,12 +1099,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e98d5fc9-7b76-455a-9243-bf451c902715 + - 5f54d448-f3dc-4f9c-aa6f-240c4678f03d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.516544ms + duration: 101.595706ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -1131,7 +1131,7 @@ interactions: trailer: {} content_length: 1933 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1933" @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 493cfe02-49b9-460f-a426-c5eff42c999f + - 456415e4-6eea-4e5f-be67-cbe2c1f8172e status: 200 OK code: 200 - duration: 116.336902ms + duration: 140.638098ms - id: 23 request: proto: HTTP/1.1 @@ -1165,14 +1165,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"]}' + body: '{"private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics method: POST response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5845bb0-8f98-484b-b3c0-01537de76304 + - 6e37153e-dd2d-439d-9b4b-f00d82369ab0 status: 201 Created code: 201 - duration: 410.394117ms + duration: 625.360279ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 768326bb-a38c-43bf-b7b2-f5c3d9acb05b + - b6a25278-448b-418e-bc12-245125fb8c34 status: 200 OK code: 200 - duration: 53.310929ms + duration: 83.710678ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1280,7 +1280,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1289,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2a708fc-6548-4dae-a412-a1c99a91181a + - 7836c42a-b4bc-4398-b70f-9ff08198d0db status: 200 OK code: 200 - duration: 46.146607ms + duration: 92.86051ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:35 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec36884b-3e5b-48b3-83fb-b6732f960960 + - 448fc3e0-cd3b-428d-b7a2-9fd76add1612 status: 200 OK code: 200 - duration: 55.711232ms + duration: 87.081343ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:40 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0c05cca-6ba8-4695-964d-665614c62640 + - 6f493381-9a98-4b0a-a4c7-f8f6a7170f2f status: 200 OK code: 200 - duration: 62.49672ms + duration: 136.426264ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1427,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:27.976786+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:45 GMT + - Wed, 15 Oct 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66842830-7a8f-4d01-8787-aa000c03c7da + - ca3630f9-aa82-4f3f-8af7-795bda4eae9a status: 200 OK code: 200 - duration: 57.175342ms + duration: 102.17347ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1474,20 +1474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a877e637-dbed-4c65-a461-c804c821397a + - 1d70c266-d6cc-4206-8756-c2372d9ad8e4 status: 200 OK code: 200 - duration: 56.364098ms + duration: 91.494938ms - id: 30 request: proto: HTTP/1.1 @@ -1515,7 +1515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1523,20 +1523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59e693e8-c624-4dc5-9c11-08a3f89aa12c + - ab14f13a-d1d6-489d-8ad4-96d20319d7ea status: 200 OK code: 200 - duration: 54.802284ms + duration: 93.625732ms - id: 31 request: proto: HTTP/1.1 @@ -1564,7 +1564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -1572,20 +1572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 2351 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:00 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,10 +1593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdc4cc8e-72b7-4e01-b184-22c6591ac61b + - 9b4c3617-78fc-41d6-86e9-bf3fdd16c7ba status: 200 OK code: 200 - duration: 61.026401ms + duration: 148.970069ms - id: 32 request: proto: HTTP/1.1 @@ -1613,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=744dc9d8-76a1-4114-8197-e95b052545c4&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1621,20 +1621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 552 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "433" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,10 +1642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecb28fee-bbf4-4a2a-8c02-f5b2220beb81 + - 62cbbab2-bec3-43e4-b34e-d4e37127c9b7 status: 200 OK code: 200 - duration: 56.632391ms + duration: 49.830292ms - id: 33 request: proto: HTTP/1.1 @@ -1662,7 +1662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1670,20 +1670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 552 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:05:25.107390+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "433" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,10 +1691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22d3e4c3-912c-4b1e-a4fa-5c91b16e7d61 + - 94a03f10-b480-43b5-8813-fa661ad3507e status: 200 OK code: 200 - duration: 59.554211ms + duration: 113.429332ms - id: 34 request: proto: HTTP/1.1 @@ -1711,7 +1711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -1721,7 +1721,7 @@ interactions: trailer: {} content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "435" @@ -1730,9 +1730,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,10 +1740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 124e625b-ec74-4e95-a1e5-8ce6ce5a7531 + - 6487ca66-0a10-41d3-99cb-e062489c9dd3 status: 200 OK code: 200 - duration: 53.15089ms + duration: 88.48669ms - id: 35 request: proto: HTTP/1.1 @@ -1760,7 +1760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1768,20 +1768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 552 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "435" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,10 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dca5830-cb8f-4e1f-b8a9-a076ff7c7e5a + - 4a931013-4bfc-4577-bdfc-e9f05a9a9467 status: 200 OK code: 200 - duration: 56.450883ms + duration: 81.820835ms - id: 36 request: proto: HTTP/1.1 @@ -1809,7 +1809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ac7be18e-921a-4491-88bb-7d32dd1d4180 method: GET response: proto: HTTP/2.0 @@ -1817,20 +1817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2351 + content_length: 436 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:20.127615Z","custom_routes_propagation_enabled":true,"id":"ac7be18e-921a-4491-88bb-7d32dd1d4180","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:20.127615Z"}' headers: Content-Length: - - "2351" + - "436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,10 +1838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b3e5076-1cdf-49ac-bcd9-c61336835949 + - 72daedb7-7a74-46fc-b27a-f10c9fc5489d status: 200 OK code: 200 - duration: 104.651896ms + duration: 26.217022ms - id: 37 request: proto: HTTP/1.1 @@ -1858,7 +1858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=ec2365d8-e92b-47c5-9532-cc7209811ecc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 method: GET response: proto: HTTP/2.0 @@ -1866,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 1108 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-10-15T15:03:20.232034Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"744dc9d8-76a1-4114-8197-e95b052545c4","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:20.232034Z","id":"a115dc1b-379c-4fec-a800-951cadc5ab12","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"},{"created_at":"2025-10-15T15:03:20.232034Z","id":"4be298b2-37a1-4bf5-8868-ce1331cd18a2","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d0d8::/64","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}],"tags":[],"updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}' headers: Content-Length: - - "549" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,10 +1887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6427266-5891-4fdc-902b-f55fe8c76594 + - d5bff298-9909-4358-8fb8-4f532d9f2ea7 status: 200 OK code: 200 - duration: 44.622295ms + duration: 36.385671ms - id: 38 request: proto: HTTP/1.1 @@ -1907,7 +1907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc method: GET response: proto: HTTP/2.0 @@ -1915,20 +1915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 525 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: '{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}' headers: Content-Length: - - "549" + - "525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,10 +1936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef2e16b9-b9e2-4420-bc3f-2a2a6dd64d0b + - 8945a290-4702-46a0-819f-02b50f720fc9 status: 200 OK code: 200 - duration: 41.454919ms + duration: 23.285146ms - id: 39 request: proto: HTTP/1.1 @@ -1956,7 +1956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 method: GET response: proto: HTTP/2.0 @@ -1964,20 +1964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 1108 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:20.232034Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"744dc9d8-76a1-4114-8197-e95b052545c4","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:20.232034Z","id":"a115dc1b-379c-4fec-a800-951cadc5ab12","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"},{"created_at":"2025-10-15T15:03:20.232034Z","id":"4be298b2-37a1-4bf5-8868-ce1331cd18a2","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d0d8::/64","updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}],"tags":[],"updated_at":"2025-10-15T15:03:20.232034Z","vpc_id":"ac7be18e-921a-4491-88bb-7d32dd1d4180"}' headers: Content-Length: - - "435" + - "1108" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,10 +1985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40fd302f-d5c9-4475-96e4-ae43213f1adf + - 28db0f7a-d148-445c-990c-1d5a2467cce2 status: 200 OK code: 200 - duration: 51.056852ms + duration: 19.303242ms - id: 40 request: proto: HTTP/1.1 @@ -2005,7 +2005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -2013,20 +2013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 2351 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "549" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2034,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e4623f-180b-4807-aa33-d113c358a9d5 + - dbe20403-ddc9-4b57-ba63-5c871e217f45 status: 200 OK code: 200 - duration: 50.408461ms + duration: 135.331507ms - id: 41 request: proto: HTTP/1.1 @@ -2054,7 +2054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -2062,20 +2062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 436 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.351720Z","custom_routes_propagation_enabled":true,"id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:05:18.351720Z"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' headers: Content-Length: - - "436" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2083,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bc38609-4e26-4b5e-8288-5379e18054f8 - status: 200 OK - code: 200 - duration: 28.946301ms + - 85fc6f28-9ada-4d14-be24-4ebeea93264b + status: 404 Not Found + code: 404 + duration: 26.767965ms - id: 42 request: proto: HTTP/1.1 @@ -2103,7 +2103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -2111,20 +2111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' + body: '{"created_at":"2025-10-15T15:03:21.026486Z","id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:21.026486Z","id":"dd93caac-6b0b-4518-af9a-62f30754e38f","product_resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:21.026486Z","zone":"fr-par-1"}' headers: Content-Length: - - "1108" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2132,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a285ed37-d4bc-48b1-9103-f992af80755c + - f367dc4d-1475-42f1-9be0-b24460e7c102 status: 200 OK code: 200 - duration: 21.124204ms + duration: 74.747838ms - id: 43 request: proto: HTTP/1.1 @@ -2152,7 +2152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/user_data method: GET response: proto: HTTP/2.0 @@ -2160,20 +2160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 17 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}' + body: '{"user_data":[]}' headers: Content-Length: - - "522" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2181,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 127ae06a-5b18-4ee5-85ec-dc9a54179b18 + - 456d5a10-f28b-421b-bea1-a01aa2b87206 status: 200 OK code: 200 - duration: 22.479775ms + duration: 99.060971ms - id: 44 request: proto: HTTP/1.1 @@ -2201,7 +2201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics method: GET response: proto: HTTP/2.0 @@ -2209,20 +2209,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2351 + content_length: 438 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2351" + - "438" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2230,10 +2232,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b9dd488-4ba3-4a2b-a4d3-0f6cd834e7e4 + - b8037c43-5bb6-44c6-bf22-67256a77139b + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 95.708762ms + duration: 98.160082ms - id: 45 request: proto: HTTP/1.1 @@ -2250,7 +2254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2258,20 +2262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 552 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.464583Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:05:18.464583Z","id":"244b651d-9dcb-4e43-b571-eb09cca22642","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.64.0/22","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"},{"created_at":"2025-10-08T23:05:18.464583Z","id":"026dbeb6-5dfe-49f6-9e08-d8b1e5838045","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:b72a::/64","updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}],"tags":[],"updated_at":"2025-10-08T23:05:18.464583Z","vpc_id":"f36f0d11-cf1d-42e5-9f03-714c031bcdf9"}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1108" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2279,10 +2283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 852bb362-7599-44ed-a3d0-8d07ecb6ed80 + - 4f571e23-475d-45ac-a244-1461a2d65ac0 status: 200 OK code: 200 - duration: 26.017447ms + duration: 24.575404ms - id: 46 request: proto: HTTP/1.1 @@ -2299,7 +2303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -2307,20 +2311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 435 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2328,10 +2332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f12e2a7e-aef9-4087-a904-bafa9e875f86 - status: 404 Not Found - code: 404 - duration: 28.702489ms + - 27110013-9120-4c51-945f-922e48547e2e + status: 200 OK + code: 200 + duration: 102.363612ms - id: 47 request: proto: HTTP/1.1 @@ -2348,7 +2352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -2356,20 +2360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2351 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:18.709158Z","id":"47c8389b-7685-4012-8de3-376b9996816d","product_resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:18.709158Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2351" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2377,10 +2381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5a0a5ff-1ad7-4355-8b59-440f1760df6b + - ec6c5426-f8b9-4178-9fb5-ed7782d9610d status: 200 OK code: 200 - duration: 38.963635ms + duration: 179.211566ms - id: 48 request: proto: HTTP/1.1 @@ -2397,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/user_data + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=744dc9d8-76a1-4114-8197-e95b052545c4&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2405,20 +2409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 552 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "17" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2426,10 +2430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d273384f-7fdf-432a-9a05-1a0e883dbee7 + - 04203204-0c12-4d96-b8bb-3d0ff9c67603 status: 200 OK code: 200 - duration: 60.029861ms + duration: 48.066877ms - id: 49 request: proto: HTTP/1.1 @@ -2446,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=08ebcce2-f68e-448a-a97e-caf2ed59aea5&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2454,22 +2458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 438 + content_length: 552 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-15T15:03:20.876259Z","id":"01bab74c-ac71-4273-a05e-6e314f7aa8cc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","mac_address":"02:00:00:1D:62:61","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a115dc1b-379c-4fec-a800-951cadc5ab12"},"tags":[],"updated_at":"2025-10-15T15:03:28.452539Z","zone":null}],"total_count":1}' headers: Content-Length: - - "438" + - "552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2477,12 +2479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ea92363-f5c0-4701-90d1-27c2f8dcd307 - X-Total-Count: - - "1" + - c3ded838-6664-472b-985d-a33785b93f05 status: 200 OK code: 200 - duration: 60.829533ms + duration: 92.207945ms - id: 50 request: proto: HTTP/1.1 @@ -2499,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -2507,20 +2507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 435 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:27.976786+00:00","id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","ipam_ip_ids":["01bab74c-ac71-4273-a05e-6e314f7aa8cc"],"mac_address":"02:00:00:1d:62:61","modification_date":"2025-10-15T15:03:53.964736+00:00","private_network_id":"744dc9d8-76a1-4114-8197-e95b052545c4","server_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "549" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8471a46a-b579-4728-a05f-95700854dad8 + - ca5aa3a5-776d-4b92-9c24-ef1bb5a13b9e status: 200 OK code: 200 - duration: 28.08172ms + duration: 105.182846ms - id: 51 request: proto: HTTP/1.1 @@ -2548,28 +2548,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 0 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 221ff930-2917-47f7-b132-702931298829 - status: 200 OK - code: 200 - duration: 56.145407ms + - 7d1a2519-7fa4-49c0-b782-71267e0f83c5 + status: 204 No Content + code: 204 + duration: 582.551945ms - id: 52 request: proto: HTTP/1.1 @@ -2597,7 +2595,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2351 + content_length: 148 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"08ebcce2-f68e-448a-a97e-caf2ed59aea5","type":"not_found"}' headers: Content-Length: - - "2351" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,48 +2624,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ff8bab8-70e4-4dc0-89f0-b7e425868a14 - status: 200 OK - code: 200 - duration: 102.664485ms + - 594dc6c0-d672-41bd-a7b9-74c4abd36203 + status: 404 Not Found + code: 404 + duration: 94.177778ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=ec2365d8-e92b-47c5-9532-cc7209811ecc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic - method: GET + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/01bab74c-ac71-4273-a05e-6e314f7aa8cc + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 0 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: "" headers: - Content-Length: - - "549" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,10 +2673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94438be2-8534-4e20-b245-05985bc75903 - status: 200 OK - code: 200 - duration: 44.790406ms + - 638a4e74-1d1c-468a-a1fe-dabb9b57a8a9 + status: 204 No Content + code: 204 + duration: 88.66187ms - id: 54 request: proto: HTTP/1.1 @@ -2695,7 +2693,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -2703,20 +2701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 549 + content_length: 1933 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-10-08T23:05:19.360Z","id":"40091b66-004e-4a24-a649-fc02fafb1986","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","mac_address":"02:00:00:1A:D8:BE","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"244b651d-9dcb-4e43-b571-eb09cca22642"},"tags":[],"updated_at":"2025-10-08T23:05:25.359989Z","zone":null}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "549" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de167aa9-957e-4f8d-839a-24e5567c504b + - 12cc573f-de20-4197-b661-4389322ca792 status: 200 OK code: 200 - duration: 51.158601ms + duration: 167.312053ms - id: 55 request: proto: HTTP/1.1 @@ -2744,7 +2742,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -2752,20 +2750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 1933 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:05:25.107390+00:00","id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","ipam_ip_ids":["40091b66-004e-4a24-a649-fc02fafb1986"],"mac_address":"02:00:00:1a:d8:be","modification_date":"2025-10-08T23:06:14.817103+00:00","private_network_id":"ec2365d8-e92b-47c5-9532-cc7209811ecc","server_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:25.170411+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "435" + - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,46 +2771,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34aa174f-7f5c-4cbd-af57-7a06da904eba + - f2328470-fb18-4c1b-972f-baed2fa0356c status: 200 OK code: 200 - duration: 54.191658ms + duration: 142.979144ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 353 uncompressed: false - body: "" + body: '{"task":{"description":"server_terminate","href_from":"/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/action","href_result":"/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5","id":"88220f21-a7ed-4e58-905d-e172c44582f1","progress":0,"started_at":"2025-10-15T15:03:57.497099+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: + Content-Length: + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/88220f21-a7ed-4e58-905d-e172c44582f1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2820,10 +2824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdc94c3d-bfce-4bc2-b6a4-e9f7950a2b68 - status: 204 No Content - code: 204 - duration: 204.449941ms + - f87b5c5b-de7f-48c3-8b99-e6c92b0281e6 + status: 202 Accepted + code: 202 + duration: 305.130725ms - id: 57 request: proto: HTTP/1.1 @@ -2840,7 +2844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -2848,20 +2852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 1896 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:57.249452+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2869,29 +2873,27 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401d8f0e-9262-4371-a575-2adafd3f1bd8 - status: 404 Not Found - code: 404 - duration: 49.483187ms + - d00f4a01-0f16-4d77-a39c-a4cb877690fa + status: 200 OK + code: 200 + duration: 140.736841ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/40091b66-004e-4a24-a649-fc02fafb1986 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/744dc9d8-76a1-4114-8197-e95b052545c4 method: DELETE response: proto: HTTP/2.0 @@ -2908,9 +2910,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2918,10 +2920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8416f3e1-b3a0-4401-a809-6862d066a7a2 + - c4fada19-9500-43d3-a253-4cc4770b1d3f status: 204 No Content code: 204 - duration: 64.009091ms + duration: 1.274987611s - id: 59 request: proto: HTTP/1.1 @@ -2938,28 +2940,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ac7be18e-921a-4491-88bb-7d32dd1d4180 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1933 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:05:22.119175+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1933" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2967,52 +2967,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 272a52de-3020-496d-ba59-9f1ddcddb80e - status: 200 OK - code: 200 - duration: 104.133425ms + - 90af10ec-a699-4f6a-bf6c-5d9a2c50997e + status: 204 No Content + code: 204 + duration: 138.37252ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1896 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/action","href_result":"/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363","id":"1450d70f-600d-4f97-8ce9-1510e1820e48","progress":0,"started_at":"2025-10-08T23:06:18.148983+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:57.249452+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1896" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:18 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1450d70f-600d-4f97-8ce9-1510e1820e48 + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3020,10 +3016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e0654dd-e819-4ed8-8919-78c5d226fa3b - status: 202 Accepted - code: 202 - duration: 182.01081ms + - 9c003684-0ae3-4bda-8d4d-fc39c3c552cc + status: 200 OK + code: 200 + duration: 135.919807ms - id: 61 request: proto: HTTP/1.1 @@ -3040,7 +3036,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -3050,7 +3046,7 @@ interactions: trailer: {} content_length: 1896 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-08T23:05:18.628491+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"601","node_id":"95","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a3","maintenances":[],"modification_date":"2025-10-08T23:06:18.014768+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"75ff4690-4862-455b-8511-82b7a2ddb456","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-10-15T15:03:20.899323+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:21","maintenances":[],"modification_date":"2025-10-15T15:03:57.249452+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1896" @@ -3059,9 +3055,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:18 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3069,10 +3065,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1879434-1865-4de2-8af1-b6cfe0b6a17f + - ae8fb2bc-6106-46bd-b0c2-507ddc4ef384 status: 200 OK code: 200 - duration: 89.730438ms + duration: 139.116526ms - id: 62 request: proto: HTTP/1.1 @@ -3089,101 +3085,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/ec2365d8-e92b-47c5-9532-cc7209811ecc - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1060c92b-15b6-4710-8fae-7a1f1c4e78aa - status: 204 No Content - code: 204 - duration: 1.212773937s - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f36f0d11-cf1d-42e5-9f03-714c031bcdf9 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a35a9605-fc1a-4b82-96cb-df8a5db724ed - status: 204 No Content - code: 204 - duration: 115.971981ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5 method: GET response: proto: HTTP/2.0 @@ -3193,7 +3095,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","type":"not_found"}' headers: Content-Length: - "143" @@ -3202,9 +3104,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3212,11 +3114,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be93c3ec-3afe-44e2-8ab2-fe1a7fc608fa + - 01e6352c-f4f7-4699-9f27-1131fcbc1f7f status: 404 Not Found code: 404 - duration: 48.516796ms - - id: 65 + duration: 51.750799ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3232,7 +3134,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -3242,7 +3144,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"75ff4690-4862-455b-8511-82b7a2ddb456","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","type":"not_found"}' headers: Content-Length: - "143" @@ -3251,9 +3153,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3261,11 +3163,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 431d1f3b-6f6b-44dd-b2f1-46105c4d5c6d + - 83ee0282-9d89-43b7-81f8-e42e52a3a8ec status: 404 Not Found code: 404 - duration: 26.709649ms - - id: 66 + duration: 28.730267ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3281,7 +3183,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: GET response: proto: HTTP/2.0 @@ -3291,7 +3193,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:18.709158Z","id":"75ff4690-4862-455b-8511-82b7a2ddb456","last_detached_at":"2025-10-08T23:06:20.228446Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:20.228446Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:21.026486Z","id":"08c90653-c41b-4cf9-b305-7c9fe7ca656f","last_detached_at":"2025-10-15T15:04:09.429514Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:09.429514Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -3300,9 +3202,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3310,11 +3212,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e159f963-f926-495f-bafb-e189144589c8 + - c98b1d85-33a2-4b36-979a-76b9fb3b3f13 status: 200 OK code: 200 - duration: 61.965815ms - - id: 67 + duration: 86.410051ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3330,7 +3232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/75ff4690-4862-455b-8511-82b7a2ddb456 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08c90653-c41b-4cf9-b305-7c9fe7ca656f method: DELETE response: proto: HTTP/2.0 @@ -3347,9 +3249,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3357,11 +3259,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95e5827a-5caf-4182-bf2a-042e9897ce68 + - 52fbde98-2914-41fe-8840-11bdcb3a1bca status: 204 No Content code: 204 - duration: 71.373018ms - - id: 68 + duration: 179.713504ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3377,7 +3279,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6d79e717-2268-49a3-bd9d-b59a4a1f8363/private_nics/faa0147c-8bc7-4fbd-a1f7-3470cfb6ed29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5de4dda7-6e32-417a-89de-6ab9041ea2f5/private_nics/08ebcce2-f68e-448a-a97e-caf2ed59aea5 method: GET response: proto: HTTP/2.0 @@ -3387,7 +3289,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6d79e717-2268-49a3-bd9d-b59a4a1f8363","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5de4dda7-6e32-417a-89de-6ab9041ea2f5","type":"not_found"}' headers: Content-Length: - "143" @@ -3396,9 +3298,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3406,7 +3308,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 828d31bd-4e2b-45f1-af49-8cd6bb5b83b3 + - 92321a5d-db78-4646-8bc7-dac9b45d0661 status: 404 Not Found code: 404 - duration: 36.423248ms + duration: 30.782664ms diff --git a/internal/services/instance/testdata/security-group-any.cassette.yaml b/internal/services/instance/testdata/security-group-any.cassette.yaml index 1d65fe365..60a5a9ffd 100644 --- a/internal/services/instance/testdata/security-group-any.cassette.yaml +++ b/internal/services/instance/testdata/security-group-any.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 223 + content_length: 225 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-gallant-ganguly","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-objective-davinci","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 605 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:01.267659+00:00","description":null,"enable_default_security":true,"id":"f19cd5f7-46f8-41ce-b299-3648523625d8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.267659+00:00","name":"tf-sg-gallant-ganguly","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.324850+00:00","description":null,"enable_default_security":true,"id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.324850+00:00","name":"tf-sg-objective-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34ab8c37-ce3c-40ba-8fc4-85a43390f68d + - 28a9c9e0-31b3-4dd8-9db3-3a53c3285556 status: 201 Created code: 201 - duration: 217.483075ms + duration: 215.715278ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 605 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:01.267659+00:00","description":null,"enable_default_security":true,"id":"f19cd5f7-46f8-41ce-b299-3648523625d8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.267659+00:00","name":"tf-sg-gallant-ganguly","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.324850+00:00","description":null,"enable_default_security":true,"id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.324850+00:00","name":"tf-sg-objective-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5b193f0-f196-437a-8939-7a028d19c5bb + - fec433dd-01c9-4917-8992-4351ecb2bd71 status: 200 OK code: 200 - duration: 187.859608ms + duration: 272.732442ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d533aa86-54e9-4288-b673-b8228a47efd8","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a289ef62-3150-4461-802b-f0a08d6f58c8","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5cd1f4cd-704f-427d-ab4e-26f7a7e470aa","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"fe2d23c6-d514-419b-8adf-3e44f221f2ca","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b4cf7f6d-7875-48c5-99e6-1de6d1cd94b9","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d93dcda2-74bf-4fc6-9afa-3c4dee5c949e","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e47c898-8ff2-4604-ae58-ca8b5ba8ddb2 + - f8b20cbf-b39d-40fc-aa3d-af79de3d14b7 status: 200 OK code: 200 - duration: 393.652858ms + duration: 427.516501ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 605 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:01.267659+00:00","description":null,"enable_default_security":true,"id":"f19cd5f7-46f8-41ce-b299-3648523625d8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.911179+00:00","name":"tf-sg-gallant-ganguly","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.324850+00:00","description":null,"enable_default_security":true,"id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:00.049574+00:00","name":"tf-sg-objective-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d972b3-11a2-4fe0-a3c6-ea3e8652da37 + - e1704c83-009e-4750-91c0-0ae518d154ad status: 200 OK code: 200 - duration: 448.853984ms + duration: 132.292964ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d533aa86-54e9-4288-b673-b8228a47efd8","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a289ef62-3150-4461-802b-f0a08d6f58c8","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5cd1f4cd-704f-427d-ab4e-26f7a7e470aa","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"fe2d23c6-d514-419b-8adf-3e44f221f2ca","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b4cf7f6d-7875-48c5-99e6-1de6d1cd94b9","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d93dcda2-74bf-4fc6-9afa-3c4dee5c949e","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8715d932-a683-4dd5-9c91-2625f2a249f2 + - ac8dcf42-0d35-4f82-9265-30a607152799 status: 200 OK code: 200 - duration: 178.740806ms + duration: 93.910749ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e method: GET response: proto: HTTP/2.0 @@ -278,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 605 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:01.267659+00:00","description":null,"enable_default_security":true,"id":"f19cd5f7-46f8-41ce-b299-3648523625d8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.911179+00:00","name":"tf-sg-gallant-ganguly","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.324850+00:00","description":null,"enable_default_security":true,"id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:00.049574+00:00","name":"tf-sg-objective-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "605" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a7638ec-d67f-42c2-b427-fa44249a6119 + - 28bcbd47-ee74-4242-aa46-61e57f031db6 status: 200 OK code: 200 - duration: 116.995697ms + duration: 137.786809ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,7 +329,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d533aa86-54e9-4288-b673-b8228a47efd8","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a289ef62-3150-4461-802b-f0a08d6f58c8","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5cd1f4cd-704f-427d-ab4e-26f7a7e470aa","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"fe2d23c6-d514-419b-8adf-3e44f221f2ca","ip_range":"1.1.1.1","position":1,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b4cf7f6d-7875-48c5-99e6-1de6d1cd94b9","ip_range":"2.2.2.2","position":2,"protocol":"ANY","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d93dcda2-74bf-4fc6-9afa-3c4dee5c949e","ip_range":"3.3.3.3","position":3,"protocol":"ANY","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a22fe8c2-57ac-49e4-bf1d-d5a51e48eb6f + - 112a333f-100e-407e-a2f7-6f55376c2e55 status: 200 OK code: 200 - duration: 144.774885ms + duration: 111.359396ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e method: DELETE response: proto: HTTP/2.0 @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 786c57ec-b411-46ca-8668-13233cf43085 + - c3191bdb-2430-4f56-892c-62c2720fb068 status: 204 No Content code: 204 - duration: 220.010915ms + duration: 141.951885ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/f19cd5f7-46f8-41ce-b299-3648523625d8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/79db769c-c15f-4bfe-ab57-f04d97c6676e method: GET response: proto: HTTP/2.0 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"f19cd5f7-46f8-41ce-b299-3648523625d8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"79db769c-c15f-4bfe-ab57-f04d97c6676e","type":"not_found"}' headers: Content-Length: - "151" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,7 +444,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33309fd6-b84c-42b5-810a-7578a32cf759 + - 8e7e6133-89d3-4d6c-8412-1d2fbf765ec8 status: 404 Not Found code: 404 - duration: 99.686054ms + duration: 30.429812ms diff --git a/internal/services/instance/testdata/security-group-basic.cassette.yaml b/internal/services/instance/testdata/security-group-basic.cassette.yaml index 3b4174c95..7918f1044 100644 --- a/internal/services/instance/testdata/security-group-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.323804+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.307851+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf27afb7-0af6-44c9-ab72-c14c3a4905d3 + - f77b9a0a-1b2f-40a2-ab7a-c6d469c5562d status: 201 Created code: 201 - duration: 272.556208ms + duration: 215.203608ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: PATCH response: proto: HTTP/2.0 @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.323804+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.307851+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a248d7fe-0335-4ce3-97fc-8c5ed277df91 + - ecb36fa4-c8be-4857-92cf-f5894e98e128 status: 200 OK code: 200 - duration: 210.453478ms + duration: 236.049752ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e1a1b8b-db01-4a99-80b4-92bc42232bbd + - 73721aba-eb2b-48ae-b8f9-61521540a1a7 status: 200 OK code: 200 - duration: 329.706118ms + duration: 295.858367ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 571 + content_length: 569 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.915121+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.600825+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "571" + - "569" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e25b07bc-2775-4a0b-b691-e84e25afe3db + - b05c4d95-7e96-47ef-b569-4cc8082f7ee2 status: 200 OK code: 200 - duration: 120.127159ms + duration: 106.886434ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b88b042e-2509-46af-a1de-af4689409116 + - 4d9cb8df-6cc5-496d-ae19-4825c60cf3a6 status: 200 OK code: 200 - duration: 121.647581ms + duration: 256.376614ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.915121+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.872299+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a306c2b-f787-45d2-9f5f-815a70146644 + - 9e9b1c0f-1798-463c-9267-75ebe437754f status: 200 OK code: 200 - duration: 114.087342ms + duration: 108.988855ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,7 +329,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1527cd51-1023-415f-82c0-4fb38086a443 + - d07190f7-d5b9-48b3-ac66-a9f1ed5944f7 status: 200 OK code: 200 - duration: 125.335988ms + duration: 85.838252ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a074e39e-a736-43d6-8c73-39651b7849b9 + - d619f06c-a41b-4159-841d-de2ebc95ecb6 status: 200 OK code: 200 - duration: 231.980701ms + duration: 86.767845ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.915121+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.872299+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 048fa2fd-4f4b-4146-ad98-0d6898e8b176 + - 2302cd49-4191-48e8-84b0-60661186551b status: 200 OK code: 200 - duration: 115.23848ms + duration: 109.671874ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38362941-4778-46c2-bee1-405e3bf69aca + - 7edbb55e-2dbe-467a-aafd-fe37a91aeb53 status: 200 OK code: 200 - duration: 121.900384ms + duration: 85.920707ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -525,7 +525,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"drop","modification_date":"2025-06-10T15:30:22.915121+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"drop","modification_date":"2025-10-15T15:02:59.872299+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -534,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 750acd2b-2639-4549-93d0-2f5d3eab4e7a + - d5edc01c-e8ae-48bd-aa18-c0ba059e559f status: 200 OK code: 200 - duration: 123.883203ms + duration: 95.090361ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -574,7 +574,7 @@ interactions: trailer: {} content_length: 2046 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2b4db504-cbdb-475d-9f2b-87e3c6fa1db4","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1e5156a0-7505-4e73-8d3a-417204d2ee40","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"5197c96c-c38b-4ce2-b7f5-cbfafa3eeb5f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d4512cf4-d1f0-41c5-95aa-8e17112a812d","ip_range":"1.1.1.1","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2046" @@ -583,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5dd7c3e-a93c-411e-b60d-91af29f2b245 + - 5ffcfef2-394d-480d-9153-fb3886d20ea4 status: 200 OK code: 200 - duration: 154.428097ms + duration: 106.267396ms - id: 12 request: proto: HTTP/1.1 @@ -614,8 +614,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: PATCH response: proto: HTTP/2.0 @@ -625,7 +625,7 @@ interactions: trailer: {} content_length: 587 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:27.806578+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.454879+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "587" @@ -634,9 +634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f98fe459-3b72-4060-a8f3-a3ce90ee6e14 + - a72cc96d-657a-4d1e-ae2d-1e2cf53c2b24 status: 200 OK code: 200 - duration: 348.530581ms + duration: 293.70619ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules method: PUT response: proto: HTTP/2.0 @@ -676,7 +676,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -685,9 +685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74d051ae-9757-481c-ab63-cd0ad8e8d372 + - 790f2035-87a3-4a2e-9a4b-fdd32f5b9038 status: 200 OK code: 200 - duration: 382.985999ms + duration: 326.044379ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -723,20 +723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:28.155316+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.007848+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "587" + - "589" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e22924c-dfa7-4201-88a7-b6bd7b8122f0 + - a17b138a-c66d-420a-b69a-842f689f54c0 status: 200 OK code: 200 - duration: 126.152579ms + duration: 114.064798ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -774,7 +774,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -783,9 +783,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a0c370-cfed-4943-8d76-72f9af7f1cb8 + - b2cd2851-0927-4101-a225-6e28418c99d1 status: 200 OK code: 200 - duration: 145.206433ms + duration: 98.007248ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -823,7 +823,7 @@ interactions: trailer: {} content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:28.499806+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.007848+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "589" @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9b02f91-01bb-42e1-963e-1ff5f1ed3389 + - 9bb695ab-831d-473c-b780-c606805b9583 status: 200 OK code: 200 - duration: 94.535143ms + duration: 85.800052ms - id: 17 request: proto: HTTP/1.1 @@ -861,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -872,7 +872,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -881,9 +881,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -891,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08577e4f-3f79-4608-a9d0-44e59a66b87d + - ab68f6b9-9ba4-4306-b874-8d5a1ae1cf6c status: 200 OK code: 200 - duration: 121.768016ms + duration: 106.73844ms - id: 18 request: proto: HTTP/1.1 @@ -910,8 +910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -921,7 +921,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -930,9 +930,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -940,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da4f1224-b1c9-4066-85a8-895166629620 + - b81e5646-0af3-4d19-9372-c04855a2071a status: 200 OK code: 200 - duration: 142.618219ms + duration: 140.106328ms - id: 19 request: proto: HTTP/1.1 @@ -959,8 +959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -970,7 +970,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -979,9 +979,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee018d36-31b2-4570-99d2-cf852ee21b0d + - a0f31bfd-0391-44b2-9e58-3dee80c7824e status: 200 OK code: 200 - duration: 99.522196ms + duration: 98.593737ms - id: 20 request: proto: HTTP/1.1 @@ -1008,8 +1008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -1019,7 +1019,7 @@ interactions: trailer: {} content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:28.499806+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.007848+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "589" @@ -1028,9 +1028,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bc868e2-00e2-4160-b0f3-27c73e6e6d93 + - 1b580974-401a-4570-a19e-04460cf38a93 status: 200 OK code: 200 - duration: 113.18544ms + duration: 96.882671ms - id: 21 request: proto: HTTP/1.1 @@ -1057,8 +1057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1068,7 +1068,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -1077,9 +1077,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,10 +1087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92f2708c-2d20-493e-ae25-06a3462b9786 + - 5bdddef1-b86f-4308-aa9e-f8fbdde3c438 status: 200 OK code: 200 - duration: 237.183198ms + duration: 119.13967ms - id: 22 request: proto: HTTP/1.1 @@ -1106,8 +1106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -1117,7 +1117,7 @@ interactions: trailer: {} content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:28.499806+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.007848+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "589" @@ -1126,9 +1126,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3eee0f8-5d13-4be4-b4f5-5bc419f296cc + - a8d0ac59-3829-4769-be6c-4df56b4b153e status: 200 OK code: 200 - duration: 129.366517ms + duration: 107.619401ms - id: 23 request: proto: HTTP/1.1 @@ -1155,8 +1155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1166,7 +1166,7 @@ interactions: trailer: {} content_length: 2298 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"d59dabce-3c2a-48ff-b19e-7e68cacfa9c4","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cbac9a6a-682e-418f-bef4-38caa780967e","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"1f81c226-e9ab-421a-a1a3-60e98d24821b","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a6684016-8ade-411b-bbf1-ba3d67688337","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f509665d-dbbd-41c2-9719-6eb42bbd85c2","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a8aec059-6e6b-4cdf-a94d-1904190d3ce4","ip_range":"1.1.1.1","position":3,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2298" @@ -1175,9 +1175,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58e2d352-9886-4663-b37c-214d4110b6c6 + - 180a321e-6cf4-41e2-a275-5c665a35d61a status: 200 OK code: 200 - duration: 151.734075ms + duration: 98.078753ms - id: 24 request: proto: HTTP/1.1 @@ -1206,8 +1206,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: PATCH response: proto: HTTP/2.0 @@ -1217,7 +1217,7 @@ interactions: trailer: {} content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:32.416034+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:03.685443+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "571" @@ -1226,9 +1226,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1236,10 +1236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03d9a97a-b455-471c-9023-73489cdd6789 + - 0adbf3d2-d5d5-40fb-9e63-f6dfeda00d1f status: 200 OK code: 200 - duration: 266.041018ms + duration: 502.091347ms - id: 25 request: proto: HTTP/1.1 @@ -1257,8 +1257,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules method: PUT response: proto: HTTP/2.0 @@ -1277,9 +1277,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1287,10 +1287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18d47720-30a9-4be6-a9da-257450e26e2c + - 5586eb0f-6706-421e-a0a1-a26d1bc4c2b9 status: 200 OK code: 200 - duration: 375.5322ms + duration: 287.510959ms - id: 26 request: proto: HTTP/1.1 @@ -1306,8 +1306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -1315,20 +1315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 573 + content_length: 571 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:33.035578+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:04.189671+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "573" + - "571" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1336,10 +1336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d7dd2a2-ec27-4b3e-b33c-e264b34754dc + - bdc6d615-409e-40b0-8d06-72dfa4c67121 status: 200 OK code: 200 - duration: 154.741474ms + duration: 88.206033ms - id: 27 request: proto: HTTP/1.1 @@ -1355,8 +1355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1375,9 +1375,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:33 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1385,10 +1385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f6834da-2611-40aa-bb7b-e7c4945065c9 + - e7705591-c0b7-4ded-bbb2-95384578cd39 status: 200 OK code: 200 - duration: 95.981596ms + duration: 112.455935ms - id: 28 request: proto: HTTP/1.1 @@ -1404,8 +1404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -1415,7 +1415,7 @@ interactions: trailer: {} content_length: 573 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:22.323804+00:00","description":null,"enable_default_security":true,"id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:33.035578+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.307851+00:00","description":null,"enable_default_security":true,"id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:04.451291+00:00","name":"sg-name","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "573" @@ -1424,9 +1424,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1434,10 +1434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d189af1-d721-4d59-82c2-b9137d382385 + - 1f895914-edd4-405b-a707-73979437a38f status: 200 OK code: 200 - duration: 106.623754ms + duration: 97.213603ms - id: 29 request: proto: HTTP/1.1 @@ -1453,8 +1453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1473,9 +1473,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:34 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1483,10 +1483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9613ee42-29d8-486a-88b0-eeaf75d6691e + - 0a21dec1-c61b-41a6-96c5-51d0847c07a5 status: 200 OK code: 200 - duration: 113.441329ms + duration: 129.114244ms - id: 30 request: proto: HTTP/1.1 @@ -1502,8 +1502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: DELETE response: proto: HTTP/2.0 @@ -1520,9 +1520,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1530,10 +1530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35dda8d-4d6d-4168-9437-43f4d0f4ef59 + - c89b53a4-d08d-439e-b907-d2a7d25ecc9b status: 204 No Content code: 204 - duration: 339.153644ms + duration: 124.670226ms - id: 31 request: proto: HTTP/1.1 @@ -1549,8 +1549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/364dadb2-813a-4dd1-a872-7cc6af51d5c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c87064d9-c5ca-420a-82a1-4f53fa31dda0 method: GET response: proto: HTTP/2.0 @@ -1560,7 +1560,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"364dadb2-813a-4dd1-a872-7cc6af51d5c8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"c87064d9-c5ca-420a-82a1-4f53fa31dda0","type":"not_found"}' headers: Content-Length: - "151" @@ -1569,9 +1569,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:35 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1579,7 +1579,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7276234d-5593-4b80-af72-3bdeb129b1d2 + - 47eb763f-bafd-48b0-a8e7-0d7e09e7bf08 status: 404 Not Found code: 404 - duration: 35.680546ms + duration: 30.630389ms diff --git a/internal/services/instance/testdata/security-group-enable-default-security.cassette.yaml b/internal/services/instance/testdata/security-group-enable-default-security.cassette.yaml index 649cb6822..b065fdd5d 100644 --- a/internal/services/instance/testdata/security-group-enable-default-security.cassette.yaml +++ b/internal/services/instance/testdata/security-group-enable-default-security.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 221 + content_length: 220 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-brave-carson","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":false}' + body: '{"name":"tf-sg-crazy-fermi","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":false,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.649848+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":false,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.198409+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3489e8dc-52bc-4d30-84b0-8ff5ffdc61c4 + - bbebcf24-6ee9-442c-94df-1a61372f6be3 status: 201 Created code: 201 - duration: 236.799371ms + duration: 195.081154ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":false,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.649848+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":false,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.198409+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0316a0d-1e89-413a-829e-f18d047445e2 + - f4988d78-a5d9-474f-8a97-aee83db7a215 status: 200 OK code: 200 - duration: 225.041379ms + duration: 156.289423ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules method: PUT response: proto: HTTP/2.0 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:58 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b50649-5e70-41e0-8693-627c3c659a59 + - ec360020-a5e1-4420-83ab-e7ebecfd9d3d status: 200 OK code: 200 - duration: 222.313454ms + duration: 165.859844ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":false,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.649848+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":false,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.198409+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:58 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57575ede-9d19-4c7f-8861-bc85d0ba72d1 + - c91b7121-e84e-4696-8ac6-262f9e4e9ee9 status: 200 OK code: 200 - duration: 112.909313ms + duration: 102.246789ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:58 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77f9e7ac-094b-41c4-b723-b657aac549e5 + - 3e639e20-7f8a-41f8-b69d-2ea43a8bbcc0 status: 200 OK code: 200 - duration: 140.254999ms + duration: 109.295604ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -278,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":false,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.649848+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":false,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.198409+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:59 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6608e9d4-4cb2-4767-92be-74f701cd790c + - f07e315e-b97d-4f99-a965-0d422a8d26de status: 200 OK code: 200 - duration: 120.51098ms + duration: 100.796642ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:59 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d9e375e-de1e-4498-a6f6-237c1cfc0b61 + - 6d5e64da-64f0-44a7-9adc-6869f64d8528 status: 200 OK code: 200 - duration: 153.164159ms + duration: 114.706468ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":false,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.649848+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":false,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.198409+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:00 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1080b3b6-00d6-4117-a3e2-25d4a81cdbb6 + - 84fb0a5e-d0dd-483a-8edb-16160d0e04f1 status: 200 OK code: 200 - duration: 113.548492ms + duration: 94.297448ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:00 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,29 +446,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06576d1e-da1d-4d1b-a34f-15ee2af7f302 + - 075af559-8bf9-4e85-83ca-d8ac95ea453d status: 200 OK code: 200 - duration: 104.89293ms + duration: 101.919136ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 171 + content_length: 170 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-brave-carson","enable_default_security":true,"inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-crazy-fermi","enable_default_security":true,"inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: PATCH response: proto: HTTP/2.0 @@ -476,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 598 + content_length: 597 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":true,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.180502+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":true,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:28.676519+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "598" + - "597" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb400bae-b8a0-41c7-b943-b52fec8317a6 + - 4b052660-a213-455e-8a8b-6d6842eab771 status: 200 OK code: 200 - duration: 341.555795ms + duration: 240.795356ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules method: PUT response: proto: HTTP/2.0 @@ -538,9 +538,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -548,10 +548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea631ebc-3bee-40d1-b436-c91a93440e1d + - f6f02029-9dca-4406-b4bf-12af2de504d8 status: 200 OK code: 200 - duration: 193.23568ms + duration: 167.820311ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -576,20 +576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 599 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":true,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.481132+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":true,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:28.901937+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "599" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56fb454f-507c-49cc-ba23-669076726eaa + - c416d141-42ee-4fbe-bc21-37877cbe4eb4 status: 200 OK code: 200 - duration: 155.094749ms + duration: 101.24897ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 875154e1-4212-4085-86a8-ba73cb52693e + - 48605c5b-0abf-49a9-a5d9-587a8d08cad7 status: 200 OK code: 200 - duration: 111.779033ms + duration: 109.771538ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -674,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 599 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:57.649848+00:00","description":null,"enable_default_security":true,"id":"d4a4c1b2-f464-4503-bece-f35787485f56","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:01.481132+00:00","name":"tf-sg-brave-carson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:27.198409+00:00","description":null,"enable_default_security":true,"id":"888b8b5d-e5a9-484a-bd8f-d42588476684","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:28.901937+00:00","name":"tf-sg-crazy-fermi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "599" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cf47b99-3624-4919-978e-8defa7f69a6b + - dfc540dc-10f6-4b5f-9e57-11e4ddca752b status: 200 OK code: 200 - duration: 109.213261ms + duration: 96.912081ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -734,9 +734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:03 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c1488b1-d52b-4a11-ba10-4768f5304136 + - 80f004c0-35a6-48b8-900e-2affc8cc8f0d status: 200 OK code: 200 - duration: 148.182005ms + duration: 101.198356ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: DELETE response: proto: HTTP/2.0 @@ -781,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2240fab0-251b-4b7a-92d7-7b2538ecfbd4 + - 24c07080-62ce-4925-875e-75ed8347bc4a status: 204 No Content code: 204 - duration: 179.613211ms + duration: 148.63228ms - id: 16 request: proto: HTTP/1.1 @@ -810,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d4a4c1b2-f464-4503-bece-f35787485f56 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/888b8b5d-e5a9-484a-bd8f-d42588476684 method: GET response: proto: HTTP/2.0 @@ -821,7 +821,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d4a4c1b2-f464-4503-bece-f35787485f56","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"888b8b5d-e5a9-484a-bd8f-d42588476684","type":"not_found"}' headers: Content-Length: - "151" @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:04 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,7 +840,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c9de7f5-cee6-4111-bd2a-fec11ae45474 + - dd1fb7ff-d727-4a6a-97f1-b359a41d363d status: 404 Not Found code: 404 - duration: 69.683066ms + duration: 34.544491ms diff --git a/internal/services/instance/testdata/security-group-icmp.cassette.yaml b/internal/services/instance/testdata/security-group-icmp.cassette.yaml index 180c3d47e..9563b4f99 100644 --- a/internal/services/instance/testdata/security-group-icmp.cassette.yaml +++ b/internal/services/instance/testdata/security-group-icmp.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 223 + content_length: 221 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-sharp-blackburn","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-sweet-johnson","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.008368+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.231082+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3055a894-3a7c-468c-b3a4-e27e56a68109 + - dd0491af-41af-4729-bb02-d131faa87cda status: 201 Created code: 201 - duration: 315.668436ms + duration: 202.865839ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.008368+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.231082+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa753290-17a7-4926-b514-e98019163ef1 + - 74147278-f4ca-42bd-aa95-b611d979ee2a status: 200 OK code: 200 - duration: 205.859025ms + duration: 155.112905ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"199db1ed-a6e3-4ded-ae5b-0a19c9c4e087","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5fea87e-81a9-4f66-bd81-6086e17b67f2 + - 31d188c1-363c-4eec-9d5c-8cbd5199835b status: 200 OK code: 200 - duration: 440.520969ms + duration: 348.259481ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.701601+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.752111+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a5d2c4-1b04-4cdc-afd7-d02f5e920f19 + - 0fecbb74-e992-4b3e-ae32-ffe1d710534e status: 200 OK code: 200 - duration: 142.851358ms + duration: 116.065274ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"199db1ed-a6e3-4ded-ae5b-0a19c9c4e087","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 764489ad-677d-4eda-aa49-a325fb0320f6 + - 5223a858-d1d0-47e3-b851-c06f75664106 status: 200 OK code: 200 - duration: 158.388037ms + duration: 88.375757ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"199db1ed-a6e3-4ded-ae5b-0a19c9c4e087","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71c5e874-c27c-4946-8a9c-fd76d068c801 + - 9dbd1f3a-6346-4b16-b7c3-ee7e1e6a2b68 status: 200 OK code: 200 - duration: 132.488544ms + duration: 106.12646ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -327,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.701601+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.752111+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75bb9753-1cbe-4779-b88c-a96d2bde4832 + - adbf80bb-03e3-4aac-96b1-d785bd5e1e63 status: 200 OK code: 200 - duration: 183.375609ms + duration: 99.504021ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"199db1ed-a6e3-4ded-ae5b-0a19c9c4e087","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56cc3677-c99e-4320-858f-084ffd016fd3 + - 7c19461d-7f6b-4960-b282-9676e6afc0b3 status: 200 OK code: 200 - duration: 115.881719ms + duration: 125.059781ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -425,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.701601+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.752111+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b2ba948-8449-4591-9606-33cbf608b573 + - 2283ef76-19ce-4106-b6a6-f12c06f0b62b status: 200 OK code: 200 - duration: 106.693917ms + duration: 86.643502ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"199db1ed-a6e3-4ded-ae5b-0a19c9c4e087","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"84137932-94b7-4eac-8b9d-200bd2d23a31","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,29 +495,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c693c9da-0195-4291-9af3-5446daa557f4 + - 55b2b3b8-4438-4066-b709-1dfe1723059e status: 200 OK code: 200 - duration: 90.165229ms + duration: 114.524738ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 143 + content_length: 141 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-sharp-blackburn","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-sweet-johnson","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: PATCH response: proto: HTTP/2.0 @@ -525,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.701601+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.752111+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54008510-4d0f-4102-b86b-ec379f635fd1 + - 77cc719a-0d38-4922-bfe8-039eaf771516 status: 200 OK code: 200 - duration: 228.717064ms + duration: 167.95373ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules method: PUT response: proto: HTTP/2.0 @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 1791 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2fab1540-701c-42d2-ad2c-fdbbc5f80b1c","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' headers: Content-Length: - "1791" @@ -587,9 +587,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c294f3f4-cdec-4431-a38b-9280ace523d9 + - 42da14cd-1f2c-41b7-b263-34866bd5fe93 status: 200 OK code: 200 - duration: 379.496019ms + duration: 239.836252ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -627,7 +627,7 @@ interactions: trailer: {} content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:53.320349+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.456489+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "601" @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 474f4fb7-f208-4164-a8e0-b40f8f231c11 + - 1bf451e4-2044-435a-89e2-5863e02a0f6c status: 200 OK code: 200 - duration: 105.675026ms + duration: 109.096247ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -676,7 +676,7 @@ interactions: trailer: {} content_length: 1791 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2fab1540-701c-42d2-ad2c-fdbbc5f80b1c","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' headers: Content-Length: - "1791" @@ -685,9 +685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 861be100-d8f4-479b-aec3-2087ad333347 + - ec1e5f9d-97d7-424a-b49b-73c02899646b status: 200 OK code: 200 - duration: 92.498826ms + duration: 87.313098ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,7 +725,7 @@ interactions: trailer: {} content_length: 1791 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2fab1540-701c-42d2-ad2c-fdbbc5f80b1c","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' headers: Content-Length: - "1791" @@ -734,9 +734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:54 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4667d1-9d5a-4004-b600-f7e9078562e8 + - e5e8ea38-54c8-42a2-9a28-81fad89131e8 status: 200 OK code: 200 - duration: 125.035956ms + duration: 101.666063ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -772,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:49.008368+00:00","description":null,"enable_default_security":true,"id":"8aa10281-0716-4747-bc98-34c7aab09e61","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:53.688730+00:00","name":"tf-sg-sharp-blackburn","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.231082+00:00","description":null,"enable_default_security":true,"id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.456489+00:00","name":"tf-sg-sweet-johnson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:54 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb2552cc-3190-4a9c-823c-d29bbb49028d + - 6dd5fa7f-40f3-47a8-9ff6-2253b80543f0 status: 200 OK code: 200 - duration: 114.428814ms + duration: 114.782734ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,7 +823,7 @@ interactions: trailer: {} content_length: 1791 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2fab1540-701c-42d2-ad2c-fdbbc5f80b1c","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"f76cddc6-6212-4144-b348-7dfdf7b5626a","ip_range":"8.8.8.8","position":1,"protocol":"ICMP","zone":"fr-par-1"}]}' headers: Content-Length: - "1791" @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d77e6fa-d2bb-4419-8ba4-03622ab2ad49 + - 4dcca2ca-e210-4e1f-8ead-71c49b5281c6 status: 200 OK code: 200 - duration: 135.125469ms + duration: 89.881591ms - id: 17 request: proto: HTTP/1.1 @@ -861,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: DELETE response: proto: HTTP/2.0 @@ -879,9 +879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:56 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74814916-7f8f-4bea-8b2e-66bb6a338c26 + - d780c76d-9daf-492c-bccc-d71ae312f97f status: 204 No Content code: 204 - duration: 175.531147ms + duration: 152.298656ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8aa10281-0716-4747-bc98-34c7aab09e61 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/9e174c2a-9eb8-4de2-8491-c39606dd7aee method: GET response: proto: HTTP/2.0 @@ -919,7 +919,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8aa10281-0716-4747-bc98-34c7aab09e61","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"9e174c2a-9eb8-4de2-8491-c39606dd7aee","type":"not_found"}' headers: Content-Length: - "151" @@ -928,9 +928,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:56 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,7 +938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5892598-5e6c-45d1-9abe-fe3a4f7f23ca + - bb001e46-f702-4ca4-b77f-4cb305594a8e status: 404 Not Found code: 404 - duration: 79.648245ms + duration: 27.515131ms diff --git a/internal/services/instance/testdata/security-group-remove-port.cassette.yaml b/internal/services/instance/testdata/security-group-remove-port.cassette.yaml index 9501fd7d7..68a8e4f51 100644 --- a/internal/services/instance/testdata/security-group-remove-port.cassette.yaml +++ b/internal/services/instance/testdata/security-group-remove-port.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-eloquent-greider","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-funny-mirzakhani","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 604 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:48.503559+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.331125+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "604" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c64a1425-0cae-46c5-b336-610ee694298c + - d14f19b7-5e00-4b24-9349-356a50a52e17 status: 201 Created code: 201 - duration: 258.968599ms + duration: 245.982054ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: PATCH response: proto: HTTP/2.0 @@ -82,7 +82,7 @@ interactions: trailer: {} content_length: 604 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:48.503559+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.331125+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "604" @@ -91,9 +91,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b701bc4-538e-4988-91df-9857444172d9 + - c99a288c-b629-4483-ae68-98625c81b68e status: 200 OK code: 200 - duration: 218.922165ms + duration: 171.405776ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ca876316-61aa-49e4-a27d-bfa3cffe248d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05b79310-76fe-4cef-8886-36717512e29e + - 81b3bdb2-52d1-4019-856b-41c06511b78a status: 200 OK code: 200 - duration: 357.678633ms + duration: 347.775444ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -182,7 +182,7 @@ interactions: trailer: {} content_length: 604 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.124754+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.889019+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "604" @@ -191,9 +191,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 572d05e0-0e67-47fe-8bfc-337eca3a53aa + - 5d946b4a-f4b3-4257-9538-b120439696b2 status: 200 OK code: 200 - duration: 148.745523ms + duration: 273.391468ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ca876316-61aa-49e4-a27d-bfa3cffe248d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4805fe6f-8f78-499d-844d-161fde75aef3 + - a3deb881-0a6b-4443-a7a4-4f27f6534432 status: 200 OK code: 200 - duration: 128.683297ms + duration: 101.516372ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ca876316-61aa-49e4-a27d-bfa3cffe248d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98b9a265-acca-4702-930d-048ffe12a8a7 + - bfd5baea-fd40-4a3d-aa44-0d688f557b8e status: 200 OK code: 200 - duration: 91.742588ms + duration: 152.025992ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -329,7 +329,7 @@ interactions: trailer: {} content_length: 604 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.124754+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.889019+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "604" @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c106683-f032-4fc7-9352-d33fafcdccd4 + - 76eb556d-83d2-4151-b54f-a9ddbbd52f54 status: 200 OK code: 200 - duration: 100.472499ms + duration: 94.317431ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ca876316-61aa-49e4-a27d-bfa3cffe248d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd4a883d-0b2b-4076-8fc9-88188568abd4 + - 93650f78-86ca-40f9-a818-23d3586b89af status: 200 OK code: 200 - duration: 85.038855ms + duration: 89.897699ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: trailer: {} content_length: 604 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:49.124754+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.889019+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - "604" @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c813e696-c0ef-4f82-9d24-76c36572ed1b + - e7cc043f-f784-4241-8a7c-7588e7a414d0 status: 200 OK code: 200 - duration: 113.546009ms + duration: 92.070412ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ca876316-61aa-49e4-a27d-bfa3cffe248d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"56d2441b-f78c-4d39-a8fc-953744d85d9f","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1792" @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 329392f9-acf6-4ad8-8591-5c1fee3d6037 + - 0ad7f10e-820b-4923-b187-ffdf0f69bff2 status: 200 OK code: 200 - duration: 82.500515ms + duration: 85.131258ms - id: 10 request: proto: HTTP/1.1 @@ -510,14 +510,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-eloquent-greider","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-funny-mirzakhani","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: PATCH response: proto: HTTP/2.0 @@ -527,7 +527,7 @@ interactions: trailer: {} content_length: 586 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:52.291846+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.327162+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "586" @@ -536,9 +536,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30b69fc0-5472-4c4b-9793-ed482c316b33 + - eb283f84-3484-4840-a2ba-d141f9376caf status: 200 OK code: 200 - duration: 295.922473ms + duration: 273.404727ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules method: PUT response: proto: HTTP/2.0 @@ -578,7 +578,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"69e1f984-481b-43c2-934d-9b8ba801b915","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -587,9 +587,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2ec4bb0-3328-4a4c-aa6e-998a36bb4922 + - 4d7eb9c6-53ed-49f5-bc05-ee9906eaf521 status: 200 OK code: 200 - duration: 297.660323ms + duration: 260.227022ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -627,7 +627,7 @@ interactions: trailer: {} content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:52.595304+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.594367+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "588" @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab993e01-e6d1-4069-b265-faf2b966857b + - d61ca708-cb13-4c2e-9ca5-dca6283e1a9b status: 200 OK code: 200 - duration: 96.07958ms + duration: 107.351347ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -676,7 +676,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"69e1f984-481b-43c2-934d-9b8ba801b915","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -685,9 +685,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce8e387b-749c-41c7-9bf2-66bb062fd9ae + - e042f211-6242-4fcd-87b6-48111e82d05d status: 200 OK code: 200 - duration: 145.777506ms + duration: 107.306613ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,7 +725,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"69e1f984-481b-43c2-934d-9b8ba801b915","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -734,9 +734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6483860-9809-48ff-81bb-7e7437bc25a4 + - 39961028-5744-40d1-9fdc-8d2d8ffc8d3c status: 200 OK code: 200 - duration: 107.110579ms + duration: 150.829693ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -774,7 +774,7 @@ interactions: trailer: {} content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:48.503559+00:00","description":null,"enable_default_security":true,"id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:52.595304+00:00","name":"tf-sg-eloquent-greider","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.331125+00:00","description":null,"enable_default_security":true,"id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.594367+00:00","name":"tf-sg-funny-mirzakhani","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "588" @@ -783,9 +783,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:54 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7695ba5-d552-40f2-bc62-aa3915cf7662 + - 986ba312-0a00-4f1f-b1bb-f27ddb073fb5 status: 200 OK code: 200 - duration: 97.096067ms + duration: 96.586896ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,7 +823,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"69e1f984-481b-43c2-934d-9b8ba801b915","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"33f06877-217c-4c41-9a04-0c3f6327fae9","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:54 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d02c89-7eab-4b68-963e-252e9aff695a + - 0937e056-af6d-448c-9d14-d1213a2d8eb5 status: 200 OK code: 200 - duration: 124.463252ms + duration: 122.503092ms - id: 17 request: proto: HTTP/1.1 @@ -861,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: DELETE response: proto: HTTP/2.0 @@ -879,9 +879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d57d2a7b-709b-4b66-9ada-fb9d166dc12d + - 45bd5663-b2d8-4323-8f34-afe37f46c7cd status: 204 No Content code: 204 - duration: 234.826622ms + duration: 178.579535ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/67c34767-7f89-46bf-bbbc-e201398e2b0f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6 method: GET response: proto: HTTP/2.0 @@ -919,7 +919,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"67c34767-7f89-46bf-bbbc-e201398e2b0f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"96a12e6d-0092-4bcf-b1b8-56fe8a8c88b6","type":"not_found"}' headers: Content-Length: - "151" @@ -928,9 +928,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,7 +938,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 855fde7e-7311-4225-b31b-09ab5aba14c4 + - 23199e3e-b582-4329-b870-5bf754b2cceb status: 404 Not Found code: 404 - duration: 59.232797ms + duration: 25.700171ms diff --git a/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml b/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml index a3a622192..4aaa5d92d 100644 --- a/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 196 + content_length: 198 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-frosty-leavitt","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-hopeful-williams","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.404511+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.274138+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4afe95be-517f-48d2-85c9-ca9829c57cae + - a655cd73-b5f7-479d-bb79-6d12adfeeb1e status: 201 Created code: 201 - duration: 670.04769ms + duration: 186.315796ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.404511+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.274138+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0758ac1d-6a42-4f1f-a100-a67cd2f7565a + - bdd726ad-d647-47aa-b280-eb1e07be57b0 status: 200 OK code: 200 - duration: 181.124943ms + duration: 89.143515ms - id: 2 request: proto: HTTP/1.1 @@ -120,8 +120,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules method: PUT response: proto: HTTP/2.0 @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9df3e5e5-4719-47ea-8995-c0daf5b23646 + - 2ddd47e1-791f-44cf-83ea-8dab06ed2f8a status: 200 OK code: 200 - duration: 225.882264ms + duration: 178.251975ms - id: 3 request: proto: HTTP/1.1 @@ -169,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18ba4dd6-d497-4e8a-b5fd-9ea43d40ef21 + - 0f6188d6-b92a-46b8-86c6-7484bbde57b3 status: 200 OK code: 200 - duration: 93.41677ms + duration: 232.152589ms - id: 4 request: proto: HTTP/1.1 @@ -218,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.404511+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.274138+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aaeab56-3a3d-4926-b4f4-6428b380ac3d + - 0bb0d7be-57fc-413f-a0ff-2402b7cadb69 status: 200 OK code: 200 - duration: 161.437269ms + duration: 278.647508ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -276,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.404511+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.274138+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a613a7d-d11a-472f-a756-53279570924d + - 9a72aa19-2f34-4e14-ab8b-48b73a07aaf6 status: 200 OK code: 200 - duration: 136.427083ms + duration: 136.566422ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bff5bc2-9ae8-4984-bf1e-31abd42a4da2 + - a94036f1-9d67-4f98-9f5f-479d15376080 status: 200 OK code: 200 - duration: 130.137929ms + duration: 94.868595ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -374,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.404511+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.274138+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0291bceb-9515-4e9b-a0f5-89932544692b + - fdd17344-1dc3-4d36-9f16-d4a354122e29 status: 200 OK code: 200 - duration: 99.82108ms + duration: 107.850572ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ebb4f3-0800-4430-837c-0b4994b21028 + - 3c171bba-4205-41d9-85c5-40035532cf72 status: 200 OK code: 200 - duration: 110.381006ms + duration: 99.368076ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +465,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules method: PUT response: proto: HTTP/2.0 @@ -476,7 +476,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"88c252e1-a9f1-4a89-ba00-3c2839f1bd27","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6a404657-20c5-4277-aab4-09ac6fe00b04","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"61d6e178-af2f-4305-b8f1-af4920a384e6","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b213ce03-32ff-4973-8682-74773dd0346d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"61d2bfd1-a971-4135-8ecc-e2a25903b220","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2849e635-3b27-486c-bfc4-fc02cea80ac6","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"57579092-7c83-47fb-a842-e714bed57bfa","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b3d47a06-85d1-44a8-af68-782bc65fd5a8","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -485,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2508e02a-1909-4a59-a8a6-1014870cdb21 + - c596a119-5238-40ce-bccb-8dce6969ecf9 status: 200 OK code: 200 - duration: 322.783999ms + duration: 246.59114ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -525,7 +525,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"88c252e1-a9f1-4a89-ba00-3c2839f1bd27","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6a404657-20c5-4277-aab4-09ac6fe00b04","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"61d6e178-af2f-4305-b8f1-af4920a384e6","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b213ce03-32ff-4973-8682-74773dd0346d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"61d2bfd1-a971-4135-8ecc-e2a25903b220","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2849e635-3b27-486c-bfc4-fc02cea80ac6","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"57579092-7c83-47fb-a842-e714bed57bfa","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b3d47a06-85d1-44a8-af68-782bc65fd5a8","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -534,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ec3ee43-6e8c-454f-8a85-7ea09a329b5a + - 5dd74fb0-fc38-48d3-b979-0e2b89fd1574 status: 200 OK code: 200 - duration: 202.362784ms + duration: 108.679906ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -572,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:55.699655+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.347260+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:56 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c17e274-708c-41fa-8967-1edc80cf7479 + - 37337cad-0aba-4bc2-bd38-09048894334d status: 200 OK code: 200 - duration: 148.116788ms + duration: 110.569227ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -621,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:55.699655+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.347260+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f712ed1-668e-489c-92fe-4a49c9c282d0 + - fd0af842-c49e-4e94-92f9-015cb9d6ac44 status: 200 OK code: 200 - duration: 109.838347ms + duration: 94.47615ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -672,7 +672,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"88c252e1-a9f1-4a89-ba00-3c2839f1bd27","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6a404657-20c5-4277-aab4-09ac6fe00b04","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"61d6e178-af2f-4305-b8f1-af4920a384e6","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b213ce03-32ff-4973-8682-74773dd0346d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"61d2bfd1-a971-4135-8ecc-e2a25903b220","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2849e635-3b27-486c-bfc4-fc02cea80ac6","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"57579092-7c83-47fb-a842-e714bed57bfa","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b3d47a06-85d1-44a8-af68-782bc65fd5a8","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -681,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:57 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4a64567-b272-4810-9ff7-dc9cbf4312be + - 13d5777a-a32a-4084-9685-7494aee25c4f status: 200 OK code: 200 - duration: 98.238693ms + duration: 140.548797ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -719,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:55.699655+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:01.347260+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf91ed0c-3aa1-4e0e-a8b0-abe2a465e0b4 + - f732edb2-33af-4269-9acd-935729458d8c status: 200 OK code: 200 - duration: 120.677987ms + duration: 104.674733ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -770,7 +770,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"88c252e1-a9f1-4a89-ba00-3c2839f1bd27","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6a404657-20c5-4277-aab4-09ac6fe00b04","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"61d6e178-af2f-4305-b8f1-af4920a384e6","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b213ce03-32ff-4973-8682-74773dd0346d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"61d2bfd1-a971-4135-8ecc-e2a25903b220","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"2849e635-3b27-486c-bfc4-fc02cea80ac6","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"57579092-7c83-47fb-a842-e714bed57bfa","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"b3d47a06-85d1-44a8-af68-782bc65fd5a8","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -779,9 +779,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07494159-b44a-4b75-ad9d-afc76e78bb1f + - 2ad4e729-e869-4ee1-bc6a-9176adeee556 status: 200 OK code: 200 - duration: 135.489826ms + duration: 118.833996ms - id: 16 request: proto: HTTP/1.1 @@ -804,14 +804,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"rules":[{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' + body: '{"rules":[{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":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) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules method: PUT response: proto: HTTP/2.0 @@ -821,7 +821,7 @@ interactions: trailer: {} content_length: 2047 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a3316a93-5426-4f15-a6eb-ae152a60ead2","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b1e9d692-7d37-4024-9ba2-1c14b5572518","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"c5e00f96-7d1b-41db-a0a2-a721831bfb80","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"0dc1c6ab-37f7-4926-8984-ddc56b2b6633","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2047" @@ -830,9 +830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7a15055-0078-4dcc-87b6-88dcce802296 + - c2e971f3-4de9-42b1-a03f-49d924e898ef status: 200 OK code: 200 - duration: 364.477712ms + duration: 335.199588ms - id: 17 request: proto: HTTP/1.1 @@ -859,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -870,7 +870,7 @@ interactions: trailer: {} content_length: 2047 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a3316a93-5426-4f15-a6eb-ae152a60ead2","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b1e9d692-7d37-4024-9ba2-1c14b5572518","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"c5e00f96-7d1b-41db-a0a2-a721831bfb80","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"0dc1c6ab-37f7-4926-8984-ddc56b2b6633","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2047" @@ -879,9 +879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5feb5b47-a22a-4e83-8e45-8fbcdfdafa5b + - 6e679fdf-cfa0-4ed2-9bb4-0114d19ee6b0 status: 200 OK code: 200 - duration: 118.431273ms + duration: 109.659794ms - id: 18 request: proto: HTTP/1.1 @@ -908,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -917,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:01.149232+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.878748+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:01 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffde8a29-8ce5-46f6-a8cf-f25f8a78c5fc + - d934b0ad-b874-4663-a6d7-5259ff4699e5 status: 200 OK code: 200 - duration: 124.370421ms + duration: 106.189451ms - id: 19 request: proto: HTTP/1.1 @@ -957,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -966,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:01.149232+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.878748+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717ef3af-86c6-4e83-8b28-7cd7e6dfafab + - 14e2e42e-eb86-44e2-96c2-3ba94b93cdad status: 200 OK code: 200 - duration: 113.352768ms + duration: 99.257101ms - id: 20 request: proto: HTTP/1.1 @@ -1006,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1017,7 +1017,7 @@ interactions: trailer: {} content_length: 2047 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a3316a93-5426-4f15-a6eb-ae152a60ead2","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b1e9d692-7d37-4024-9ba2-1c14b5572518","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"c5e00f96-7d1b-41db-a0a2-a721831bfb80","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"0dc1c6ab-37f7-4926-8984-ddc56b2b6633","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2047" @@ -1026,9 +1026,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:03 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f679182-f94a-4f90-b0e5-64aa5b79047b + - 55b001be-1a7a-403e-b009-dff4e390fe3d status: 200 OK code: 200 - duration: 87.913889ms + duration: 87.298661ms - id: 21 request: proto: HTTP/1.1 @@ -1055,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -1064,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:01.149232+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:02.878748+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f310d40-d512-407f-8888-aa461b554dbf + - ecfd0263-2709-420d-bceb-580cff6de9a3 status: 200 OK code: 200 - duration: 80.843449ms + duration: 95.347635ms - id: 22 request: proto: HTTP/1.1 @@ -1104,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1115,7 +1115,7 @@ interactions: trailer: {} content_length: 2047 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a3316a93-5426-4f15-a6eb-ae152a60ead2","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b1e9d692-7d37-4024-9ba2-1c14b5572518","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"c5e00f96-7d1b-41db-a0a2-a721831bfb80","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"0dc1c6ab-37f7-4926-8984-ddc56b2b6633","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2047" @@ -1124,9 +1124,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:04 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a6104d1-394e-48c7-94b5-0000364d2f63 + - 9c747486-f75b-4916-beaa-734e7a4bc34a status: 200 OK code: 200 - duration: 111.616242ms + duration: 100.891735ms - id: 23 request: proto: HTTP/1.1 @@ -1155,8 +1155,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules method: PUT response: proto: HTTP/2.0 @@ -1175,9 +1175,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca8da90d-0bb9-4995-b3ec-0adcd70cc5da + - 072a8111-91a8-46ec-8eaa-616dc310ae39 status: 200 OK code: 200 - duration: 328.649898ms + duration: 305.446979ms - id: 24 request: proto: HTTP/1.1 @@ -1204,8 +1204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1224,9 +1224,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e982a6-f8c2-44e2-8d79-68236173d524 + - 8c5cbdc6-4e4b-42f9-8213-030638c5efea status: 200 OK code: 200 - duration: 96.387ms + duration: 96.529421ms - id: 25 request: proto: HTTP/1.1 @@ -1253,8 +1253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -1262,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:06.292036+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:04.305429+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:06 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 179fe018-5ecf-4ae8-9657-7396e565173e + - 8241fecb-8a11-46a7-bbd9-f0d7d570dee8 status: 200 OK code: 200 - duration: 116.159122ms + duration: 95.885905ms - id: 26 request: proto: HTTP/1.1 @@ -1302,8 +1302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -1311,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 586 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.404511+00:00","description":null,"enable_default_security":true,"id":"c2738b35-fb47-411f-a41d-cc177312be82","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:06.292036+00:00","name":"tf-sg-frosty-leavitt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.274138+00:00","description":null,"enable_default_security":true,"id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:04.305429+00:00","name":"tf-sg-hopeful-williams","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "586" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afce0c70-9187-4870-a010-6632eabca258 + - e48ddd13-9496-4822-9ca7-8e21c00ea3ea status: 200 OK code: 200 - duration: 112.005041ms + duration: 106.10249ms - id: 27 request: proto: HTTP/1.1 @@ -1351,8 +1351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1371,9 +1371,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:07 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1381,10 +1381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1476ea53-d97e-43e7-9cdc-0b882a450d56 + - 221f0a45-1286-47c3-b7cb-c4ebad42bdea status: 200 OK code: 200 - duration: 477.767452ms + duration: 83.5836ms - id: 28 request: proto: HTTP/1.1 @@ -1402,8 +1402,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305/rules method: PUT response: proto: HTTP/2.0 @@ -1422,9 +1422,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1432,10 +1432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32fdd993-1658-4fbd-be2a-2d7553d410fd + - 2925c324-1d8d-4b32-8d6c-4ba59594d52d status: 200 OK code: 200 - duration: 164.950687ms + duration: 139.801572ms - id: 29 request: proto: HTTP/1.1 @@ -1451,8 +1451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: DELETE response: proto: HTTP/2.0 @@ -1469,9 +1469,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,10 +1479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bb4c718-651b-4c3d-882a-e5ada7158a22 + - ccf6a015-7213-45a5-9ef2-d9ee0c511e11 status: 204 No Content code: 204 - duration: 223.829322ms + duration: 138.463654ms - id: 30 request: proto: HTTP/1.1 @@ -1498,8 +1498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c2738b35-fb47-411f-a41d-cc177312be82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8b2602d3-5bc2-492e-b1d9-cd37cb5c6305 method: GET response: proto: HTTP/2.0 @@ -1509,7 +1509,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"c2738b35-fb47-411f-a41d-cc177312be82","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8b2602d3-5bc2-492e-b1d9-cd37cb5c6305","type":"not_found"}' headers: Content-Length: - "151" @@ -1518,9 +1518,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:09 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1528,7 +1528,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b8144a-1bf6-4cae-b6a2-3b7fe9ad1eb3 + - 19f74ca5-f7e8-4367-9217-06cfcc8d2676 status: 404 Not Found code: 404 - duration: 69.099964ms + duration: 31.25491ms diff --git a/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml b/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml index 6894eedfd..e0cbca057 100644 --- a/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-basic2.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 198 + content_length: 194 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-frosty-blackwell","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-quirky-wiles","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 584 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.342954+00:00","description":null,"enable_default_security":true,"id":"8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.342954+00:00","name":"tf-sg-frosty-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.289732+00:00","description":null,"enable_default_security":true,"id":"c4f64410-e117-4828-b47c-d209bc49dd60","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.289732+00:00","name":"tf-sg-quirky-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "588" + - "584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77303f56-4113-4c43-bcb4-e2b3a2373a6e + - 4947bff8-9d7c-4184-a541-9e3fac2066e7 status: 201 Created code: 201 - duration: 304.908615ms + duration: 207.923126ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 584 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.342954+00:00","description":null,"enable_default_security":true,"id":"8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.342954+00:00","name":"tf-sg-frosty-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.289732+00:00","description":null,"enable_default_security":true,"id":"c4f64410-e117-4828-b47c-d209bc49dd60","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.289732+00:00","name":"tf-sg-quirky-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "588" + - "584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 613ef81a-7c58-4ca2-b13c-b80b36a8c2b4 + - 81a6fd03-9863-45a2-92c0-7d35a7c2d670 status: 200 OK code: 200 - duration: 505.904255ms + duration: 131.965649ms - id: 2 request: proto: HTTP/1.1 @@ -114,14 +114,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"}]}' + body: '{"rules":[{"id":null,"action":"accept","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"inbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"accept","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":80,"dest_port_to":null,"position":0,"editable":null,"zone":"fr-par-1"},{"id":null,"action":"drop","protocol":"TCP","direction":"outbound","ip_range":"0.0.0.0/0","dest_port_from":443,"dest_port_to":null,"position":0,"editable":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) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60/rules method: PUT response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"56cc96b0-0f6d-438f-b85a-a6bb262e588a","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"aac5b243-1701-47e8-a1c3-4341368a29d5","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"806bb8c6-9598-4c8c-9a40-ece0ae0cb452","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"9a8a49c2-67b6-4fcf-a039-e3782b5d4fda","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46c9e536-7b96-4966-802d-9fc4e932a96d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"bf67790a-df50-46d9-b7c0-a6c8ad0a9aec","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"4e4201e1-eb16-4eff-8336-3ddd240532a7","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3a5b4178-f180-459d-853a-96d70f1f398d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05175b4f-272c-4096-8901-32b3177e587c + - 484c4343-0e39-4aac-862d-b5e3a5872805 status: 200 OK code: 200 - duration: 392.688653ms + duration: 254.496188ms - id: 3 request: proto: HTTP/1.1 @@ -169,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,7 +180,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"56cc96b0-0f6d-438f-b85a-a6bb262e588a","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"aac5b243-1701-47e8-a1c3-4341368a29d5","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"806bb8c6-9598-4c8c-9a40-ece0ae0cb452","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"9a8a49c2-67b6-4fcf-a039-e3782b5d4fda","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46c9e536-7b96-4966-802d-9fc4e932a96d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"bf67790a-df50-46d9-b7c0-a6c8ad0a9aec","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"4e4201e1-eb16-4eff-8336-3ddd240532a7","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3a5b4178-f180-459d-853a-96d70f1f398d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03c3d324-b3bb-4a19-90d9-1c8a6eb46a56 + - 5b4e5657-8456-48e9-90e8-3f043d54994a status: 200 OK code: 200 - duration: 124.605924ms + duration: 251.548214ms - id: 4 request: proto: HTTP/1.1 @@ -218,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 method: GET response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 588 + content_length: 584 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.342954+00:00","description":null,"enable_default_security":true,"id":"8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:51.293578+00:00","name":"tf-sg-frosty-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.289732+00:00","description":null,"enable_default_security":true,"id":"c4f64410-e117-4828-b47c-d209bc49dd60","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.726332+00:00","name":"tf-sg-quirky-wiles","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "588" + - "584" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e97b5144-ebfa-4388-899f-679ee9fca189 + - 1cd60519-9bcf-4d2b-a8c5-fee24968d7aa status: 200 OK code: 200 - duration: 104.039432ms + duration: 190.687279ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -278,7 +278,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"56cc96b0-0f6d-438f-b85a-a6bb262e588a","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"aac5b243-1701-47e8-a1c3-4341368a29d5","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"806bb8c6-9598-4c8c-9a40-ece0ae0cb452","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"9a8a49c2-67b6-4fcf-a039-e3782b5d4fda","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46c9e536-7b96-4966-802d-9fc4e932a96d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"bf67790a-df50-46d9-b7c0-a6c8ad0a9aec","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"4e4201e1-eb16-4eff-8336-3ddd240532a7","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3a5b4178-f180-459d-853a-96d70f1f398d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -287,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76779bd1-5db4-454f-83ee-06506f8a72dc + - 929a23b8-3fb4-4d16-821f-fbc6bf2f44cc status: 200 OK code: 200 - duration: 104.167983ms + duration: 113.676669ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 2560 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"56cc96b0-0f6d-438f-b85a-a6bb262e588a","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"aac5b243-1701-47e8-a1c3-4341368a29d5","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"806bb8c6-9598-4c8c-9a40-ece0ae0cb452","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"9a8a49c2-67b6-4fcf-a039-e3782b5d4fda","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46c9e536-7b96-4966-802d-9fc4e932a96d","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"bf67790a-df50-46d9-b7c0-a6c8ad0a9aec","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"4e4201e1-eb16-4eff-8336-3ddd240532a7","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3a5b4178-f180-459d-853a-96d70f1f398d","ip_range":"0.0.0.0/0","position":4,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "2560" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00f8e756-7697-4c06-9068-a83d9d2d0cd7 + - bab557be-7dd8-413c-be06-c752e1771915 status: 200 OK code: 200 - duration: 108.146274ms + duration: 103.032002ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60/rules method: PUT response: proto: HTTP/2.0 @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f65e330a-2efb-4bdf-bfa5-01668f237ca3 + - dd9ee7d1-3e42-4bcc-a04b-5618ff8d4b74 status: 200 OK code: 200 - duration: 319.38843ms + duration: 256.149933ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 method: DELETE response: proto: HTTP/2.0 @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38989016-0a36-418c-8f3f-619790dcbfe5 + - 04c1f58e-3842-4d71-89a5-a4585f51ce51 status: 204 No Content code: 204 - duration: 171.868562ms + duration: 138.596348ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/c4f64410-e117-4828-b47c-d209bc49dd60 method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8ee1f6a8-2aa5-4e52-89f7-f415fe6a76cd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"c4f64410-e117-4828-b47c-d209bc49dd60","type":"not_found"}' headers: Content-Length: - "151" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,7 +493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686be77b-bc76-41f7-97c7-40c9746aa0d2 + - 9c1e4d99-6033-4c72-8ecf-76002bb23dc5 status: 404 Not Found code: 404 - duration: 32.922696ms + duration: 38.764301ms diff --git a/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml b/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml index 54a149eab..780a64308 100644 --- a/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 197 + content_length: 203 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-cocky-northcutt","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-priceless-stonebraker","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 593 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.356972+00:00","description":null,"enable_default_security":true,"id":"5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.356972+00:00","name":"tf-sg-cocky-northcutt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.299087+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "587" + - "593" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1eb7edf8-babc-4a68-ba66-835ac0532976 + - 6986a9e2-b0b3-4e8f-a57f-334b64b81c3d status: 201 Created code: 201 - duration: 258.073116ms + duration: 213.452306ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 593 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.356972+00:00","description":null,"enable_default_security":true,"id":"5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:50.356972+00:00","name":"tf-sg-cocky-northcutt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.299087+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "587" + - "593" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a3fecfd-a99a-4ce1-a718-6a4d0e2e8303 + - 4522e0b1-345b-47ec-add8-28133b0a2bfb status: 200 OK code: 200 - duration: 596.449649ms + duration: 92.388837ms - id: 2 request: proto: HTTP/1.1 @@ -120,8 +120,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules method: PUT response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"0e773121-82fd-4804-8c12-cf1c15ff2c84","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a5f108d2-d457-4f4a-97ad-01ea897e9f91","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"e285f97d-f9bd-401e-8185-a8ef3b201a72","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"7f3c0bc3-3e75-4878-b15a-3d7742893a74","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"1395cb92-ab9f-4595-9aa0-679d97bb0a4a","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"be06d4ef-ebeb-4503-9df1-2c5b6432c602","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -140,9 +140,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88811b7a-36d1-46b5-8a23-93158681b5dd + - a7fee9ba-0d1c-4371-b039-6214bb689634 status: 200 OK code: 200 - duration: 378.476218ms + duration: 320.859637ms - id: 3 request: proto: HTTP/1.1 @@ -169,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,7 +180,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"0e773121-82fd-4804-8c12-cf1c15ff2c84","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a5f108d2-d457-4f4a-97ad-01ea897e9f91","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"e285f97d-f9bd-401e-8185-a8ef3b201a72","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"7f3c0bc3-3e75-4878-b15a-3d7742893a74","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"1395cb92-ab9f-4595-9aa0-679d97bb0a4a","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"be06d4ef-ebeb-4503-9df1-2c5b6432c602","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -189,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b562505-bc42-4cf9-8ef9-b27cc359f17b + - efa4abc4-d8d0-4676-b404-cc8585bc7b84 status: 200 OK code: 200 - duration: 104.160189ms + duration: 253.825021ms - id: 4 request: proto: HTTP/1.1 @@ -218,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 method: GET response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 587 + content_length: 593 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:28:50.356972+00:00","description":null,"enable_default_security":true,"id":"5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4","inbound_default_policy":"accept","modification_date":"2025-06-10T15:28:51.398800+00:00","name":"tf-sg-cocky-northcutt","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.755392+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "587" + - "593" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52e48f5e-0634-4ccf-9ac6-4f6c7b47e576 + - cd8691d3-0547-42ef-80b2-631a27149102 status: 200 OK code: 200 - duration: 143.851428ms + duration: 112.472172ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -278,7 +278,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"0e773121-82fd-4804-8c12-cf1c15ff2c84","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a5f108d2-d457-4f4a-97ad-01ea897e9f91","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"e285f97d-f9bd-401e-8185-a8ef3b201a72","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"7f3c0bc3-3e75-4878-b15a-3d7742893a74","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"1395cb92-ab9f-4595-9aa0-679d97bb0a4a","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"be06d4ef-ebeb-4503-9df1-2c5b6432c602","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -287,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7c9d23d-c063-47c9-a315-3de6fe087ffe + - a76abbd3-4878-40b3-9c7e-6cb6c2e93324 status: 200 OK code: 200 - duration: 117.516849ms + duration: 115.350616ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"0e773121-82fd-4804-8c12-cf1c15ff2c84","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"a5f108d2-d457-4f4a-97ad-01ea897e9f91","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"e285f97d-f9bd-401e-8185-a8ef3b201a72","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"7f3c0bc3-3e75-4878-b15a-3d7742893a74","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"1395cb92-ab9f-4595-9aa0-679d97bb0a4a","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"be06d4ef-ebeb-4503-9df1-2c5b6432c602","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:54 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a26123ba-4fc8-4e65-a740-e9e13a758e77 + - eb6281e8-3b2a-4dc2-8828-ef1102c831b6 status: 200 OK code: 200 - duration: 86.397265ms + duration: 109.026685ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules method: PUT response: proto: HTTP/2.0 @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 232d7e68-3a20-49e1-8652-46638d9091d7 + - 93f23df6-5c4c-41e5-b369-0be2657e2a40 status: 200 OK code: 200 - duration: 343.634463ms + duration: 250.37489ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 62 + uncompressed: false + body: '{"message":"Internal error","type":"internal_server_error"}' + headers: + Content-Length: + - "62" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2bc2fa3b-807b-46bd-879c-c113ac2281ab + status: 500 Internal Server Error + code: 500 + duration: 318.587625ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 method: DELETE response: proto: HTTP/2.0 @@ -434,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 055dba79-f408-44b7-9da9-13e56959f6ab + - 5c826bcc-585a-4ea9-8db8-29e91b8be9ae status: 204 No Content code: 204 - duration: 218.360376ms - - id: 9 + duration: 156.795925ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -463,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 method: GET response: proto: HTTP/2.0 @@ -474,7 +523,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"5bc7b206-29ee-4fb9-a9e0-6df3e2267bc4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d2253146-2aab-4973-a86f-0f1786c94673","type":"not_found"}' headers: Content-Length: - "151" @@ -483,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:55 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,7 +542,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45e52eba-5ae4-4dd4-a434-6f33a0e15908 + - c06bad7b-7ef0-452d-9ac0-cda6a9245d5c status: 404 Not Found code: 404 - duration: 54.14132ms + duration: 27.68007ms diff --git a/internal/services/instance/testdata/security-group-tags.cassette.yaml b/internal/services/instance/testdata/security-group-tags.cassette.yaml index 0e9a40e89..844a2f400 100644 --- a/internal/services/instance/testdata/security-group-tags.cassette.yaml +++ b/internal/services/instance/testdata/security-group-tags.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 214 + content_length: 220 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-crazy-cohen","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-flamboyant-agnesi","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["foo","bar"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 595 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:05.347754+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:23.832356+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - - "595" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 229613c2-7965-42c6-976c-edc040885a5c + - 305ed0ac-8a21-420d-b867-3cfe19df135d status: 201 Created code: 201 - duration: 270.062843ms + duration: 183.682529ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 595 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:05.347754+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:23.832356+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - - "595" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c384fcd4-6e7a-4f4d-80ab-8c2a95a0dfc0 + - b7f5d5be-1731-41e6-ab61-8cbed4e2a248 status: 200 OK code: 200 - duration: 222.838207ms + duration: 141.456962ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules method: PUT response: proto: HTTP/2.0 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:05 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e68c387-8103-4495-898a-c6020a6af3ec + - 65900ccb-7767-42e2-9264-fb49fecb3b86 status: 200 OK code: 200 - duration: 310.452882ms + duration: 194.650462ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 595 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:05.347754+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:23.832356+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - - "595" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 343710df-3896-4ec9-bcb0-3b6fd271ac58 + - 3f88d4d8-bf1e-48d6-9c4f-cc95a8b1c31d status: 200 OK code: 200 - duration: 146.341663ms + duration: 110.378511ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00eb7636-928f-41e8-acf2-d572f23730c6 + - dab19b66-85b8-4e24-8661-0db25e528efb status: 200 OK code: 200 - duration: 154.884034ms + duration: 91.991963ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -278,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 595 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:05.347754+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:23.832356+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - - "595" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5abc7370-d60d-4759-a12d-5c51518e4037 + - 602a3919-626d-4d27-94b4-b4aeec312dae status: 200 OK code: 200 - duration: 164.568536ms + duration: 111.294169ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52f45554-5630-45a3-a48e-596544934cac + - b109d6be-d13f-445b-b965-b0710be9c282 status: 200 OK code: 200 - duration: 239.995244ms + duration: 92.701603ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 595 + content_length: 601 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:05.347754+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:23.832356+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","bar"],"zone":"fr-par-1"}}' headers: Content-Length: - - "595" + - "601" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7f9117-d435-4e22-9d7f-e9ba6dc1eef9 + - 904389cb-642a-472e-92c5-2f2344caf336 status: 200 OK code: 200 - duration: 131.551195ms + duration: 107.394899ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,29 +446,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - addec81a-f2cf-42c9-95a9-4c7c415ca2b1 + - 3c51638d-1bcc-45c3-9b2a-e4b733cba8b1 status: 200 OK code: 200 - duration: 94.993403ms + duration: 102.309375ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 135 + content_length: 141 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-crazy-cohen","inbound_default_policy":"accept","tags":["foo","buzz"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-flamboyant-agnesi","inbound_default_policy":"accept","tags":["foo","buzz"],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: PATCH response: proto: HTTP/2.0 @@ -476,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 594 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:09.389522+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:25.432912+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' headers: Content-Length: - - "594" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aee64d12-81de-424a-91c2-94e53177c390 + - b429bdc8-8438-463a-984d-a06eac3dbc64 status: 200 OK code: 200 - duration: 291.284583ms + duration: 266.775624ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules method: PUT response: proto: HTTP/2.0 @@ -538,9 +538,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -548,10 +548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75c4e4c9-5ae9-4972-afb4-ae368dc50670 + - bad7c69c-8463-4ff1-b344-b1106705e8de status: 200 OK code: 200 - duration: 175.461556ms + duration: 163.37335ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -576,20 +576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 596 + content_length: 602 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:09.681736+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:25.671919+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' headers: Content-Length: - - "596" + - "602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91f5bc79-998f-48a1-99c5-a07366785321 + - 020400ad-dc52-40d0-9929-ef06c682f64a status: 200 OK code: 200 - duration: 111.578848ms + duration: 95.51106ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:10 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c90d90c-e5df-4a54-a879-ddb5a585deb8 + - 0ce5be43-a77e-43b9-b26f-b286bb146a19 status: 200 OK code: 200 - duration: 172.916121ms + duration: 128.30528ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -674,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 596 + content_length: 602 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:09.681736+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:25.671919+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' headers: Content-Length: - - "596" + - "602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c890e0c-2c76-433b-b047-1b519fb41730 + - 7b377018-25ff-463d-962e-98eaf9650e51 status: 200 OK code: 200 - duration: 125.895047ms + duration: 102.598769ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -734,9 +734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f895e593-fba7-4413-9c9f-06f67156996b + - f3715e63-5338-4b75-9645-e809377a7916 status: 200 OK code: 200 - duration: 134.199661ms + duration: 91.32273ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -772,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 596 + content_length: 602 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:09.681736+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:25.671919+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["foo","buzz"],"zone":"fr-par-1"}}' headers: Content-Length: - - "596" + - "602" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b82a07e-9266-4570-9bec-7b90148cb4e0 + - 6c125f1e-f36e-4057-acc2-4d0554a6eed5 status: 200 OK code: 200 - duration: 117.48804ms + duration: 98.268611ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,29 +842,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2076405f-0e9d-4127-864e-482265c5ee13 + - c089f1b7-c85e-4353-81bf-1568ff10a6e0 status: 200 OK code: 200 - duration: 95.153122ms + duration: 110.374926ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 123 + content_length: 129 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-crazy-cohen","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-flamboyant-agnesi","inbound_default_policy":"accept","tags":[],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: PATCH response: proto: HTTP/2.0 @@ -872,20 +872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 581 + content_length: 587 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:13.423708+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:26.977318+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "581" + - "587" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,10 +893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb5f83c2-553c-43de-a974-9e0ba3d7a97b + - 9fd9efcc-bae9-4228-afc0-161235510d72 status: 200 OK code: 200 - duration: 477.930853ms + duration: 230.935369ms - id: 18 request: proto: HTTP/1.1 @@ -914,8 +914,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules method: PUT response: proto: HTTP/2.0 @@ -934,9 +934,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -944,10 +944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e80691ee-2c42-4e33-9e71-fa60a894b5f8 + - 2fe1b15f-61a5-479e-9c96-dbdc76051743 status: 200 OK code: 200 - duration: 236.496842ms + duration: 172.665753ms - id: 19 request: proto: HTTP/1.1 @@ -963,8 +963,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -972,20 +972,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 583 + content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:13.884189+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.184602+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "583" + - "589" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,10 +993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f14f1a99-a29d-4806-9fe7-7e8685cb23d6 + - aa614917-69c3-48b4-9c9d-ba399e840608 status: 200 OK code: 200 - duration: 163.79198ms + duration: 105.748133ms - id: 20 request: proto: HTTP/1.1 @@ -1012,8 +1012,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1032,9 +1032,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1042,10 +1042,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12deab41-f8c4-43e0-abb8-b57044870803 + - 8cf69371-8cdf-4071-9ed1-82ecf6a918b9 status: 200 OK code: 200 - duration: 150.869104ms + duration: 83.175588ms - id: 21 request: proto: HTTP/1.1 @@ -1061,8 +1061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -1070,20 +1070,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 583 + content_length: 589 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:05.347754+00:00","description":null,"enable_default_security":true,"id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:13.884189+00:00","name":"tf-sg-crazy-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:23.832356+00:00","description":null,"enable_default_security":true,"id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:27.184602+00:00","name":"tf-sg-flamboyant-agnesi","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "583" + - "589" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1091,10 +1091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c358ba58-1507-4dcc-802b-e846d4d9cf60 + - 605120a5-985f-4301-af92-da25719ff21c status: 200 OK code: 200 - duration: 118.427832ms + duration: 95.652428ms - id: 22 request: proto: HTTP/1.1 @@ -1110,8 +1110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1130,9 +1130,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1140,10 +1140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4f72c5a-4b6f-467a-ae7e-ee10738c0c77 + - b3bed651-db84-4413-b199-631e8b99daac status: 200 OK code: 200 - duration: 123.239787ms + duration: 91.161819ms - id: 23 request: proto: HTTP/1.1 @@ -1159,8 +1159,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: DELETE response: proto: HTTP/2.0 @@ -1177,9 +1177,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1187,10 +1187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec0679b-2d5e-4e7e-9a90-3a7e3c136cf7 + - ab720539-477d-4937-8dc6-345247f0b43b status: 204 No Content code: 204 - duration: 189.245255ms + duration: 135.228621ms - id: 24 request: proto: HTTP/1.1 @@ -1206,8 +1206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/aa8f7dab-cc2d-4570-8a00-b79fb293813e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/41577ea7-b7f8-4aac-8ac6-3808ab88beb9 method: GET response: proto: HTTP/2.0 @@ -1217,7 +1217,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"aa8f7dab-cc2d-4570-8a00-b79fb293813e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"41577ea7-b7f8-4aac-8ac6-3808ab88beb9","type":"not_found"}' headers: Content-Length: - "151" @@ -1226,9 +1226,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1236,7 +1236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae224c3-ef9f-48f6-b0a0-5c6dad744540 + - 420856fc-c4b5-4ddf-9d81-33b503b3bd18 status: 404 Not Found code: 404 - duration: 91.111052ms + duration: 25.792112ms diff --git a/internal/services/instance/testdata/security-group-with-no-port.cassette.yaml b/internal/services/instance/testdata/security-group-with-no-port.cassette.yaml index ec07e416d..e220c1115 100644 --- a/internal/services/instance/testdata/security-group-with-no-port.cassette.yaml +++ b/internal/services/instance/testdata/security-group-with-no-port.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 220 + content_length: 218 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-hungry-lewin","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-zen-austin","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:56.873269+00:00","description":null,"enable_default_security":true,"id":"8c1a4059-1b0f-47b5-8c16-cd144c55a2f1","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:56.873269+00:00","name":"tf-sg-hungry-lewin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.344577+00:00","description":null,"enable_default_security":true,"id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.344577+00:00","name":"tf-sg-zen-austin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:56 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c8a9489-1cbd-4f4c-bbdb-4b95de00c18b + - 7720cd64-afeb-4506-9aa5-d03743629a76 status: 201 Created code: 201 - duration: 190.23829ms + duration: 248.659221ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:56.873269+00:00","description":null,"enable_default_security":true,"id":"8c1a4059-1b0f-47b5-8c16-cd144c55a2f1","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:56.873269+00:00","name":"tf-sg-hungry-lewin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.344577+00:00","description":null,"enable_default_security":true,"id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.344577+00:00","name":"tf-sg-zen-austin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c01e11c-2da2-4b6d-9abb-713107956041 + - 695c10e2-e57b-4a6a-9caa-4c8587ebff2b status: 200 OK code: 200 - duration: 223.726594ms + duration: 172.227827ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cff37510-9df2-4caa-88fd-25c38ce99193","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90533d2e-fe7c-4556-8c26-c645225f0e2e + - 89c9adbb-e0ed-4dc1-89fc-ecd3173d06ae status: 200 OK code: 200 - duration: 292.003162ms + duration: 489.653359ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:56.873269+00:00","description":null,"enable_default_security":true,"id":"8c1a4059-1b0f-47b5-8c16-cd144c55a2f1","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.431559+00:00","name":"tf-sg-hungry-lewin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.344577+00:00","description":null,"enable_default_security":true,"id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:00.046793+00:00","name":"tf-sg-zen-austin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5bf77d5-dcfb-434e-80f2-a761db6dd647 + - 89e831e0-c2f9-41f1-bf54-a7a2e173e3ca status: 200 OK code: 200 - duration: 105.255149ms + duration: 229.201362ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cff37510-9df2-4caa-88fd-25c38ce99193","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb3908b4-f154-4b10-bc3f-018f4fc3ae29 + - bb962754-7abd-473f-b460-8a3c7c34afa5 status: 200 OK code: 200 - duration: 106.602285ms + duration: 164.740167ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -280,7 +280,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cff37510-9df2-4caa-88fd-25c38ce99193","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -289,9 +289,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3b4c914-7f2e-428d-b5aa-377b2a51e684 + - 46fc8d5d-03af-472c-9a0c-bea008e17f66 status: 200 OK code: 200 - duration: 87.594407ms + duration: 98.969619ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb method: GET response: proto: HTTP/2.0 @@ -327,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 600 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:29:56.873269+00:00","description":null,"enable_default_security":true,"id":"8c1a4059-1b0f-47b5-8c16-cd144c55a2f1","inbound_default_policy":"accept","modification_date":"2025-06-10T15:29:57.431559+00:00","name":"tf-sg-hungry-lewin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.344577+00:00","description":null,"enable_default_security":true,"id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","inbound_default_policy":"accept","modification_date":"2025-10-15T15:03:00.046793+00:00","name":"tf-sg-zen-austin","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "600" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:58 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f7e6459-d125-4d24-8993-74d1c7b0351c + - 87d3f5f9-6725-44ac-920d-2a6b8d234dd8 status: 200 OK code: 200 - duration: 129.695014ms + duration: 88.689105ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -378,7 +378,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"cff37510-9df2-4caa-88fd-25c38ce99193","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":null,"dest_port_to":null,"direction":"inbound","editable":true,"id":"8ff010e3-1426-4fd2-a875-ec173caf5038","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1794" @@ -387,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:58 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5532a66-d6c1-4297-970a-1dc076bf45ad + - 9246a957-20f4-45bb-93e0-b58c19be2760 status: 200 OK code: 200 - duration: 95.587528ms + duration: 117.691603ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb method: DELETE response: proto: HTTP/2.0 @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:59 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d3aead7-9532-43fb-9456-539e7b7e505d + - c55b1f66-9fd5-495d-983e-0b60f82c7d37 status: 204 No Content code: 204 - duration: 175.713869ms + duration: 155.620809ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8c1a4059-1b0f-47b5-8c16-cd144c55a2f1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/21ed41b8-84b6-42ef-a252-d3e17865d8cb method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8c1a4059-1b0f-47b5-8c16-cd144c55a2f1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"21ed41b8-84b6-42ef-a252-d3e17865d8cb","type":"not_found"}' headers: Content-Length: - "151" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:59 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,7 +493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a0787a2-d616-40d7-95ae-6871b125fd20 + - c4d25964-fdbb-43df-9f03-4c6fbf6d81fd status: 404 Not Found code: 404 - duration: 79.573615ms + duration: 26.954571ms diff --git a/internal/services/instance/testdata/security-group-with-port-range.cassette.yaml b/internal/services/instance/testdata/security-group-with-port-range.cassette.yaml index 9573040c2..1f85149b1 100644 --- a/internal/services/instance/testdata/security-group-with-port-range.cassette.yaml +++ b/internal/services/instance/testdata/security-group-with-port-range.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 223 + content_length: 220 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-quizzical-cohen","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-thirsty-wing","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:06.476686+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.495948+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a3a83a4-ff63-47f7-bccb-1126419b5cfd + - dadbba0d-f076-4ee1-ad53-c63fbfbf9709 status: 201 Created code: 201 - duration: 316.762516ms + duration: 182.847008ms - id: 1 request: proto: HTTP/1.1 @@ -71,8 +71,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: PATCH response: proto: HTTP/2.0 @@ -80,20 +80,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:06.476686+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.495948+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,10 +101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b217a30-80b2-49a5-95a9-bee2b2ef41ab + - 573de4a0-6e72-45d3-a8ae-b67b24f7db95 status: 200 OK code: 200 - duration: 171.629609ms + duration: 157.447263ms - id: 2 request: proto: HTTP/1.1 @@ -122,8 +122,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules method: PUT response: proto: HTTP/2.0 @@ -133,7 +133,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"c6fbe6fb-e3d5-487d-a3ee-16a86d3a4b7e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2de72d44-e0fa-4af5-b140-f90a4d4d0c08 + - 91b7badf-4d13-4850-a75c-6bc6ca693e0f status: 200 OK code: 200 - duration: 361.8854ms + duration: 279.260946ms - id: 3 request: proto: HTTP/1.1 @@ -171,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -180,20 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:06.759953+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.967739+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,10 +201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4151093e-f1e1-472c-8de1-e00c94ecb04f + - c5b72139-014f-413f-b7d0-c35c27f52007 status: 200 OK code: 200 - duration: 144.895451ms + duration: 100.354867ms - id: 4 request: proto: HTTP/1.1 @@ -220,8 +220,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -231,7 +231,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"c6fbe6fb-e3d5-487d-a3ee-16a86d3a4b7e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -240,9 +240,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab6a10f-c108-427f-bf8a-66b65a3d034b + - f4955f0f-3b1e-46a9-930f-d28d260b3b6b status: 200 OK code: 200 - duration: 368.00624ms + duration: 89.146546ms - id: 5 request: proto: HTTP/1.1 @@ -269,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -278,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:07.105092+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.967739+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40c2e2af-2111-4769-ab58-7d9636a0801c + - dd107188-399b-4fd5-8651-d45a3ba1f342 status: 200 OK code: 200 - duration: 129.284624ms + duration: 106.059541ms - id: 6 request: proto: HTTP/1.1 @@ -318,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -329,7 +329,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"c6fbe6fb-e3d5-487d-a3ee-16a86d3a4b7e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -338,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8dd2157-8d03-411f-a522-485857591fc3 + - 8acbaa2a-3bc1-4984-8405-0fa6c6c2a09b status: 200 OK code: 200 - duration: 119.849469ms + duration: 81.178569ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:07.105092+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.967739+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc25794b-89e0-4b45-ab31-fa7f6ac09481 + - 44e2f53a-3d7b-46dc-b42a-79087eb00f69 status: 200 OK code: 200 - duration: 130.164194ms + duration: 99.260185ms - id: 8 request: proto: HTTP/1.1 @@ -416,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -427,7 +427,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"c6fbe6fb-e3d5-487d-a3ee-16a86d3a4b7e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"f31834e8-7455-481d-8ffc-66a07de4318f","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -436,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,29 +446,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8593243-c0ca-46ad-b29d-77f7ea7cd7b4 + - e20b4b6d-91a3-45eb-9ed6-0510c677cedc status: 200 OK code: 200 - duration: 126.731506ms + duration: 112.000438ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 143 + content_length: 140 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-quizzical-cohen","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-thirsty-wing","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: PATCH response: proto: HTTP/2.0 @@ -476,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:07.105092+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:19.967739+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92d13140-f923-4408-a668-f953af1d9372 + - 93e68b2d-beee-4e16-a542-f54af0d1d47a status: 200 OK code: 200 - duration: 250.928558ms + duration: 146.436884ms - id: 10 request: proto: HTTP/1.1 @@ -518,8 +518,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules method: PUT response: proto: HTTP/2.0 @@ -529,7 +529,7 @@ interactions: trailer: {} content_length: 1790 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46a2a64c-cca7-4358-bc45-d2de5303111e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1790" @@ -538,9 +538,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -548,10 +548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aac52498-4128-48f8-af81-b83cb0cfe247 + - 97329393-6218-45bf-bd15-4151a4f02404 status: 200 OK code: 200 - duration: 373.777231ms + duration: 275.328859ms - id: 11 request: proto: HTTP/1.1 @@ -567,8 +567,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -576,20 +576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:11.197160+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:21.189375+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -597,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4920791c-020f-4cd0-8490-9d35e9909787 + - 06e6b136-319a-4469-b24f-6bec0eafe90b status: 200 OK code: 200 - duration: 129.795923ms + duration: 106.643658ms - id: 12 request: proto: HTTP/1.1 @@ -616,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -627,7 +627,7 @@ interactions: trailer: {} content_length: 1790 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46a2a64c-cca7-4358-bc45-d2de5303111e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1790" @@ -636,9 +636,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -646,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ce957a-f40f-4ade-bef6-22a94f28234f + - 933984c2-83f7-4e79-84e5-b84a1c973b74 status: 200 OK code: 200 - duration: 152.126351ms + duration: 98.152419ms - id: 13 request: proto: HTTP/1.1 @@ -665,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -674,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:11.517019+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:21.453397+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -695,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dde4d03c-3116-4f5a-9725-30467bb37bae + - 0cef778e-1d45-45e7-99d3-b2e74db8ad67 status: 200 OK code: 200 - duration: 124.933073ms + duration: 106.392346ms - id: 14 request: proto: HTTP/1.1 @@ -714,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -725,7 +725,7 @@ interactions: trailer: {} content_length: 1790 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46a2a64c-cca7-4358-bc45-d2de5303111e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1790" @@ -734,9 +734,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76bd213a-67ef-4330-9330-65264d402c4e + - 40179c7f-d519-4159-b708-92e80aac45b5 status: 200 OK code: 200 - duration: 128.521522ms + duration: 108.425569ms - id: 15 request: proto: HTTP/1.1 @@ -763,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -772,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:11.517019+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:21.453397+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45a19269-88d2-4613-a4a6-a9049dc5cc39 + - d1013899-1d4f-42c2-9d25-14aeebca4137 status: 200 OK code: 200 - duration: 148.080113ms + duration: 106.338325ms - id: 16 request: proto: HTTP/1.1 @@ -812,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -823,7 +823,7 @@ interactions: trailer: {} content_length: 1790 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"46a2a64c-cca7-4358-bc45-d2de5303111e","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":22,"dest_port_to":null,"direction":"inbound","editable":true,"id":"6141d511-e481-4c04-85e5-84f6e7f3abc6","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1790" @@ -832,9 +832,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,29 +842,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2da1c925-cd61-4208-8dd4-58b5cc512be9 + - 77d688f6-8eeb-49f1-af09-2d14544cb21f status: 200 OK code: 200 - duration: 169.48179ms + duration: 99.206897ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 143 + content_length: 140 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-quizzical-cohen","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' + body: '{"name":"tf-sg-thirsty-wing","inbound_default_policy":"accept","tags":["test-terraform"],"outbound_default_policy":"accept","stateful":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: PATCH response: proto: HTTP/2.0 @@ -872,20 +872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:11.517019+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:21.453397+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,10 +893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e516e281-c366-44aa-a04b-67e2ec33a916 + - ed80403f-9b0c-4ae0-af60-da4e5f100ad2 status: 200 OK code: 200 - duration: 235.963552ms + duration: 151.093746ms - id: 18 request: proto: HTTP/1.1 @@ -914,8 +914,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules method: PUT response: proto: HTTP/2.0 @@ -925,7 +925,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"a87d8eae-a511-40e6-b307-22a6cbe4f97c","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -934,9 +934,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -944,10 +944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0512d1b-5d5b-438b-8cbe-71755f7bfaf3 + - 1a823f63-03c5-42e5-a996-97b522ebc01a status: 200 OK code: 200 - duration: 448.918824ms + duration: 271.342329ms - id: 19 request: proto: HTTP/1.1 @@ -963,8 +963,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -972,20 +972,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 601 + content_length: 598 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:15.322440+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:22.720796+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"syncing","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "601" + - "598" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -993,10 +993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ad1325-555a-4bb7-8bcc-f4f09bff0e13 + - 729903e0-0b41-4e91-9ed3-613af5d04f17 status: 200 OK code: 200 - duration: 118.69351ms + duration: 86.51276ms - id: 20 request: proto: HTTP/1.1 @@ -1012,8 +1012,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1023,7 +1023,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"a87d8eae-a511-40e6-b307-22a6cbe4f97c","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -1032,9 +1032,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1042,10 +1042,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a91b118-82e0-40c5-8ede-41832fbf2071 + - e93ffcb7-58a7-4098-a299-a313847b2af8 status: 200 OK code: 200 - duration: 266.069103ms + duration: 121.309302ms - id: 21 request: proto: HTTP/1.1 @@ -1061,8 +1061,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -1070,20 +1070,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 603 + content_length: 600 uncompressed: false - body: '{"security_group":{"creation_date":"2025-06-10T15:30:06.476686+00:00","description":null,"enable_default_security":true,"id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","inbound_default_policy":"accept","modification_date":"2025-06-10T15:30:15.739478+00:00","name":"tf-sg-quizzical-cohen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:04:19.495948+00:00","description":null,"enable_default_security":true,"id":"36e0381b-160b-468f-9217-8fb9d5519ba8","inbound_default_policy":"accept","modification_date":"2025-10-15T15:04:22.973059+00:00","name":"tf-sg-thirsty-wing","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":["test-terraform"],"zone":"fr-par-1"}}' headers: Content-Length: - - "603" + - "600" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1091,10 +1091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49204dd7-ad50-4dbf-a67f-6b00cfbc397d + - dfb32ce3-6ab2-4cb6-94ba-b03246da1e9a status: 200 OK code: 200 - duration: 144.249659ms + duration: 93.542439ms - id: 22 request: proto: HTTP/1.1 @@ -1110,8 +1110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247/rules?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -1121,7 +1121,7 @@ interactions: trailer: {} content_length: 1789 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"a87d8eae-a511-40e6-b307-22a6cbe4f97c","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":1,"dest_port_to":1024,"direction":"inbound","editable":true,"id":"b948fe5a-7923-45c7-84cd-62e765cd7ba2","ip_range":"8.8.8.8","position":1,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "1789" @@ -1130,9 +1130,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:17 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1140,10 +1140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6848848-a1d4-4614-940d-37a8945bfb28 + - 355b21ea-cbe1-4e0a-98c2-5f0e49d4ddd1 status: 200 OK code: 200 - duration: 144.710614ms + duration: 105.574635ms - id: 23 request: proto: HTTP/1.1 @@ -1159,8 +1159,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: DELETE response: proto: HTTP/2.0 @@ -1177,9 +1177,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1187,10 +1187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e043fef-dc0b-4b91-8f62-2d4285ebba40 + - 23054656-bb19-4be5-a08d-0a42092e0f78 status: 204 No Content code: 204 - duration: 277.123533ms + duration: 152.13532ms - id: 24 request: proto: HTTP/1.1 @@ -1206,8 +1206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/36e0381b-160b-468f-9217-8fb9d5519ba8 method: GET response: proto: HTTP/2.0 @@ -1217,7 +1217,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"8d6f2ce2-a4cd-4c4c-9ef3-24214ad96247","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"36e0381b-160b-468f-9217-8fb9d5519ba8","type":"not_found"}' headers: Content-Length: - "151" @@ -1226,9 +1226,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1236,7 +1236,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e93528-489f-40c1-89b9-7a18ab8ded70 + - 6d7d463e-643d-4aae-87a6-11e7b64ee63d status: 404 Not Found code: 404 - duration: 34.436523ms + duration: 28.007745ms diff --git a/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml b/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml index edab54b7d..84c2bcad3 100644 --- a/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml +++ b/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 212 + content_length: 684 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-acc-admin-pwd-encryption","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX opensource@scaleway.com","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71"}' + body: '{"name":"test-acc-admin-pwd-encryption","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU= opensource@scaleway.com","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/iam/v1alpha1/ssh-keys method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' headers: Content-Length: - - "478" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:14 GMT + - Thu, 09 Oct 2025 16:08:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc72840d-446c-496d-9a59-b4f841dc5a32 + - 6ff28193-a5a1-42f9-ad05-845ee19f6397 status: 200 OK code: 200 - duration: 781.15743ms + duration: 337.529721ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' headers: Content-Length: - - "478" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:14 GMT + - Thu, 09 Oct 2025 16:08:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad36c4fb-450c-49c8-acbc-9aca39f1c5ba + - 844952eb-7ae8-4731-bfd4-f2d5997f860c status: 200 OK code: 200 - duration: 60.864315ms + duration: 89.039028ms - id: 2 request: proto: HTTP/1.1 @@ -116,7 +116,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -136,11 +136,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:14 GMT + - Thu, 09 Oct 2025 16:08:10 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,12 +148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c15c543a-9134-4745-8e7b-747c37306274 + - ab50657f-0af7-4f52-a76e-12b17cf55e01 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 50.967011ms + duration: 66.14163ms - id: 3 request: proto: HTTP/1.1 @@ -169,7 +169,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -189,11 +189,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:14 GMT + - Thu, 09 Oct 2025 16:08:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,12 +201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22d254c0-8857-40b9-b5ae-118f78145ee7 + - 87a73122-9538-4269-a0ba-bef327a17d76 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 92.644386ms + duration: 57.205944ms - id: 4 request: proto: HTTP/1.1 @@ -222,7 +222,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=windows_server_2022&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -231,20 +231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 290 + content_length: 300 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["POP2-2C-8G-WIN","POP2-4C-16G-WIN","POP2-8C-32G-WIN","POP2-16C-64G-WIN","POP2-32C-128G-WIN"],"id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","label":"windows_server_2022","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["POP2-2C-8G-WIN","POP2-4C-16G-WIN","POP2-8C-32G-WIN","POP2-16C-64G-WIN","POP2-32C-128G-WIN"],"id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","label":"windows_server_2022","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "290" + - "300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:14 GMT + - Thu, 09 Oct 2025 16:08:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,28 +252,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac59d055-1dc7-4fcb-a6b3-dbd0399ea91e + - 2ba0a93a-5fee-4e1f-918b-c8c12058d5ce status: 200 OK code: 200 - duration: 101.692698ms + duration: 62.193326ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 239 + content_length: 314 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-funny-chaum","dynamic_ip_required":false,"commercial_type":"POP2-2C-8G-WIN","image":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"19a4819b-24bf-4d44-969f-935ef0061b71"}' + body: '{"name":"tf-srv-sad-ride","dynamic_ip_required":false,"commercial_type":"POP2-2C-8G-WIN","image":"5d355a7d-8abb-4418-9599-e26621bf7ca8","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -282,22 +282,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1713 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:15.126217+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1713" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:15 GMT + - Thu, 09 Oct 2025 16:08:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 622fb10c-00c4-467d-a3ab-eadddc57640e + - 3248cd92-9cd7-4ee3-8e1c-bd9d7e5c3a22 status: 201 Created code: 201 - duration: 838.145349ms + duration: 1.539728046s - id: 6 request: proto: HTTP/1.1 @@ -324,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1713 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:15.126217+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1713" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:15 GMT + - Thu, 09 Oct 2025 16:08:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cfdc322-211b-4061-ab35-9455356c1345 + - 7c616a25-fc7d-43f3-91bb-783bb137bb1e status: 200 OK code: 200 - duration: 131.54417ms + duration: 149.325859ms - id: 7 request: proto: HTTP/1.1 @@ -373,8 +373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1713 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:15.126217+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1713" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:16 GMT + - Thu, 09 Oct 2025 16:08:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fd776f6-493e-4218-bc6d-8913e166e5ed + - 3f7fb04c-4a98-439f-9f6a-550f791e6678 status: 200 OK code: 200 - duration: 130.171555ms + duration: 167.606379ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -431,20 +431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:16 GMT + - Thu, 09 Oct 2025 16:08:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb7a315b-36c5-4878-bc6c-cc9fa0745de1 + - f3e75a0b-7c5b-4cc3-8449-dcb382995702 status: 200 OK code: 200 - duration: 40.838642ms + duration: 90.329979ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +473,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/action","href_result":"/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","id":"37b2c4b1-f4ba-44da-8676-f6c3ecebb407","progress":0,"started_at":"2025-06-18T21:59:16.519694+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action","href_result":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670","id":"17d667c2-7bb9-4099-90ea-dd13c359439f","progress":0,"started_at":"2025-10-09T16:08:13.082993+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:16 GMT + - Thu, 09 Oct 2025 16:08:13 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/37b2c4b1-f4ba-44da-8676-f6c3ecebb407 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/17d667c2-7bb9-4099-90ea-dd13c359439f Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41e00f75-cf44-4d82-b999-e126dbd80eb3 + - 970ef37f-6c54-42fd-bc80-4e3e320310f0 status: 202 Accepted code: 202 - duration: 463.081182ms + duration: 261.098637ms - id: 10 request: proto: HTTP/1.1 @@ -524,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -533,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1735 + content_length: 1831 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:16.114792+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:12.878348+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1735" + - "1831" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:16 GMT + - Thu, 09 Oct 2025 16:08:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffe8b5d7-836a-45f3-bec0-1e4ac8942681 + - 8fe02b3f-6c49-44b6-82d8-b4e77a4442d9 status: 200 OK code: 200 - duration: 135.362086ms + duration: 156.889653ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:21 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e3a453c-7866-4ffb-866c-08481e4b5d07 + - 1833241b-a462-4d94-8e9c-58a3d0f6db11 status: 200 OK code: 200 - duration: 126.946793ms + duration: 146.309334ms - id: 12 request: proto: HTTP/1.1 @@ -622,8 +622,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:21 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e0253bf-5869-4009-9d4e-e313b63abd3d + - d9ecaf3b-fded-497d-a759-551cc3a9a2d3 status: 200 OK code: 200 - duration: 139.357234ms + duration: 140.672855ms - id: 13 request: proto: HTTP/1.1 @@ -671,8 +671,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:21 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c598d435-b99f-4afc-b13a-ecbf4ba12792 + - a5c66af3-28f1-46c9-a1e4-54fb5bc767aa status: 404 Not Found code: 404 - duration: 33.789213ms + duration: 31.266873ms - id: 14 request: proto: HTTP/1.1 @@ -720,8 +720,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -729,20 +729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:22 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb526990-ba94-4b2d-a28f-25a44bae1a25 + - 0b2116fb-4e2a-4525-b57c-4d80ede5d339 status: 200 OK code: 200 - duration: 42.592584ms + duration: 92.428345ms - id: 15 request: proto: HTTP/1.1 @@ -769,8 +769,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:22 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0158582-13c8-4bce-b324-aed369957cb6 + - ee5ee761-f254-4994-848f-6188d903584a status: 200 OK code: 200 - duration: 99.799616ms + duration: 110.992648ms - id: 16 request: proto: HTTP/1.1 @@ -818,8 +818,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:22 GMT + - Thu, 09 Oct 2025 16:08:18 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,12 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f89a99e-1f16-45f6-a27d-4e8ea9fd62f7 + - cee41c98-371b-480b-ac85-9f7e87e8c3bf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 66.851421ms + duration: 107.040296ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +871,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' headers: Content-Length: - - "478" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:22 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48c434ae-50a4-44ec-8182-fe2184aaafd6 + - 6f55c03c-c2bf-4220-bcd3-db79966fa167 status: 200 OK code: 200 - duration: 45.501343ms + duration: 93.966549ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +920,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b method: GET response: proto: HTTP/2.0 @@ -929,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' headers: Content-Length: - - "478" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dad39cc4-0aac-416d-add1-c91663df0862 + - 4f610bff-e74b-4c74-bf14-af1779ce785a status: 200 OK code: 200 - duration: 36.631006ms + duration: 90.504237ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +969,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -978,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a055443-40bc-40c5-aba2-dd05fa9e5a65 + - 3cf1fea2-33df-43db-8441-7710905dc1ee status: 200 OK code: 200 - duration: 199.850523ms + duration: 148.458695ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1018,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -1029,7 +1029,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' headers: Content-Length: - "143" @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ce750f2-4b10-4352-8873-1f820667f29f + - 447fbe2f-6031-42e5-962f-455dd0146d0c status: 404 Not Found code: 404 - duration: 43.909035ms + duration: 28.627584ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1067,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -1076,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dabfa0ae-92a2-42da-8283-e7a366ba1075 + - 8fa3b860-6500-44b8-b28a-1ac62cdf37f3 status: 200 OK code: 200 - duration: 38.766905ms + duration: 94.668836ms - id: 22 request: proto: HTTP/1.1 @@ -1116,8 +1116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data method: GET response: proto: HTTP/2.0 @@ -1136,9 +1136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52247ae8-5336-4996-8de3-5b1cea5f8249 + - c0d1955b-61aa-47d3-ade8-4306d73889a7 status: 200 OK code: 200 - duration: 107.025236ms + duration: 123.762063ms - id: 23 request: proto: HTTP/1.1 @@ -1165,8 +1165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics method: GET response: proto: HTTP/2.0 @@ -1185,11 +1185,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:23 GMT + - Thu, 09 Oct 2025 16:08:19 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,12 +1197,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5367a391-26d8-453a-bcb3-2145170f0d45 + - 42e802b1-1100-444c-a842-ed44f9bbd10f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.932332ms + duration: 104.747537ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b method: GET response: proto: HTTP/2.0 @@ -1227,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 955 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' headers: Content-Length: - - "478" + - "955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad759132-534f-4609-be43-52ae02c1a9e6 + - 86b9f878-9707-412f-be4a-d2d1a48463ff status: 200 OK code: 200 - duration: 35.763979ms + duration: 96.810874ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e080a385-c0f7-4174-8975-677df6cf122f + - b5b101c0-a228-4e91-9342-acd3079603a7 status: 200 OK code: 200 - duration: 171.480721ms + duration: 139.664344ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' headers: Content-Length: - "143" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f70d506-d609-45a8-98d4-6de712335ced + - aa67b35c-f624-4f5c-93c5-52dced0c0b8c status: 404 Not Found code: 404 - duration: 82.221296ms + duration: 29.684105ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -1374,20 +1374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 696 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "696" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5487b13c-e8fb-4056-950c-dc477c9499ec + - 4f933ddf-98dc-445c-80cc-05ad5ade467e status: 200 OK code: 200 - duration: 43.039873ms + duration: 98.66477ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data method: GET response: proto: HTTP/2.0 @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1d1cdc5-f06f-49f7-8dfd-b6fc6ff47206 + - 5e30bf1d-9f7e-4647-ab9d-7c0efa2d4bcb status: 200 OK code: 200 - duration: 108.145779ms + duration: 96.589419ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics method: GET response: proto: HTTP/2.0 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:24 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16884ff1-b78a-4dad-a983-3ec69e392488 + - 6e854705-ebae-4465-af19-72dce26ad7f7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.204076ms + duration: 106.773025ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1964 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:25 GMT + - Thu, 09 Oct 2025 16:08:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,48 +1546,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec56c04d-8bd8-464c-88cd-db100a9d1250 + - f82732c8-743d-4748-9968-ec32038d0c1b status: 200 OK code: 200 - duration: 167.993817ms + duration: 133.367687ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 43 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"admin_password_encryption_ssh_key_id":""}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 62 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"Internal error","type":"internal_server_error"}' headers: Content-Length: - - "1868" + - "62" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT + - Thu, 09 Oct 2025 16:08:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,48 +1597,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aaa9fdd-f457-44e1-babb-ca7a5f1080e8 - status: 200 OK - code: 200 - duration: 126.04438ms + - 0241ecbf-0c59-4749-9d4c-6d93100f41ba + status: 500 Internal Server Error + code: 500 + duration: 520.39156ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 43 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"admin_password_encryption_ssh_key_id":""}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 62 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"Internal error","type":"internal_server_error"}' headers: Content-Length: - - "1868" + - "62" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT + - Thu, 09 Oct 2025 16:08:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,48 +1648,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 909c4af5-35d1-4208-a520-0a5dc6b9d5d3 - status: 200 OK - code: 200 - duration: 158.289173ms + - 470652ef-ad2b-4d40-accb-c67ce7d429be + status: 500 Internal Server Error + code: 500 + duration: 295.750495ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 43 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"admin_password_encryption_ssh_key_id":""}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 62 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"message":"Internal error","type":"internal_server_error"}' headers: Content-Length: - - "143" + - "62" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT + - Thu, 09 Oct 2025 16:08:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,48 +1699,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c42e19e6-eb8a-489b-98f4-98bc869dd44c - status: 404 Not Found - code: 404 - duration: 33.536939ms + - 8887edeb-67c8-4bb5-be7a-b97c42054afc + status: 500 Internal Server Error + code: 500 + duration: 265.200148ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 43 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"admin_password_encryption_ssh_key_id":""}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 62 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"message":"Internal error","type":"internal_server_error"}' headers: Content-Length: - - "677" + - "62" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT + - Thu, 09 Oct 2025 16:08:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 422a2971-a343-41b2-a67e-11e925319f7f - status: 200 OK - code: 200 - duration: 34.228828ms + - 0673d065-eb30-4e87-aa7c-a5dc533cf03f + status: 500 Internal Server Error + code: 500 + duration: 377.726371ms - id: 35 request: proto: HTTP/1.1 @@ -1761,29 +1769,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 0 uncompressed: false - body: '{"user_data":[]}' + body: "" headers: - Content-Length: - - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT + - Thu, 09 Oct 2025 16:08:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 169dc345-f634-4fe6-aaab-59be6dd3fa52 - status: 200 OK - code: 200 - duration: 98.923492ms + - 83256ba5-3b27-46ab-983f-17906bd7fb1f + status: 204 No Content + code: 204 + duration: 92.176607ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -1819,22 +1825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1964 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1964" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:26 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 16:08:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,50 +1846,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f173df39-5f10-4ecf-990d-77b12d6f4f81 - X-Total-Count: - - "0" + - a9664494-03b4-41e0-b08d-77821c5f759a status: 200 OK code: 200 - duration: 54.863774ms + duration: 141.697862ms - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 353 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action","href_result":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670","id":"8c70bbb7-95ac-4894-b1a2-30cd52e1a199","progress":0,"started_at":"2025-10-09T16:08:37.103714+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:27 GMT + - Thu, 09 Oct 2025 16:08:37 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8c70bbb7-95ac-4894-b1a2-30cd52e1a199 Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7dba70-b202-4115-bc40-1ed32f58eec1 - status: 200 OK - code: 200 - duration: 43.313096ms + - 1b0c478a-36eb-4348-b1d4-05187c490ea2 + status: 202 Accepted + code: 202 + duration: 525.461988ms - id: 38 request: proto: HTTP/1.1 @@ -1912,8 +1918,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -1921,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:27 GMT + - Thu, 09 Oct 2025 16:08:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d537b65e-775b-4de9-a2d7-409153618fcd + - 91bf7d15-cc71-4f2a-94d0-ce3c549e2ce5 status: 200 OK code: 200 - duration: 149.447351ms + duration: 147.861221ms - id: 39 request: proto: HTTP/1.1 @@ -1961,8 +1967,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -1970,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1927 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:27 GMT + - Thu, 09 Oct 2025 16:08:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 617edffb-3226-4180-86ac-9497dba85196 - status: 404 Not Found - code: 404 - duration: 39.976224ms + - 3b830d52-abf6-4a06-8faf-9bd42151b9f2 + status: 200 OK + code: 200 + duration: 127.438123ms - id: 40 request: proto: HTTP/1.1 @@ -2010,8 +2016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2019,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "677" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:27 GMT + - Thu, 09 Oct 2025 16:08:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cef6d10-60a2-47fc-bb75-a27e5f1fea17 + - 4f043519-7042-4887-a2f2-521c37ee42e0 status: 200 OK code: 200 - duration: 44.77518ms + duration: 168.413456ms - id: 41 request: proto: HTTP/1.1 @@ -2059,8 +2065,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2068,20 +2074,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1927 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:28 GMT + - Thu, 09 Oct 2025 16:08:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb3468c8-72f5-47cc-9c14-9377ae7b8c53 + - 52fb14c0-3321-4ff3-8243-e3b01d6ac45e status: 200 OK code: 200 - duration: 149.907134ms + duration: 151.363204ms - id: 42 request: proto: HTTP/1.1 @@ -2108,8 +2114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2117,22 +2123,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1927 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:28 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 16:08:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,12 +2144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d44c039c-3a0b-4d30-9a65-6e4c0895d0bf - X-Total-Count: - - "0" + - 0a479816-dd22-44c7-9cb1-bef081ba1bc4 status: 200 OK code: 200 - duration: 88.384934ms + duration: 168.468974ms - id: 43 request: proto: HTTP/1.1 @@ -2161,8 +2163,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2170,20 +2172,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT + - Thu, 09 Oct 2025 16:09:03 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2191,10 +2193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 870289f2-2e82-4bd6-90e2-c65af715e61c + - 1544e6a2-5ea2-4a62-9a53-954c871b6b9a status: 200 OK code: 200 - duration: 53.995113ms + duration: 136.749141ms - id: 44 request: proto: HTTP/1.1 @@ -2210,8 +2212,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2219,20 +2221,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT + - Thu, 09 Oct 2025 16:09:08 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2240,10 +2242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e67519b-454d-43bf-ad4d-3726da78ac03 + - 7f2eb64a-c229-4809-82cd-47cee26aa72a status: 200 OK code: 200 - duration: 129.637684ms + duration: 146.671461ms - id: 45 request: proto: HTTP/1.1 @@ -2259,8 +2261,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2268,20 +2270,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1927 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT + - Thu, 09 Oct 2025 16:09:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,10 +2291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 930a79f1-7697-4537-8741-ad920a792bcc - status: 404 Not Found - code: 404 - duration: 36.101422ms + - a48a6674-fd6c-43b4-a3ef-7eb8f0e7d654 + status: 200 OK + code: 200 + duration: 157.404941ms - id: 46 request: proto: HTTP/1.1 @@ -2308,8 +2310,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2317,20 +2319,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "677" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT + - Thu, 09 Oct 2025 16:09:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2338,10 +2340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12541762-9b48-445f-a911-c0a9aa568039 + - 559dd906-c5d7-4e1e-8e38-8f0c4ede2a01 status: 200 OK code: 200 - duration: 38.973272ms + duration: 157.812897ms - id: 47 request: proto: HTTP/1.1 @@ -2357,8 +2359,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2366,20 +2368,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1927 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT + - Thu, 09 Oct 2025 16:09:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2387,10 +2389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 956eb6ce-241e-49c9-8262-368f5cc58817 + - 718c28d6-3c38-4231-9178-68c85fb40d26 status: 200 OK code: 200 - duration: 104.905558ms + duration: 134.186641ms - id: 48 request: proto: HTTP/1.1 @@ -2406,8 +2408,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2415,22 +2417,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1927 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:29 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 16:09:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,12 +2438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523c9889-a32d-4fb6-89cc-0649d49a472f - X-Total-Count: - - "0" + - 201c7d77-ef26-4e9a-b819-09be4b8c2b0e status: 200 OK code: 200 - duration: 59.851876ms + duration: 158.837402ms - id: 49 request: proto: HTTP/1.1 @@ -2459,8 +2457,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2468,20 +2466,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:09:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2489,10 +2487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed08d0da-61a0-4d4d-bae9-c3d4f41863dc + - 19fc02a3-3a7c-4fb7-90b8-91ad7f6d2906 status: 200 OK code: 200 - duration: 167.030019ms + duration: 135.83228ms - id: 50 request: proto: HTTP/1.1 @@ -2508,8 +2506,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2517,20 +2515,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:09:39 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2538,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be5b3f0b-9f97-4458-a9b5-cde3cb5ca1eb + - bb35054a-21ae-460a-9847-cb6b4150fbf1 status: 200 OK code: 200 - duration: 121.079092ms + duration: 362.254047ms - id: 51 request: proto: HTTP/1.1 @@ -2557,8 +2555,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2566,20 +2564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:09:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2587,10 +2585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d7bf5a-1a71-417d-99b8-f27be905b21d + - fb13f84a-6839-4271-adbf-e003b5fc7997 status: 200 OK code: 200 - duration: 141.990687ms + duration: 227.190399ms - id: 52 request: proto: HTTP/1.1 @@ -2606,8 +2604,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2615,20 +2613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1927 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:09:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2636,10 +2634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d11d6c39-f641-4be9-bf76-453fdd0561cd - status: 404 Not Found - code: 404 - duration: 39.955655ms + - e92e3b46-8ad4-47dc-bfc8-ef0150bd77a2 + status: 200 OK + code: 200 + duration: 243.066686ms - id: 53 request: proto: HTTP/1.1 @@ -2655,8 +2653,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2664,20 +2662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "677" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:09:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2685,10 +2683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df63c2eb-9f8c-4e52-b36e-60b49d8fe241 + - f385eea6-a07e-4550-8009-e40279635102 status: 200 OK code: 200 - duration: 42.582094ms + duration: 155.568591ms - id: 54 request: proto: HTTP/1.1 @@ -2704,8 +2702,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2713,20 +2711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1927 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT + - Thu, 09 Oct 2025 16:10:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2734,10 +2732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46a16b43-c6d0-4d62-800b-9c7963ce787f + - 6770083f-c898-41cc-b669-02882ff24f13 status: 200 OK code: 200 - duration: 54.846491ms + duration: 164.180082ms - id: 55 request: proto: HTTP/1.1 @@ -2753,8 +2751,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2762,22 +2760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1927 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:31 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 16:10:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,12 +2781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c6865f8-2200-4514-8f94-f1cef2c39889 - X-Total-Count: - - "0" + - 7ab6fcad-886e-4309-9f95-cc48d6ce1071 status: 200 OK code: 200 - duration: 55.563126ms + duration: 145.824308ms - id: 56 request: proto: HTTP/1.1 @@ -2806,8 +2800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2815,20 +2809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:14.040184Z","disabled":false,"fingerprint":"256 MD5:94:db:c3:76:58:e4:37:0a:ce:30:ae:ad:7d:86:b1:f0 (ssh-ed25519)","id":"dcb0117f-02c1-4254-9c1d-9910307c6953","name":"test-acc-admin-pwd-encryption","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","public_key":"ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIEEYrzDOZmhItdKaDAEqJQ4ORS2GyBMtBozYsK5kiXXX","updated_at":"2025-06-18T21:59:14.040184Z"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:32 GMT + - Thu, 09 Oct 2025 16:10:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2836,10 +2830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f95c06e2-fc38-41e1-93ad-45fd18a7c78e + - bc575a4a-eb41-4e4b-8ae6-ae11eda6e2db status: 200 OK code: 200 - duration: 42.634574ms + duration: 160.597777ms - id: 57 request: proto: HTTP/1.1 @@ -2855,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2864,20 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:33 GMT + - Thu, 09 Oct 2025 16:10:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a97c6707-d5cf-4944-92dc-57f4cdba9001 + - d8300d48-7f54-4c3c-9d7e-99e3e10dbe33 status: 200 OK code: 200 - duration: 201.572075ms + duration: 149.655046ms - id: 58 request: proto: HTTP/1.1 @@ -2904,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2913,20 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1927 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:33 GMT + - Thu, 09 Oct 2025 16:10:20 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2934,10 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab70c9e7-b13d-4f8e-8784-148eaf20d9f8 - status: 404 Not Found - code: 404 - duration: 32.094753ms + - 59230a59-7917-4062-8988-17c18e93ac40 + status: 200 OK + code: 200 + duration: 154.703385ms - id: 59 request: proto: HTTP/1.1 @@ -2953,8 +2947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -2962,20 +2956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "677" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:33 GMT + - Thu, 09 Oct 2025 16:10:25 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2983,10 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df83e91e-25be-4029-becf-0a2c634a72c8 + - 5bf13f35-0f0a-4956-8493-fd8b1b1cffba status: 200 OK code: 200 - duration: 38.805657ms + duration: 128.543174ms - id: 60 request: proto: HTTP/1.1 @@ -3002,8 +2996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3011,20 +3005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1927 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:33 GMT + - Thu, 09 Oct 2025 16:10:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3032,10 +3026,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9db9f9d-1df3-47d3-8096-c1c7c933fa5f + - 72197778-94f2-4b97-894a-c108e14c1d2f status: 200 OK code: 200 - duration: 51.161726ms + duration: 119.762547ms - id: 61 request: proto: HTTP/1.1 @@ -3051,8 +3045,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3060,22 +3054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1927 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:33 GMT - Link: - - ; rel="last" + - Thu, 09 Oct 2025 16:10:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,12 +3075,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fa91c03-b346-4bcb-8425-aa89a00bd52e - X-Total-Count: - - "0" + - 12798657-ebd9-4565-8123-a89dde6074e6 status: 200 OK code: 200 - duration: 62.807283ms + duration: 146.194762ms - id: 62 request: proto: HTTP/1.1 @@ -3104,8 +3094,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3113,20 +3103,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1868 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:18.752876+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1868" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:34 GMT + - Thu, 09 Oct 2025 16:10:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3134,10 +3124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a69629fe-b166-4193-a945-7c6791b19477 + - af9da0ca-abbb-4198-9572-75cc8b3ed6ae status: 200 OK code: 200 - duration: 141.664164ms + duration: 145.527612ms - id: 63 request: proto: HTTP/1.1 @@ -3153,8 +3143,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3162,20 +3152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 1927 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[{"created_at":"2025-06-18T21:59:15.223614Z","id":"b41ee585-1702-4f61-9cdb-30a432b165ad","product_resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T21:59:15.223614Z","zone":"fr-par-1"}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "677" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:34 GMT + - Thu, 09 Oct 2025 16:10:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3183,52 +3173,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd57c97b-b714-4936-aff0-b10075e5ad4b + - b1a4e5c8-d812-4da4-b171-13e79b60276c status: 200 OK code: 200 - duration: 45.182676ms + duration: 157.252214ms - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1927 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf/action","href_result":"/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","id":"67ff81cc-9830-45aa-a6e2-09307624e951","progress":0,"started_at":"2025-06-18T21:59:34.995282+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:35 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/67ff81cc-9830-45aa-a6e2-09307624e951 + - Thu, 09 Oct 2025 16:10:51 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3236,10 +3222,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd487a62-b5ff-4d2f-a153-046fba6712fe - status: 202 Accepted - code: 202 - duration: 248.038419ms + - 324e5490-4d2d-4861-bc57-5c86837ee820 + status: 200 OK + code: 200 + duration: 130.075583ms - id: 65 request: proto: HTTP/1.1 @@ -3255,8 +3241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3264,20 +3250,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:35 GMT + - Thu, 09 Oct 2025 16:10:56 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3285,10 +3271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 089aca71-e886-4bf6-85c2-98df54d9990b + - 45169b4a-c409-4df8-9ac0-25c4b90024e8 status: 200 OK code: 200 - duration: 130.601403ms + duration: 140.044472ms - id: 66 request: proto: HTTP/1.1 @@ -3304,8 +3290,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3313,20 +3299,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 1927 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "1927" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:40 GMT + - Thu, 09 Oct 2025 16:11:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3334,10 +3320,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37767a4f-27f8-4050-91a3-4dfbddea0d6c + - ae550dec-b7a6-48c2-97cc-339d45b462d3 status: 200 OK code: 200 - duration: 145.846764ms + duration: 148.54637ms - id: 67 request: proto: HTTP/1.1 @@ -3353,8 +3339,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3362,20 +3348,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:45 GMT + - Thu, 09 Oct 2025 16:11:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3383,10 +3369,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8a4cf1c-7eb0-45c9-9234-678d75eca068 + - 24eb310c-b856-4afa-95da-f364d70119a0 status: 200 OK code: 200 - duration: 131.106891ms + duration: 135.028196ms - id: 68 request: proto: HTTP/1.1 @@ -3402,8 +3388,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3411,20 +3397,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:50 GMT + - Thu, 09 Oct 2025 16:11:12 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3432,10 +3418,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ea721d3-d2e5-4027-bf26-b38a97c8ca4e + - 351c766c-137b-4591-ac67-09e88c2aa7cc status: 200 OK code: 200 - duration: 133.908432ms + duration: 149.518024ms - id: 69 request: proto: HTTP/1.1 @@ -3451,8 +3437,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3460,20 +3446,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 21:59:55 GMT + - Thu, 09 Oct 2025 16:11:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3481,10 +3467,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e949da6d-f77f-4e9f-8258-70713d443bf7 + - 7b7ac049-1350-4a35-b3df-e476e31bd72f status: 200 OK code: 200 - duration: 128.39887ms + duration: 170.253938ms - id: 70 request: proto: HTTP/1.1 @@ -3500,8 +3486,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3509,20 +3495,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:00 GMT + - Thu, 09 Oct 2025 16:11:22 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3530,10 +3516,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1411ae0f-6165-4a5b-9e28-4be39b0cd3b0 + - 66b7557f-e2f1-4efe-9552-2070a8eaae7c status: 200 OK code: 200 - duration: 135.386425ms + duration: 151.281645ms - id: 71 request: proto: HTTP/1.1 @@ -3549,8 +3535,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3558,20 +3544,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:06 GMT + - Thu, 09 Oct 2025 16:11:27 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3579,10 +3565,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3f86584-d92b-42a2-b376-60576e1b16ac + - 2d40da24-13ab-41af-8a79-b387437d8468 status: 200 OK code: 200 - duration: 384.088367ms + duration: 175.440319ms - id: 72 request: proto: HTTP/1.1 @@ -3598,8 +3584,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3607,20 +3593,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1828 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1828" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:11 GMT + - Thu, 09 Oct 2025 16:11:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3628,10 +3614,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdbdb4ad-0381-4c1f-86b3-0d69866aed85 + - 21ffc85f-8e5c-47f4-b89d-efb475ed8b2f status: 200 OK code: 200 - duration: 173.557848ms + duration: 149.202197ms - id: 73 request: proto: HTTP/1.1 @@ -3647,202 +3633,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1828 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"801","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T21:59:34.839084+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1828" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 18 Jun 2025 22:00:16 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - db35bcd9-e856-4256-9684-0466693404c0 - status: 200 OK - code: 200 - duration: 251.212272ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1713 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T22:00:17.649396+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1713" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 18 Jun 2025 22:00:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 98fb01bb-9862-4b54-bd80-81281b22db0a - status: 200 OK - code: 200 - duration: 160.475598ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1713 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-06-18T21:59:15.126217+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-funny-chaum","id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","image":{"arch":"x86_64","creation_date":"2025-02-12T14:08:25.582353+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"1269a635-2f4b-4671-b1a3-e3148cc1a17e","modification_date":"2025-02-12T14:08:25.582353+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1bca17bf-0902-4978-906c-208e827b8a10","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b7:5b:71","maintenances":[],"modification_date":"2025-06-18T22:00:17.649396+00:00","name":"tf-srv-funny-chaum","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"19a4819b-24bf-4d44-969f-935ef0061b71","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"8e34ee28-25f2-4952-aca9-68ba0bbae245","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1713" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 18 Jun 2025 22:00:21 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1044e77d-1f36-4cb9-ba29-15d597e27d97 - status: 200 OK - code: 200 - duration: 135.147399ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 18 Jun 2025 22:00:22 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b015e14e-b59c-4311-855b-58f7cd13568b - status: 204 No Content - code: 204 - duration: 252.731693ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -3852,7 +3644,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","type":"not_found"}' headers: Content-Length: - "143" @@ -3861,9 +3653,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:22 GMT + - Thu, 09 Oct 2025 16:11:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3871,11 +3663,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14aec426-7dcf-4ead-8c74-201b35d19853 + - 438e3d82-cf55-40fd-8694-5de6fc2948f8 status: 404 Not Found code: 404 - duration: 131.258031ms - - id: 78 + duration: 45.838667ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3890,8 +3682,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -3901,7 +3693,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' headers: Content-Length: - "143" @@ -3910,9 +3702,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:22 GMT + - Thu, 09 Oct 2025 16:11:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3920,11 +3712,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fdc3c83-9b9e-41e8-ba73-5934baf301e8 + - 3f527382-2a10-45e9-8c0a-0e14e922ccf3 status: 404 Not Found code: 404 - duration: 36.146643ms - - id: 79 + duration: 34.901783ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3939,8 +3731,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: GET response: proto: HTTP/2.0 @@ -3948,20 +3740,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 489 uncompressed: false - body: '{"created_at":"2025-06-18T21:59:15.223614Z","id":"6555bea6-2ab3-4642-8187-f86c97fa53d5","last_detached_at":"2025-06-18T22:00:22.300494Z","name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"1bca17bf-0902-4978-906c-208e827b8a10","project_id":"19a4819b-24bf-4d44-969f-935ef0061b71","references":[],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-18T22:00:22.300494Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":"2025-10-09T16:11:35.588397Z","name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:11:35.588397Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "489" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:22 GMT + - Thu, 09 Oct 2025 16:11:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3969,58 +3761,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69af822d-7fc8-47ff-ae4c-61ba8fc5c7f6 + - f891be60-fb01-43d2-a534-3d8c6dcbc3f3 status: 200 OK code: 200 - duration: 94.54235ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6555bea6-2ab3-4642-8187-f86c97fa53d5 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 18 Jun 2025 22:00:24 GMT - Server: - - Scaleway API Gateway (fr-par-1;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d7dd62c4-bfa5-4f83-b3ba-4c5db4c7c800 - status: 204 No Content - code: 204 - duration: 2.032713335s - - id: 81 + duration: 91.843615ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4035,8 +3780,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 method: DELETE response: proto: HTTP/2.0 @@ -4053,9 +3798,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:24 GMT + - Thu, 09 Oct 2025 16:11:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4063,11 +3808,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10be9e13-5cdd-467a-83c2-950897395354 + - 675c346d-0236-44af-a7b6-7d7ded224328 status: 204 No Content code: 204 - duration: 65.262879ms - - id: 82 + duration: 182.676504ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4082,8 +3827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 method: GET response: proto: HTTP/2.0 @@ -4093,7 +3838,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1f1ad2a-cf66-4d75-883a-f105bcd5a7bf","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","type":"not_found"}' headers: Content-Length: - "143" @@ -4102,9 +3847,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:24 GMT + - Thu, 09 Oct 2025 16:11:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4112,11 +3857,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4c27e26-cb6a-44da-882a-a5b9f5b8aedb + - 0b9c8bc6-15a0-4018-a88c-481eef47f0f6 status: 404 Not Found code: 404 - duration: 165.566209ms - - id: 83 + duration: 61.487088ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4131,8 +3876,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/dcb0117f-02c1-4254-9c1d-9910307c6953 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b method: GET response: proto: HTTP/2.0 @@ -4142,7 +3887,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"dcb0117f-02c1-4254-9c1d-9910307c6953","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","type":"not_found"}' headers: Content-Length: - "128" @@ -4151,9 +3896,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 18 Jun 2025 22:00:24 GMT + - Thu, 09 Oct 2025 16:11:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4161,7 +3906,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb67d78d-2baa-4dd9-86e9-fb98fb2a868d + - eca87a67-1c7f-463b-9968-917376018035 status: 404 Not Found code: 404 - duration: 24.100834ms + duration: 26.159485ms diff --git a/internal/services/instance/testdata/server-alter-tags.cassette.yaml b/internal/services/instance/testdata/server-alter-tags.cassette.yaml index 7b76a148b..bcee36694 100644 --- a/internal/services/instance/testdata/server-alter-tags.cassette.yaml +++ b/internal/services/instance/testdata/server-alter-tags.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb2dc33c-2904-4483-b7c2-5791554d8275 + - 39e3571a-f33d-4cd4-8f09-1f3e2f5e1e09 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 44.391379ms + duration: 52.654863ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4a790c9-9d75-41b5-93b0-bd9d2202d9d9 + - 1d785727-704f-4a0f-9005-b60bbe384c47 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 58.920215ms + duration: 149.681165ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af71fd5b-da0c-4b9e-891d-2fb5bca56b96 + - 94d0c8e2-9db4-4585-b50c-f0bd86f5048a status: 200 OK code: 200 - duration: 60.344704ms + duration: 42.616301ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-musing-kapitsa","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["front","web"]}' + body: '{"name":"tf-srv-clever-lalande","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["front","web"]}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6736580-f52a-4e76-a326-e8f037ef56e6 + - a3d6d9b6-3fba-4714-a2ba-cb6c8e5dc078 status: 201 Created code: 201 - duration: 844.737434ms + duration: 3.464860392s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd3889b-6412-44ba-bb5f-506036fd8550 + - 2fc274d0-9f93-4bee-b7a9-02af0b3b21de status: 200 OK code: 200 - duration: 96.122574ms + duration: 142.367966ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a501ecb9-5869-445c-9b8b-c9be930759fa + - e28c331c-c8f3-45fa-971e-f436b078095b status: 200 OK code: 200 - duration: 96.954255ms + duration: 137.027388ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f35e2ec2-4939-4ffc-8d18-cac86eb48f57 + - 31c96bcd-b5a2-43c0-9f49-da351b69de1a status: 200 OK code: 200 - duration: 106.25221ms + duration: 133.677851ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db6fd8ba-e1ec-4e14-92fc-2e9345a9bafa + - 3862ef7d-3b56-4325-8b76-43c62a1ca7be status: 404 Not Found code: 404 - duration: 27.207805ms + duration: 28.919214ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b776ce3-b98e-4bea-a7b0-76c9c924395f + - ada440e0-fe83-4b02-9fa1-844c7f08e4bf status: 200 OK code: 200 - duration: 37.037545ms + duration: 98.411653ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eb77ca3-5474-4f82-8514-4da1b469277f + - 1eee268c-8e9d-4e6d-bda4-93b5570862c5 status: 200 OK code: 200 - duration: 57.078953ms + duration: 104.724643ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5422b42-1d17-4227-a3ec-649aeed3152e + - db4d6406-4098-462a-9b27-1667ddf4bc97 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.559408ms + duration: 103.704041ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e430370-7014-4ed9-bf99-c0694c2b718f + - 76b75196-d03a-4d50-a755-b7a29765a54f status: 200 OK code: 200 - duration: 97.644714ms + duration: 176.122444ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 957e6baf-5d4d-4908-bd60-d382949705b2 + - 4b8356ae-6656-4036-9f99-8ea66ca08dd7 status: 200 OK code: 200 - duration: 106.821434ms + duration: 147.364241ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3057b3b-6c67-4caf-96a2-d49dc6683664 + - a18ec896-643f-4cc0-ba1f-bd0e8d068a29 status: 404 Not Found code: 404 - duration: 34.458107ms + duration: 23.834856ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -729,7 +729,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e89128bd-13af-4c5d-99cd-cf8a51e501a6 + - 444b8e70-37bf-481a-b2ff-55aac0ea45d5 status: 200 OK code: 200 - duration: 45.66068ms + duration: 84.261135ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data method: GET response: proto: HTTP/2.0 @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 865f5eae-f73c-4ea7-9cd8-f2aec74f7ec2 + - b6f1335e-c488-4921-9869-4db4fadf5f0d status: 200 OK code: 200 - duration: 48.490412ms + duration: 80.591418ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics method: GET response: proto: HTTP/2.0 @@ -836,11 +836,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fbf133d-ff28-4cd1-8a88-55ed8861744c + - 13356925-8442-4716-a7e5-c119916f400d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.459621ms + duration: 85.31497ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f363ac07-e8b5-45d7-b371-de10ff1cbeae + - c6a09292-9b6d-491d-85f7-8283fc9b401d status: 200 OK code: 200 - duration: 117.93332ms + duration: 118.778682ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 491ef7ac-f301-453d-9bde-d9f201afc464 + - 0b1c978b-ad98-457a-8601-3a38f7fa5f23 status: 404 Not Found code: 404 - duration: 30.510192ms + duration: 23.974829ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -978,7 +978,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 034b97ca-d141-4a91-972c-29cb92ffa7fd + - fc8d3d68-0903-4811-b0ec-72e6669fb616 status: 200 OK code: 200 - duration: 50.319421ms + duration: 88.352003ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 790502fc-32be-4df6-88a9-6ceef1e37fff + - a93ed1a1-1552-4526-96ff-17b23e051cac status: 200 OK code: 200 - duration: 54.108159ms + duration: 104.783896ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +1066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics method: GET response: proto: HTTP/2.0 @@ -1085,11 +1085,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,12 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef8faff1-6790-47df-88fb-8ab4ddf62b3d + - 6f54f1ce-1969-4ad5-a6ef-10b066debdbe X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.843005ms + duration: 104.479014ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 1752 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:27.357598+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:06.754938+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front","web"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1752" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69026eb0-a1d2-473f-ba22-29928f5ef62a + - 20e6fdfd-1fe2-4a3e-b07b-809f40f2d2ac status: 200 OK code: 200 - duration: 99.911833ms + duration: 144.856573ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: PATCH response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c22c0bb-6273-44c1-967d-653045b5701c + - 5561a06d-ceb1-4573-942a-f54d03aee619 status: 200 OK code: 200 - duration: 170.663306ms + duration: 216.548213ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0740246a-c31d-43f8-8864-399723dc472e + - baf81bad-990e-4aab-bc6f-e9355a670e15 status: 200 OK code: 200 - duration: 100.598305ms + duration: 139.894044ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1278,7 +1278,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ca870bb-cc15-4683-aa0b-f144fdb3101d + - 2c39ad5d-cca0-4b7c-b561-36f50b352160 status: 200 OK code: 200 - duration: 112.116564ms + duration: 132.962313ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be69d386-886c-4d65-91cf-b7d7a2ffba0e + - e3580afc-d007-40b0-b270-3cb772036fd2 status: 404 Not Found code: 404 - duration: 31.644564ms + duration: 30.387797ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7031d698-58e8-4037-93b1-e0e77fceec04 + - 4c1b284e-f442-4054-88f1-18bb0727b465 status: 200 OK code: 200 - duration: 51.130312ms + duration: 81.205391ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data method: GET response: proto: HTTP/2.0 @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b841caa3-48d7-4af5-9b91-01e68d29ce7c + - 0cdadc32-dc63-418a-9c43-e9a7a05f3299 status: 200 OK code: 200 - duration: 62.99928ms + duration: 107.039935ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics method: GET response: proto: HTTP/2.0 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76037d1e-0d84-49d4-aa23-0fbbba3424f1 + - 29a2ea92-5dc5-4414-8474-cb67aa6a4589 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.100734ms + duration: 105.687079ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1527,7 +1527,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1536,9 +1536,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8069d9d8-0832-4f9d-9195-0b537dc92eea + - d64932fc-524b-4a56-ba3c-bd775fca0d69 status: 200 OK code: 200 - duration: 98.483738ms + duration: 139.638475ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1576,7 +1576,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1585,9 +1585,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9671506a-ff7f-4f75-b959-abd30d9a979d + - 82743abe-d2c0-45de-a02f-f5031e842f8c status: 200 OK code: 200 - duration: 80.599256ms + duration: 160.949114ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -1625,7 +1625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -1634,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bf5d5b3-49b0-4229-aba0-c6b6623ab917 + - 25a3f11c-aa3e-4f4f-9bd3-c1801b220a83 status: 404 Not Found code: 404 - duration: 27.016981ms + duration: 29.426045ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -1674,7 +1674,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1683,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17bee9d6-42b0-47ca-a163-44ee047b5c12 + - 2b0d270e-77a8-4a66-b866-2e8690f9e667 status: 200 OK code: 200 - duration: 47.845456ms + duration: 65.456787ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/user_data method: GET response: proto: HTTP/2.0 @@ -1732,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b471aaa4-e5bf-442a-8f11-3611bc1bffba + - 50badccb-7c13-4384-b5ac-9d1be397d2de status: 200 OK code: 200 - duration: 59.330473ms + duration: 106.241059ms - id: 35 request: proto: HTTP/1.1 @@ -1762,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/private_nics method: GET response: proto: HTTP/2.0 @@ -1781,11 +1781,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,12 +1793,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e048ed61-2323-4e4e-a7a7-916be3b134ee + - 310fbe08-ac20-4486-bcdb-c6ce3b2accc1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 69.006138ms + duration: 130.127122ms - id: 36 request: proto: HTTP/1.1 @@ -1815,7 +1815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1825,7 +1825,7 @@ interactions: trailer: {} content_length: 1745 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:29.864946+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1745" @@ -1834,9 +1834,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cad4eb6c-00db-4be0-a494-46e5be66ea4b + - 96e061d4-7fe3-4d49-9618-7e989730cee4 status: 200 OK code: 200 - duration: 87.810654ms + duration: 122.359195ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1864,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1745 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:11.884071+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1745" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 768a4a0a-d5e2-4385-9289-f4f6944eec5e + status: 200 OK + code: 200 + duration: 134.452247ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -1874,7 +1923,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.490832Z","id":"1d810f76-eeb1-427f-941b-e8338c1b9c95","product_resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.490832Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:06.873886Z","id":"cb1b0fa8-26fe-43e4-b0b3-ac5f9ba97a01","product_resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:06.873886Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1883,9 +1932,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,11 +1942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99c791dd-c9c3-4c51-9871-07754c1df32a + - 39fe14f8-dd71-4786-a6de-d54d08f77812 status: 200 OK code: 200 - duration: 39.396334ms - - id: 38 + duration: 93.0664ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1915,7 +1964,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/action method: POST response: proto: HTTP/2.0 @@ -1925,7 +1974,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action","href_result":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152","id":"ce364ec8-548e-494f-8a35-b935be4a7788","progress":0,"started_at":"2025-10-08T23:04:31.601466+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1085b551-6207-43aa-8ed7-2af0f1799449/action","href_result":"/servers/1085b551-6207-43aa-8ed7-2af0f1799449","id":"7105806c-ba4a-40db-a30c-e5a6248258fa","progress":0,"started_at":"2025-10-15T15:03:14.257882+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1934,11 +1983,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ce364ec8-548e-494f-8a35-b935be4a7788 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7105806c-ba4a-40db-a30c-e5a6248258fa Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,11 +1995,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed4c0a79-00cf-4988-ba9b-a95a9e61a095 + - 45101f68-1b3f-4251-b203-e2542973fa86 status: 202 Accepted code: 202 - duration: 198.859159ms - - id: 39 + duration: 258.915377ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1966,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -1976,7 +2025,7 @@ interactions: trailer: {} content_length: 1767 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:31.448691+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:14.062784+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1767" @@ -1985,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,11 +2044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbce20e2-805e-4d1b-8f96-b31c550b70fd + - ee9592f6-7754-4906-8558-355431f75024 status: 200 OK code: 200 - duration: 94.511337ms - - id: 40 + duration: 159.349026ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -2025,7 +2074,7 @@ interactions: trailer: {} content_length: 1900 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"702","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:33.964354+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"201","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:17.317122+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1900" @@ -2034,9 +2083,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,11 +2093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41125383-ff57-405b-85d4-0f2ae78146ce + - 833a2756-4eb0-4b08-8db9-a7dce269fb73 status: 200 OK code: 200 - duration: 99.193269ms - - id: 41 + duration: 139.378247ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2066,7 +2115,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449/action method: POST response: proto: HTTP/2.0 @@ -2076,7 +2125,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152/action","href_result":"/servers/77869d72-5e60-4778-abd0-2ace08d5b152","id":"231bbdec-e3d8-4bb8-a205-2ffa9c522f08","progress":0,"started_at":"2025-10-08T23:04:36.959755+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/1085b551-6207-43aa-8ed7-2af0f1799449/action","href_result":"/servers/1085b551-6207-43aa-8ed7-2af0f1799449","id":"c41182fc-6c4d-4da4-8622-27c63e639bda","progress":0,"started_at":"2025-10-15T15:03:19.830474+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2085,11 +2134,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/231bbdec-e3d8-4bb8-a205-2ffa9c522f08 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c41182fc-6c4d-4da4-8622-27c63e639bda Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,11 +2146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7971f6ef-46c9-4bdd-9fc6-da3d06d8099f + - b321f294-459e-45ac-8472-6043e032c315 status: 202 Accepted code: 202 - duration: 153.646486ms - - id: 42 + duration: 262.456886ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2117,7 +2166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -2127,7 +2176,7 @@ interactions: trailer: {} content_length: 1863 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.357598+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-musing-kapitsa","id":"77869d72-5e60-4778-abd0-2ace08d5b152","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"702","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:67","maintenances":[],"modification_date":"2025-10-08T23:04:36.845328+00:00","name":"tf-srv-musing-kapitsa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["front"],"volumes":{"0":{"boot":false,"id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:06.754938+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-clever-lalande","id":"1085b551-6207-43aa-8ed7-2af0f1799449","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"201","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:13","maintenances":[],"modification_date":"2025-10-15T15:03:19.621027+00:00","name":"tf-srv-clever-lalande","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["front"],"volumes":{"0":{"boot":false,"id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1863" @@ -2136,9 +2185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,11 +2195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 374e0d6f-1d64-47f0-be1e-7502f10f5272 + - 82ec088a-8889-417e-ab2d-11e95e4ce092 status: 200 OK code: 200 - duration: 120.241381ms - - id: 43 + duration: 149.876411ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2166,7 +2215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -2176,7 +2225,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","type":"not_found"}' headers: Content-Length: - "143" @@ -2185,9 +2234,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2195,11 +2244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1c8200e-0a7c-46f7-b5be-1e40ddf8fed9 + - bdc19690-7a13-4fef-85cd-541109955062 status: 404 Not Found code: 404 - duration: 52.364015ms - - id: 44 + duration: 51.372138ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2215,7 +2264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -2225,7 +2274,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","type":"not_found"}' headers: Content-Length: - "143" @@ -2234,9 +2283,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,11 +2293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55d251da-b9b0-496e-a8ae-cf2a8d00a479 + - 14596a76-f78a-40b8-9f05-1b0a8d9e45e9 status: 404 Not Found code: 404 - duration: 28.111777ms - - id: 45 + duration: 37.269718ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2264,7 +2313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: GET response: proto: HTTP/2.0 @@ -2274,7 +2323,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.490832Z","id":"46817fcc-a2eb-43b1-b525-45d07ed7d980","last_detached_at":"2025-10-08T23:04:38.094451Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:38.094451Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:06.873886Z","id":"0cfc10b4-77c1-498b-907a-29f40cb5d439","last_detached_at":"2025-10-15T15:03:21.367473Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:21.367473Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2283,9 +2332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2293,11 +2342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bbde682-f112-4861-80c9-8580533b554a + - dd8c9d0b-1a14-440c-a753-0c3442bfe137 status: 200 OK code: 200 - duration: 40.559396ms - - id: 46 + duration: 96.304007ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2313,7 +2362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46817fcc-a2eb-43b1-b525-45d07ed7d980 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0cfc10b4-77c1-498b-907a-29f40cb5d439 method: DELETE response: proto: HTTP/2.0 @@ -2330,9 +2379,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2340,11 +2389,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87ccd2e7-0633-4b4b-98b1-0e44bc05ca73 + - 60a27f1b-3d2c-4160-bc8e-bc4b2ce05a52 status: 204 No Content code: 204 - duration: 74.955336ms - - id: 47 + duration: 169.87553ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2360,7 +2409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77869d72-5e60-4778-abd0-2ace08d5b152 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1085b551-6207-43aa-8ed7-2af0f1799449 method: GET response: proto: HTTP/2.0 @@ -2370,7 +2419,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77869d72-5e60-4778-abd0-2ace08d5b152","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1085b551-6207-43aa-8ed7-2af0f1799449","type":"not_found"}' headers: Content-Length: - "143" @@ -2379,9 +2428,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,7 +2438,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91e3d129-1707-47fc-ba91-3df322bd044d + - f7c6f21a-c84b-44db-b57a-caa73b1f6ee8 status: 404 Not Found code: 404 - duration: 44.8312ms + duration: 42.633612ms diff --git a/internal/services/instance/testdata/server-basic.cassette.yaml b/internal/services/instance/testdata/server-basic.cassette.yaml index ac5d127bc..f041519b2 100644 --- a/internal/services/instance/testdata/server-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-basic.cassette.yaml @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97f7f03a-9276-4e8e-9547-208658186e81 + - 81755022-868b-4e48-9fee-5051793950f6 status: 200 OK code: 200 - duration: 47.146387ms + duration: 57.295852ms - id: 1 request: proto: HTTP/1.1 @@ -74,22 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,12 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fd950c4-edf2-4723-96bb-3376365e8695 + - eabdfc34-f443-4748-bb47-acca82d683fe X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.455127ms + duration: 42.919852ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c835fb0-7520-4e6b-bf0d-d332b2bf7eff + - 59a94da8-8341-4270-8601-e76e60f8bdc4 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 46.151124ms + duration: 48.703905ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","basic"]}' + body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-M","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.035955+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f41ec16-3db6-47fc-bed9-1f6bca808de3 + - 962b17cf-e441-4040-9d9a-bf22fc1d4a83 status: 201 Created code: 201 - duration: 382.34166ms + duration: 782.528159ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.035955+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a87f30c-4202-4a67-b21c-e08468f33dfb + - 6946a552-b708-4c09-a355-b7ee9d9a66ae status: 200 OK code: 200 - duration: 78.799455ms + duration: 123.054591ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.249923+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.035955+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 894c4f9b-1d3c-43f9-b1a7-6690e7f4077d + - b9937140-d4e6-4a51-b735-07a3b2d9f5ca status: 200 OK code: 200 - duration: 81.83584ms + duration: 121.761678ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action","href_result":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b","id":"e7e20a51-2593-4598-b1ee-49952d2e50c4","progress":0,"started_at":"2025-10-08T23:04:48.819957+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action","href_result":"/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48","id":"074fa49f-fcde-4759-849c-86791e75a328","progress":0,"started_at":"2025-10-15T15:04:31.654820+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e7e20a51-2593-4598-b1ee-49952d2e50c4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/074fa49f-fcde-4759-849c-86791e75a328 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f5f586b-cc74-45ab-8e52-8e20a5e9dcaf + - 12c821d5-823a-4932-9651-8eb3c1977065 status: 202 Accepted code: 202 - duration: 186.920406ms + duration: 222.037636ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -386,7 +386,7 @@ interactions: trailer: {} content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.489740+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2181" @@ -395,9 +395,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43257689-b9f4-4eee-a50b-be96b81b3c6e + - d47c0bcd-89ab-4d3e-aac8-29e77cc21a4a status: 200 OK code: 200 - duration: 89.165047ms + duration: 122.366632ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -433,961 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2283 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2283" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:04:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44613e8e-74ec-48b1-a36d-82cb1d87de3f - status: 200 OK - code: 200 - duration: 92.037185ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2283 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2283" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:04:59 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c29bb06-dcaa-41d1-9ed3-787eb1e1a473 - status: 200 OK - code: 200 - duration: 92.238315ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2283 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:04:48.680273+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2283" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:04 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ce185977-f201-4d9d-bb47-6c431954ce80 - status: 200 OK - code: 200 - duration: 87.004007ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 34473e18-6ea4-4353-8b27-58cbda88dd81 - status: 200 OK - code: 200 - duration: 96.857978ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9885a219-071c-49c1-b3dc-d09155e44e25 - status: 200 OK - code: 200 - duration: 87.075226ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d920c74d-7b72-4c3f-a02d-3766aa6c9393 - status: 200 OK - code: 200 - duration: 60.206034ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bed07c4b-47dc-4280-afd5-5791846ce9d7 - status: 200 OK - code: 200 - duration: 44.998515ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c16a192d-44f4-4500-956b-944da264b61f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 64.162904ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a7de755c-aede-4337-8df7-d5c49b331874 - status: 200 OK - code: 200 - duration: 83.334998ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f89ffd1-f472-4caa-ba41-28a47467223e - status: 200 OK - code: 200 - duration: 48.001116ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0c7879b9-7019-4f2e-8105-87d32614cb36 - status: 200 OK - code: 200 - duration: 109.112739ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 95a5d54b-b7fe-421b-9b1b-dcdadb6343ec - status: 200 OK - code: 200 - duration: 99.909279ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3579cf81-c78a-4a7f-a7ec-7e7a381278e2 - status: 200 OK - code: 200 - duration: 52.256339ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2be6194d-9def-4371-953b-d08893b7842e - status: 200 OK - code: 200 - duration: 65.170681ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 94dead0a-6842-475b-b5f5-f692a8e2852b - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 53.976145ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 423 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "423" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b2a1c4c-dbdc-4f81-a9f6-c2d8a26fd542 - status: 200 OK - code: 200 - duration: 46.077062ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f827007-f42e-43e9-972c-d54eec956cb8 - status: 200 OK - code: 200 - duration: 85.659934ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 504 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "504" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 791e1a4e-087c-43f8-b966-86a100fc36c0 - status: 200 OK - code: 200 - duration: 52.931749ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b629521b-e15f-4637-9cfe-6b52b88fe128 - status: 200 OK - code: 200 - duration: 65.845841ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 + content_length: 2284 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.489740+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,13 +454,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 692aa4ff-2bea-48fb-af10-546fe0056024 - X-Total-Count: - - "0" + - 04cc1a69-b022-49c9-a692-42e117caefe3 status: 200 OK code: 200 - duration: 51.473047ms - - id: 28 + duration: 154.429006ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -1417,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -1425,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:08.442337+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:31.489740+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2314" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,52 +503,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb95218-7cee-40d9-a3cb-e274e4642efa + - 64862d32-b072-4f77-ae9b-dc9ed2274c6a status: 200 OK code: 200 - duration: 101.111888ms - - id: 29 + duration: 156.82768ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 2315 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b/action","href_result":"/servers/626ef87e-36f4-4e71-acf9-146145ec150b","id":"d8794f7f-0248-4bb7-b8c0-dc2183d5f4ed","progress":0,"started_at":"2025-10-08T23:05:11.168045+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d8794f7f-0248-4bb7-b8c0-dc2183d5f4ed + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,11 +552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7777b80f-e46f-4f69-92a6-83e4dc66ec46 - status: 202 Accepted - code: 202 - duration: 213.122212ms - - id: 30 + - ce01f389-d465-47f7-9131-6a27601559ec + status: 200 OK + code: 200 + duration: 155.717706ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -1519,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -1527,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:11 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,11 +601,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71395756-d083-437c-8e67-3637b0d63174 + - 05957e75-4a69-468c-ab6f-5658a1eeaeaf status: 200 OK code: 200 - duration: 85.077155ms - - id: 31 + duration: 123.836743ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -1568,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a method: GET response: proto: HTTP/2.0 @@ -1576,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 504 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,11 +650,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70710a4e-4d5d-4b7d-ad4f-06e3a6b8e4f7 + - 9c235af8-691f-4b09-868c-6059495afdd0 status: 200 OK code: 200 - duration: 84.824455ms - - id: 32 + duration: 111.891699ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -1617,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data method: GET response: proto: HTTP/2.0 @@ -1625,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2277" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,11 +699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 573fe0fa-d215-467d-993d-5b8142f95e81 + - 4d7e8390-73e2-4dca-959d-f0af34f126b5 status: 200 OK code: 200 - duration: 79.383885ms - - id: 33 + duration: 108.121931ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -1666,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics method: GET response: proto: HTTP/2.0 @@ -1674,20 +727,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2277" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:04:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,11 +750,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e125f933-d54b-40b4-a85f-8d13d88bad22 + - 509c2ee9-2f25-45eb-8ba7-60116e37e7d8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 86.20608ms - - id: 34 + duration: 87.803668ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -1715,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -1723,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,11 +801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e8457b5-b154-46e7-91ac-653560b12e4c + - 7448edd0-09e8-4bd0-9e19-7de18fc75b4b status: 200 OK code: 200 - duration: 90.454478ms - - id: 35 + duration: 169.314758ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1764,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1772,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2277" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,11 +850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bf1f11d-152a-424a-8013-ee0f2f3609b2 + - 5229033f-fcf9-48f5-8691-5ae171577a07 status: 200 OK code: 200 - duration: 87.034291ms - - id: 36 + duration: 42.891756ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1813,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1821,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2277" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,11 +899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa71afd7-4ce9-4124-821b-86abfa96f872 + - 3539b902-70ad-4780-9abd-d3eb5b052686 status: 200 OK code: 200 - duration: 88.539667ms - - id: 37 + duration: 58.404589ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1862,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -1870,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,11 +948,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50d921cf-cdc7-4005-8412-5497ba8f29c0 + - 34fbe561-bb1f-47c2-981f-bfd054f1abf3 status: 200 OK code: 200 - duration: 77.954419ms - - id: 38 + duration: 131.830051ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1911,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a method: GET response: proto: HTTP/2.0 @@ -1919,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 504 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,11 +997,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2feef99e-da04-4c62-90da-7fabb3d1284a + - 964a8050-9cc1-4f9c-8be2-be79e7a950a1 status: 200 OK code: 200 - duration: 100.919363ms - - id: 39 + duration: 107.762378ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1960,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data method: GET response: proto: HTTP/2.0 @@ -1968,20 +1025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2277" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,11 +1046,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24de5741-0244-4725-a122-df876b5b3d4f + - acef8ce0-b3bf-4047-9e21-fda93835a640 status: 200 OK code: 200 - duration: 95.463545ms - - id: 40 + duration: 96.5041ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -2009,7 +1066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics method: GET response: proto: HTTP/2.0 @@ -2017,20 +1074,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2277" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:04:48 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,11 +1097,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dba7603-d081-4e6f-91fa-1cae071d05db + - 99aadef3-c854-47a0-a876-271fee768f67 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 96.249078ms - - id: 41 + duration: 93.202801ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -2058,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2066,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2277" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,11 +1148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 076e95d7-fcc1-42f3-8782-9cdad8eaed14 + - 49d0b838-a9df-4584-ab0c-6cde7b03aa6f status: 200 OK code: 200 - duration: 90.504306ms - - id: 42 + duration: 55.76444ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -2107,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -2115,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,11 +1197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a044611-06f7-4f3f-8aa3-cb8f8e15279b + - be1c5dc4-d152-4491-8e4c-3c7186b5cb86 status: 200 OK code: 200 - duration: 100.849084ms - - id: 43 + duration: 140.827059ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -2156,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a method: GET response: proto: HTTP/2.0 @@ -2164,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 504 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,11 +1246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08a9613d-fafb-4948-b43e-2cb87db2941c + - ee42eff1-7bdd-4f20-8eaa-4dab7af1e554 status: 200 OK code: 200 - duration: 77.991077ms - - id: 44 + duration: 107.615343ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -2205,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/user_data method: GET response: proto: HTTP/2.0 @@ -2213,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2277" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:22 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,11 +1295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5697606e-6cd4-4bb9-8110-9d0d0c30ed8c + - bd9b127e-f135-4a52-b824-8dc17907fd55 status: 200 OK code: 200 - duration: 97.581328ms - - id: 45 + duration: 111.879448ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -2254,7 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/private_nics method: GET response: proto: HTTP/2.0 @@ -2262,20 +1323,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2277" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:27 GMT + - Wed, 15 Oct 2025 15:04:49 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,11 +1346,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5aaee78-cb20-4d86-b8b7-4364b9c6bddb + - 3cfb6044-f909-46a5-ae60-abf37fcb434d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 93.397317ms - - id: 46 + duration: 99.977724ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -2303,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -2311,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,11 +1397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce4da7b5-c4ed-4202-bfae-d02120d5ae3b + - a4a39aaf-3a31-4d50-a6dc-84f61e3ac4d7 status: 200 OK code: 200 - duration: 99.649675ms - - id: 47 + duration: 127.419593ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -2352,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -2360,20 +1425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:43.970148+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:37 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,48 +1446,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a34d789-0939-40d9-a5db-acfd27f82b77 + - ac283db2-b038-4636-88fb-a132bb26a5e7 status: 200 OK code: 200 - duration: 86.137588ms - - id: 48 + duration: 140.714149ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48/action","href_result":"/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48","id":"51849438-9c39-423f-bd7f-38d48faa97fa","progress":0,"started_at":"2025-10-15T15:04:49.954490+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:42 GMT + - Wed, 15 Oct 2025 15:04:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/51849438-9c39-423f-bd7f-38d48faa97fa Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,11 +1499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10e23b75-8ff4-436e-a6b4-6ec7b6cb9941 - status: 200 OK - code: 200 - duration: 92.558829ms - - id: 49 + - d2b11aa4-b2fb-4281-b33c-badf5148af3e + status: 202 Accepted + code: 202 + duration: 282.944239ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -2450,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -2458,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2277 + content_length: 2278 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-08T23:04:48.249923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"626ef87e-36f4-4e71-acf9-146145ec150b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8b","maintenances":[],"modification_date":"2025-10-08T23:05:11.005172+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:48.249923+00:00","export_uri":null,"id":"0c814d9a-66cb-4148-9244-005a5fb74355","modification_date":"2025-10-08T23:04:48.249923+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"626ef87e-36f4-4e71-acf9-146145ec150b","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-M","creation_date":"2025-10-15T15:04:31.035955+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"502","node_id":"46","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:67","maintenances":[],"modification_date":"2025-10-15T15:04:49.724822+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:31.035955+00:00","export_uri":null,"id":"3753b0de-602d-4782-a990-9c850a2db99a","modification_date":"2025-10-15T15:04:31.035955+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2277" + - "2278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:48 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,11 +1548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8feb497a-ad12-4f52-b185-61b330aadc34 + - 66d67624-bd77-4cc1-bba5-be1918439ed6 status: 200 OK code: 200 - duration: 78.565511ms - - id: 50 + duration: 133.589211ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -2499,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/626ef87e-36f4-4e71-acf9-146145ec150b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c294c1b8-f36c-4aac-a2cc-8fdd4446df48 method: GET response: proto: HTTP/2.0 @@ -2509,7 +1578,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"626ef87e-36f4-4e71-acf9-146145ec150b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c294c1b8-f36c-4aac-a2cc-8fdd4446df48","type":"not_found"}' headers: Content-Length: - "143" @@ -2518,9 +1587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,11 +1597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e142e435-513e-4644-95a5-4c060c0ab0a5 + - 1152703a-e9a8-4849-bda9-1f5f5145b142 status: 404 Not Found code: 404 - duration: 49.809145ms - - id: 51 + duration: 46.608637ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2548,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a method: GET response: proto: HTTP/2.0 @@ -2558,7 +1627,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0c814d9a-66cb-4148-9244-005a5fb74355","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3753b0de-602d-4782-a990-9c850a2db99a","type":"not_found"}' headers: Content-Length: - "143" @@ -2567,9 +1636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,11 +1646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 946444a5-1471-4fd4-accb-5d027ece621b + - dc9bf82f-dfcb-405a-ad32-813ea6beb463 status: 404 Not Found code: 404 - duration: 44.188896ms - - id: 52 + duration: 25.494901ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2597,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0c814d9a-66cb-4148-9244-005a5fb74355 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3753b0de-602d-4782-a990-9c850a2db99a method: GET response: proto: HTTP/2.0 @@ -2607,7 +1676,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"0c814d9a-66cb-4148-9244-005a5fb74355","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"3753b0de-602d-4782-a990-9c850a2db99a","type":"not_found"}' headers: Content-Length: - "127" @@ -2616,9 +1685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,11 +1695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9a1cd1f-148c-4f62-8e8f-7173278a0895 + - 7d33eb0a-c026-4e2a-b0df-c5492de21c07 status: 404 Not Found code: 404 - duration: 16.759327ms - - id: 53 + duration: 19.916251ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2654,22 +1723,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,13 +1746,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f32b962-dc02-46b2-8519-c7e205b01889 + - 63b539d9-2f0c-4a59-b865-c3649d53cc4a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 59.406909ms - - id: 54 + duration: 31.488759ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2707,22 +1776,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2730,13 +1799,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3252c1e8-2bd7-4186-ab06-732afd79c7cb + - d58a19d4-6c23-499a-88c7-e7614658fe88 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 170.593422ms - - id: 55 + duration: 51.427161ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2747,7 +1816,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","basic"]}' + body: '{"name":"test","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","basic"]}' form: {} headers: Content-Type: @@ -2764,7 +1833,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:55.970059+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -2773,11 +1842,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,11 +1854,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7578f1d4-c3a9-4441-9658-e643e22868c8 + - 6b65ce19-893d-4fbf-9dbc-fddeae3aabcc status: 201 Created code: 201 - duration: 505.286068ms - - id: 56 + duration: 833.970653ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2805,7 +1874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -2815,7 +1884,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:55.970059+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -2824,9 +1893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,11 +1903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df07574d-20bb-4ad3-9ff8-0c3ba41606a1 + - 85fa7c14-1c13-4383-b6b0-25bb8a22fa91 status: 200 OK code: 200 - duration: 90.116272ms - - id: 57 + duration: 122.57172ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2854,7 +1923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -2864,7 +1933,7 @@ interactions: trailer: {} content_length: 2159 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:53.571870+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:55.970059+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2159" @@ -2873,9 +1942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2883,11 +1952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99dab371-9e11-4ce8-b377-b6a4f9fa15e7 + - b2eecc9a-3648-4983-8894-3ccdd0c7b727 status: 200 OK code: 200 - duration: 90.975693ms - - id: 58 + duration: 127.526912ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2905,7 +1974,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action method: POST response: proto: HTTP/2.0 @@ -2915,7 +1984,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action","href_result":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84","id":"5b5969ea-74c1-48cc-9851-ea32caa6dd71","progress":0,"started_at":"2025-10-08T23:06:54.246731+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action","href_result":"/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4","id":"ae666e44-3664-48d3-a65a-781f4f40ddac","progress":0,"started_at":"2025-10-15T15:04:56.620739+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2924,11 +1993,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5b5969ea-74c1-48cc-9851-ea32caa6dd71 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ae666e44-3664-48d3-a65a-781f4f40ddac Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,11 +2005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed6078ce-00b2-4645-a833-c71cc7602fd5 + - fb5f0bd1-aa20-42d4-99fe-885389676dee status: 202 Accepted code: 202 - duration: 200.18892ms - - id: 59 + duration: 266.119539ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2956,7 +2025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -2966,7 +2035,7 @@ interactions: trailer: {} content_length: 2181 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:56.429856+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2181" @@ -2975,9 +2044,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,11 +2054,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 087adebd-5b79-45f2-8c5f-f61745c8b209 + - 46960ed4-2e78-435f-8fd3-a689563c29c4 status: 200 OK code: 200 - duration: 104.369026ms - - id: 60 + duration: 170.886216ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,7 +2074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3015,7 +2084,7 @@ interactions: trailer: {} content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:56.429856+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2284" @@ -3024,9 +2093,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:59 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,11 +2103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b65411a0-fb4b-444d-83a8-9b9ff31fe558 + - 0f49102e-4eb5-4b0c-bf48-6e7b34755d6c status: 200 OK code: 200 - duration: 89.019628ms - - id: 61 + duration: 144.594416ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -3054,7 +2123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3064,7 +2133,7 @@ interactions: trailer: {} content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:06:54.085439+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:04:56.429856+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2284" @@ -3073,9 +2142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:04 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,11 +2152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a5c527f-03ab-4242-8942-58afde3130a4 + - 435c86d1-3bca-4989-b221-a9ad38ceeb6a status: 200 OK code: 200 - duration: 97.230223ms - - id: 62 + duration: 137.69146ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -3103,7 +2172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3113,7 +2182,7 @@ interactions: trailer: {} content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2315" @@ -3122,9 +2191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,11 +2201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ebbeaae-61ca-46c9-90c3-119080e540be + - 59a8166c-127c-4671-af07-fccb83349a70 status: 200 OK code: 200 - duration: 95.790525ms - - id: 63 + duration: 156.170304ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -3152,7 +2221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3162,7 +2231,7 @@ interactions: trailer: {} content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2315" @@ -3171,9 +2240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,11 +2250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1b88cd8-a5aa-40bb-8ada-ca6bf2ae8921 + - aa0ee4c4-c696-4844-86af-e5ca1712ff16 status: 200 OK code: 200 - duration: 87.656852ms - - id: 64 + duration: 124.175272ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -3201,7 +2270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 method: GET response: proto: HTTP/2.0 @@ -3211,7 +2280,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "504" @@ -3220,9 +2289,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,11 +2299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49fd7fc5-4941-4619-a8bf-420ca8626aeb + - bd6e4389-2e08-4d0e-8910-3d079da116ea status: 200 OK code: 200 - duration: 63.25443ms - - id: 65 + duration: 86.402347ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -3250,7 +2319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/user_data method: GET response: proto: HTTP/2.0 @@ -3269,9 +2338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3279,11 +2348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba7f30d5-e1b5-4649-a599-6603f4cc7fdb + - f55ace94-2f1b-44ee-bded-aa2795fcf745 status: 200 OK code: 200 - duration: 52.079617ms - - id: 66 + duration: 97.975467ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -3299,7 +2368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/private_nics method: GET response: proto: HTTP/2.0 @@ -3318,11 +2387,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:09 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3330,13 +2399,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae946b3d-78ce-4c52-b7d8-ff0554f21a76 + - 78992149-ba4d-4caa-bdfe-c9c400454e34 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.337313ms - - id: 67 + duration: 111.895878ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -3352,7 +2421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3362,7 +2431,7 @@ interactions: trailer: {} content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2315" @@ -3371,9 +2440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,11 +2450,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bcb33f5-4028-4f1d-b283-346b1bdad3be + - 1dac56ab-98a7-4b93-a7bc-d2d38772f1ee status: 200 OK code: 200 - duration: 104.612601ms - - id: 68 + duration: 131.316372ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -3420,9 +2489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,11 +2499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be60f72a-9023-4799-991e-b54629925712 + - 7113743d-f40f-4ed6-a023-77f10330759f status: 200 OK code: 200 - duration: 54.537839ms - - id: 69 + duration: 45.553955ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -3469,9 +2538,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,11 +2548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34dc6c87-12b0-487c-91f2-52ddb96308f6 + - 76000832-9de0-44fd-9c1d-804dcbe7431a status: 200 OK code: 200 - duration: 57.610759ms - - id: 70 + duration: 51.84935ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -3499,7 +2568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3509,7 +2578,7 @@ interactions: trailer: {} content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2315" @@ -3518,9 +2587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc9997e0-3d3c-4b69-bfe7-c74bfaa7d1b4 + - e9e4aace-8c48-4395-be08-c1b3a004c7a1 status: 200 OK code: 200 - duration: 98.757949ms - - id: 71 + duration: 160.326048ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -3548,7 +2617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 method: GET response: proto: HTTP/2.0 @@ -3558,7 +2627,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "504" @@ -3567,9 +2636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,11 +2646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0240f11c-318b-4d9c-a8f4-f6eb5c5a2fe2 + - 22106020-186d-44b1-a352-2bf20ffb8f72 status: 200 OK code: 200 - duration: 53.558054ms - - id: 72 + duration: 101.023593ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3597,7 +2666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/user_data method: GET response: proto: HTTP/2.0 @@ -3616,9 +2685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,11 +2695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14659071-1d6c-4c8a-9918-82da43b9d807 + - f593bd68-c861-4f42-adec-008c8f6889b8 status: 200 OK code: 200 - duration: 53.477866ms - - id: 73 + duration: 115.10678ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3646,7 +2715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/private_nics method: GET response: proto: HTTP/2.0 @@ -3665,11 +2734,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3677,13 +2746,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54bef558-16b2-4bf8-a38e-ade76b5dfac4 + - 94d4c916-b8a0-416b-bc6b-430609e066ca X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.962144ms - - id: 74 + duration: 113.792555ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2315 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2315" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b84c9357-db58-48ff-8adb-e9de542ef53d + status: 200 OK + code: 200 + duration: 141.40504ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3699,7 +2817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3709,7 +2827,7 @@ interactions: trailer: {} content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:05.724329+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:09.688573+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2315" @@ -3718,9 +2836,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:11 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,11 +2846,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b827c4d1-eadc-4c3b-b784-17522840e469 + - 771189b8-51a5-46f8-998b-0aaabccc1e8b status: 200 OK code: 200 - duration: 101.547324ms - - id: 75 + duration: 147.734269ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3750,7 +2868,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action method: POST response: proto: HTTP/2.0 @@ -3760,7 +2878,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84/action","href_result":"/servers/bfa6fd35-14b0-42d0-b369-70e175370f84","id":"bf57ef17-7d2d-4741-955b-bb4acad24421","progress":0,"started_at":"2025-10-08T23:07:11.278721+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4/action","href_result":"/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4","id":"3a11c83e-cdeb-4efd-870f-fb312c30b328","progress":0,"started_at":"2025-10-15T15:05:14.440105+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3769,11 +2887,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:11 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bf57ef17-7d2d-4741-955b-bb4acad24421 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3a11c83e-cdeb-4efd-870f-fb312c30b328 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3781,11 +2899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d469169b-aea2-46eb-a4c6-5ffebfce88da + - accf5cd3-2130-40e0-b410-ddb3c7838440 status: 202 Accepted code: 202 - duration: 168.867695ms - - id: 76 + duration: 290.17943ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3801,7 +2919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3811,7 +2929,7 @@ interactions: trailer: {} content_length: 2278 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:06:53.571870+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"bfa6fd35-14b0-42d0-b369-70e175370f84","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"202","node_id":"43","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:c7","maintenances":[],"modification_date":"2025-10-08T23:07:11.156924+00:00","name":"test","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:06:53.571870+00:00","export_uri":null,"id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","modification_date":"2025-10-08T23:06:53.571870+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"bfa6fd35-14b0-42d0-b369-70e175370f84","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:55.970059+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"test","id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"302","node_id":"52","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:85","maintenances":[],"modification_date":"2025-10-15T15:05:14.210039+00:00","name":"test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","basic"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:55.970059+00:00","export_uri":null,"id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","modification_date":"2025-10-15T15:04:55.970059+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","name":"test"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2278" @@ -3820,9 +2938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:11 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,11 +2948,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a579826d-a53c-4ea0-acdc-0f042efa843c + - 0e0f6de8-3236-4d1b-850a-bc2f1737b5e6 status: 200 OK code: 200 - duration: 86.523732ms - - id: 77 + duration: 121.638036ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3850,7 +2968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -3860,7 +2978,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bfa6fd35-14b0-42d0-b369-70e175370f84","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","type":"not_found"}' headers: Content-Length: - "143" @@ -3869,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:16 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3879,11 +2997,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 932b3feb-1ff6-4155-a45b-fd53e6863e02 + - c2946bc6-6a04-4a57-a6f8-b7e68e756f8f status: 404 Not Found code: 404 - duration: 56.682448ms - - id: 78 + duration: 49.164718ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3899,7 +3017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 method: GET response: proto: HTTP/2.0 @@ -3909,7 +3027,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","type":"not_found"}' headers: Content-Length: - "143" @@ -3918,9 +3036,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:16 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3928,11 +3046,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2d1100d-90f1-49b3-b4c6-5a358cc924c4 + - 9d198ba1-4b87-468c-938c-6f80c15af53c status: 404 Not Found code: 404 - duration: 34.92174ms - - id: 79 + duration: 36.855998ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3948,7 +3066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0b6b0aac-ef8f-4d4e-a658-de609c934e73 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/27b4b773-c97b-45cf-8a23-32d0b1dbdac8 method: GET response: proto: HTTP/2.0 @@ -3958,7 +3076,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"0b6b0aac-ef8f-4d4e-a658-de609c934e73","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"27b4b773-c97b-45cf-8a23-32d0b1dbdac8","type":"not_found"}' headers: Content-Length: - "127" @@ -3967,9 +3085,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:16 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3977,11 +3095,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cebd74e3-023a-4dc1-8d31-8b0faf4208c1 + - c38fd65e-e472-4035-9bff-b9f05ac16170 status: 404 Not Found code: 404 - duration: 34.557004ms - - id: 80 + duration: 17.845932ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3997,7 +3115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bfa6fd35-14b0-42d0-b369-70e175370f84 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4545ed79-a8e6-41df-b4e9-570f5ba18fc4 method: GET response: proto: HTTP/2.0 @@ -4007,7 +3125,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bfa6fd35-14b0-42d0-b369-70e175370f84","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4545ed79-a8e6-41df-b4e9-570f5ba18fc4","type":"not_found"}' headers: Content-Length: - "143" @@ -4016,9 +3134,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:16 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,7 +3144,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ec5ce14-7e3f-4440-9f56-680cef20a098 + - 34748f0c-ddd6-4160-a9cc-33375a1f0d57 status: 404 Not Found code: 404 - duration: 60.049123ms + duration: 41.03835ms diff --git a/internal/services/instance/testdata/server-basic2.cassette.yaml b/internal/services/instance/testdata/server-basic2.cassette.yaml index b67423972..d56962a0d 100644 --- a/internal/services/instance/testdata/server-basic2.cassette.yaml +++ b/internal/services/instance/testdata/server-basic2.cassette.yaml @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:26 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60c4b0e7-b35b-4eeb-a49c-61700b1d2b47 + - 21c30999-3cc2-4d8a-b3e7-6dfc57c2677a status: 200 OK code: 200 - duration: 104.517187ms + duration: 44.238268ms - id: 1 request: proto: HTTP/1.1 @@ -74,22 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,12 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54b5ccb9-ef50-4068-a9e9-0f358c4091c5 + - 338c2041-4084-4ddd-b472-769a990ccf3e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.92517ms + duration: 63.077426ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,24 +150,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5454daca-533d-4085-b588-bc80888e8fe8 + - db484f97-f8a4-41ff-88e7-4028bf442d0d X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 79.544001ms + duration: 45.510795ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 235 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-trusting-golick","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-tender-golick","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96e54d6e-480e-4985-9981-4d550917887a + - 7ea8733a-523f-46aa-bd11-6508fa1255de status: 201 Created code: 201 - duration: 409.264496ms + duration: 824.373528ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61876112-5b4f-488c-b226-f1529524e8b7 + - 9d210412-3e08-4fc1-bb49-99aed13a7006 status: 200 OK code: 200 - duration: 104.228853ms + duration: 142.299792ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97368c0b-41bd-484d-b90d-0bb5e9e96cef + - e2d5f16b-c55c-4b7d-a4bb-3a34639a5fec status: 200 OK code: 200 - duration: 89.767271ms + duration: 136.434279ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6969dc4-562a-40f0-9f0a-7fe9dbb03395 + - d5245746-8adf-4e3f-bbdd-171343a68aaf status: 200 OK code: 200 - duration: 92.167037ms + duration: 131.523466ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 method: GET response: proto: HTTP/2.0 @@ -380,20 +380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 520 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48fe8db7-472f-40b6-a8f9-b6be899c28b7 + - 5dc6830e-0a90-4468-b803-6b524ed52f0d status: 200 OK code: 200 - duration: 54.092039ms + duration: 103.14506ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data method: GET response: proto: HTTP/2.0 @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254c771e-9943-427a-b72b-231b19f95a1b + - 8e2973fa-84de-4211-9210-4f213a9ce6ec status: 200 OK code: 200 - duration: 64.665609ms + duration: 97.055567ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics method: GET response: proto: HTTP/2.0 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,12 +501,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 537e5922-2097-419f-803a-eb7c6612d9f9 + - 1904034b-4ff8-4530-9883-fdff12aa22b1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.940204ms + duration: 102.831172ms - id: 10 request: proto: HTTP/1.1 @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 768b1cf9-1f4f-481b-9581-8d7ff53a962a + - 912e656b-4feb-41ef-a459-619099883c0c status: 200 OK code: 200 - duration: 48.995939ms + duration: 38.994191ms - id: 11 request: proto: HTTP/1.1 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3849a106-3a63-4b86-b382-aed932211e98 + - 75d2145f-ad09-407c-96c0-3524e4d21bf4 status: 200 OK code: 200 - duration: 56.95293ms + duration: 36.256019ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f960c85-85d9-4e00-ac58-84f43894e837 + - 1fbf393a-4039-47a3-a37c-2888aca35f9b status: 200 OK code: 200 - duration: 80.446302ms + duration: 114.299575ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 520 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 652ec8ea-65d2-42d7-8c07-411438eb95a0 + - 4aae3f31-baaa-40fd-81ff-f0d3c0255b91 status: 200 OK code: 200 - duration: 55.908405ms + duration: 99.21773ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data method: GET response: proto: HTTP/2.0 @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4745bd0d-c4a4-4768-a4f9-7e4639d98978 + - 79322b26-4519-44fa-b958-959afce11773 status: 200 OK code: 200 - duration: 45.91992ms + duration: 109.166346ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics method: GET response: proto: HTTP/2.0 @@ -787,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +799,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18ce672c-2714-491c-9592-f53a1c50c9e7 + - ea5d6b63-c56f-4e9d-9da4-39801df86ec9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 50.25977ms + duration: 93.248293ms - id: 16 request: proto: HTTP/1.1 @@ -840,9 +840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d384a988-93b1-436e-9d74-f1e7925f8eca + - fcfe7e66-d192-405c-b1fa-830e3c468415 status: 200 OK code: 200 - duration: 44.167023ms + duration: 39.329329ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c3275f4-686f-4201-8f85-bb8c8b8dfa47 + - b9ef3e7f-1849-490d-a676-c1d3431a3df1 status: 200 OK code: 200 - duration: 84.337371ms + duration: 151.143538ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 520 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e28a529-f23b-42e8-8b53-881db0d3df1a + - 294bd804-5d5b-459e-a6f4-9f2473f97ca6 status: 200 OK code: 200 - duration: 68.302195ms + duration: 117.304038ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bdca4f4-05c0-4fa0-936d-dd3c00fda532 + - d4f62871-99b5-40a8-96ae-56fbc580df5a status: 200 OK code: 200 - duration: 50.188388ms + duration: 100.979452ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 516f1304-fdbe-4515-962d-ac7d1afcb25e + - 500bff56-344b-449d-a0e2-b252aea16c6b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.596978ms + duration: 101.058771ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:27.398569+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,52 +1099,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e04ae77a-2cbb-4591-9970-a6bd81d0d261 + - 2d384001-fb01-4a71-a1f8-e1c53372bee4 status: 200 OK code: 200 - duration: 85.917228ms + duration: 176.37616ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2154 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action","href_result":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4","id":"3744b88a-f180-43f9-ad47-7fd1c0731404","progress":0,"started_at":"2025-10-08T23:04:29.596564+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:26.756559+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3744b88a-f180-43f9-ad47-7fd1c0731404 + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,48 +1148,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9b443e9-5584-46d5-a65d-7fdc00a1bc46 - status: 202 Accepted - code: 202 - duration: 184.422115ms + - 94422ad1-0b7d-4b58-b38b-08c49669962c + status: 200 OK + code: 200 + duration: 129.639738ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action","href_result":"/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","id":"149c98e9-9bb2-43c8-aa28-52fb91f409b6","progress":0,"started_at":"2025-10-15T15:03:29.799887+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2182" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:29 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/149c98e9-9bb2-43c8-aa28-52fb91f409b6 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 658f8aa3-dcab-4acc-b950-71b48224fa4b - status: 200 OK - code: 200 - duration: 76.251692ms + - 8e5773c8-e1b8-4b8f-9b25-1780a85b4da2 + status: 202 Accepted + code: 202 + duration: 267.678827ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2286 + content_length: 2176 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:29.594578+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2286" + - "2176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b32ed83-cb4c-4b60-a80e-73f194a14da1 + - c1cf50ff-a729-4601-983b-24a23762cd45 status: 200 OK code: 200 - duration: 95.897135ms + duration: 140.384886ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2286 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"702","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:29.594578+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2286" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc7e641b-a849-4cda-ba58-4890578b6548 + - 42bcbd60-46b3-47d1-92fd-3f2bd9ca79ce status: 200 OK code: 200 - duration: 102.598576ms + duration: 136.315977ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2286 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:29.449698+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"702","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:29.594578+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2286" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d83c3cea-7884-443c-a337-60fe36d16c52 + - 91f3d817-b00d-4214-ad53-0aebdf5011db status: 200 OK code: 200 - duration: 98.922514ms + duration: 124.2083ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2317 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:45.163860+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"702","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:44.843400+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2317" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc93576-dc3e-4a27-8291-f75fb6fa8fda + - ec1a05c0-c9bb-4e02-bec8-8544a18e953c status: 200 OK code: 200 - duration: 84.31464ms + duration: 139.680506ms - id: 28 request: proto: HTTP/1.1 @@ -1419,7 +1419,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action method: POST response: proto: HTTP/2.0 @@ -1429,7 +1429,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4/action","href_result":"/servers/3793679d-9a0a-4585-92e9-549744f9d6d4","id":"5a1363e3-ff0d-48e9-ae77-c72770f3e85b","progress":0,"started_at":"2025-10-08T23:04:50.252412+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd/action","href_result":"/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","id":"98d66246-207d-4ebf-a0de-c201b4f08c2e","progress":0,"started_at":"2025-10-15T15:03:45.619986+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1438,11 +1438,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a1363e3-ff0d-48e9-ae77-c72770f3e85b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/98d66246-207d-4ebf-a0de-c201b4f08c2e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75ec8c59-880b-4a2e-942e-3c77152cc44b + - 8c086f42-1c35-41fa-a058-c70281bd4709 status: 202 Accepted code: 202 - duration: 191.750442ms + duration: 271.96035ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2273 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.398569+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-trusting-golick","id":"3793679d-9a0a-4585-92e9-549744f9d6d4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"40","hypervisor_id":"1601","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5f","maintenances":[],"modification_date":"2025-10-08T23:04:50.108810+00:00","name":"tf-srv-trusting-golick","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.398569+00:00","export_uri":null,"id":"fe04477c-c3cf-4e96-9707-5b4d13def260","modification_date":"2025-10-08T23:04:27.398569+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"3793679d-9a0a-4585-92e9-549744f9d6d4","name":"tf-srv-trusting-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:26.756559+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-tender-golick","id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"702","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:27","maintenances":[],"modification_date":"2025-10-15T15:03:45.410357+00:00","name":"tf-srv-tender-golick","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:26.756559+00:00","export_uri":null,"id":"c75f4999-05a6-4411-a598-c6e190ca3745","modification_date":"2025-10-15T15:03:26.756559+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","name":"tf-srv-tender-golick"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 151e85f9-2a1f-4798-8c03-f99b2a5038eb + - 57564cb9-5165-45e0-bda2-44d5837d54c2 status: 200 OK code: 200 - duration: 93.017693ms + duration: 117.675632ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1529,7 +1529,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3793679d-9a0a-4585-92e9-549744f9d6d4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","type":"not_found"}' headers: Content-Length: - "143" @@ -1538,9 +1538,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caccef9e-b6ed-49ed-8a95-6dab49d00ef6 + - 16c4e13a-3523-402b-a124-0b53126a6dd6 status: 404 Not Found code: 404 - duration: 50.917913ms + duration: 46.742533ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 method: GET response: proto: HTTP/2.0 @@ -1578,7 +1578,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe04477c-c3cf-4e96-9707-5b4d13def260","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c75f4999-05a6-4411-a598-c6e190ca3745","type":"not_found"}' headers: Content-Length: - "143" @@ -1587,9 +1587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2d21bfb-8d6e-4520-a609-37142a5bd1bc + - 7873dfd7-134a-4807-aba6-828176528de8 status: 404 Not Found code: 404 - duration: 23.820686ms + duration: 28.186371ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe04477c-c3cf-4e96-9707-5b4d13def260 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c75f4999-05a6-4411-a598-c6e190ca3745 method: GET response: proto: HTTP/2.0 @@ -1627,7 +1627,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"fe04477c-c3cf-4e96-9707-5b4d13def260","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"c75f4999-05a6-4411-a598-c6e190ca3745","type":"not_found"}' headers: Content-Length: - "127" @@ -1636,9 +1636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d52857a-0389-4489-9e28-d1b8c41521b0 + - 73ebd456-975b-4736-8eb7-205e808e1cdc status: 404 Not Found code: 404 - duration: 19.927315ms + duration: 19.371689ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3793679d-9a0a-4585-92e9-549744f9d6d4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/738434b5-89e5-4dfd-8d5d-7e61ce9e88fd method: GET response: proto: HTTP/2.0 @@ -1676,7 +1676,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3793679d-9a0a-4585-92e9-549744f9d6d4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"738434b5-89e5-4dfd-8d5d-7e61ce9e88fd","type":"not_found"}' headers: Content-Length: - "143" @@ -1685,9 +1685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,7 +1695,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d434293-6f3f-46c8-8740-1ac4ea7666c3 + - a7961f38-80a7-4a22-8975-0c0c38c3e752 status: 404 Not Found code: 404 - duration: 43.846654ms + duration: 49.560114ms diff --git a/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml b/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml index c48cf810a..e8dade631 100644 --- a/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external-root-volume-update.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c900c7-2f0c-40b0-bb34-9e82cb5a664e + - 7af4de64-f0fd-46e5-8c1a-947c7ba57463 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 43.256889ms + duration: 74.588616ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad02ebc9-8e5f-40a1-8c32-4e2e279f9c04 + - 762c41c6-efe3-4122-9bb4-950c3c27beb7 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.748985ms + duration: 88.487531ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47808bac-c424-48a7-9500-bf532f8b49db + - 8f8fa993-94cc-4b9b-a88a-77b6341c9032 status: 200 OK code: 200 - duration: 37.369672ms + duration: 58.807745ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume-iops-update","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-block-external-root-volume-iops-update","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:51.448837+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1816" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6f9dab6-cc60-4586-bc1d-55426e920469 + - d461e62d-64d0-4eec-a2c8-3ce4fb1ed0a7 status: 201 Created code: 201 - duration: 806.27977ms + duration: 1.246606414s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:51.448837+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1816" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd61506a-3a65-476b-b318-a75dcfc8c738 + - 1be6020c-4a12-454a-b008-3b045a1509ca status: 200 OK code: 200 - duration: 96.628343ms + duration: 139.578753ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:51.448837+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1816" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1a1f017-2277-4135-9f3a-1d8caf8d43ff + - 61f6514f-a71b-4cd8-b397-f6f8fc3ee6f4 status: 200 OK code: 200 - duration: 80.341863ms + duration: 151.575036ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: PATCH response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -344,9 +344,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 742099eb-f7fe-4959-b101-3add3717767f + - cdc22c53-30b9-42ac-b281-b6cb32d3d834 status: 200 OK code: 200 - duration: 102.900221ms + duration: 115.39993ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1816 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:09.368924+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:51.448837+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1816" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94d4d508-8b40-47de-9fe2-5023b464b068 + - 98411f1e-58ac-4c7a-88cd-050c1d06c75f status: 200 OK code: 200 - duration: 80.336994ms + duration: 141.681292ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df3a65d-6d2d-4efd-9141-a27ff3d60a70 + - 80a8209a-7f5e-47d1-b310-f79c323bc889 status: 200 OK code: 200 - duration: 55.017112ms + duration: 95.38674ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action","href_result":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5","id":"8260a02d-b192-426d-8318-625a27ce8bcc","progress":0,"started_at":"2025-10-08T23:05:10.391852+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/action","href_result":"/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56","id":"09b08f6d-4586-4d2f-946c-355f013d4ff0","progress":0,"started_at":"2025-10-15T15:20:52.913133+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8260a02d-b192-426d-8318-625a27ce8bcc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/09b08f6d-4586-4d2f-946c-355f013d4ff0 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e35f2f20-fb9e-4cc7-b6da-95b49f5c130a + - 3d912664-2a7d-427e-a3a7-422b60a26eb7 status: 202 Accepted code: 202 - duration: 194.74935ms + duration: 285.409369ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -535,7 +535,7 @@ interactions: trailer: {} content_length: 1838 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:10.237327+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:52.685867+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1838" @@ -544,9 +544,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d80007be-a5ca-4f73-af1b-fe7d881e761b + - 43c5413d-c561-4c51-b944-112953b8c7f3 status: 200 OK code: 200 - duration: 115.651601ms + duration: 138.6768ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4ffa6fc-65ad-4ab0-b767-fe7913bf9e97 + - 48a50c69-e2de-44fd-91d0-5468c34332b5 status: 200 OK code: 200 - duration: 105.715924ms + duration: 172.698772ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a0fa1e8-f121-4f22-8a69-34c99acdba48 + - b4971934-d16d-46aa-a2a4-b433a76c8a60 status: 200 OK code: 200 - duration: 122.819345ms + duration: 157.728464ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3907b6bc-dbf2-4333-b0f7-e911ba9c7939 + - d4120cba-0792-48ca-b62e-5c130f7da2c3 status: 404 Not Found code: 404 - duration: 28.71985ms + duration: 36.133689ms - id: 14 request: proto: HTTP/1.1 @@ -721,7 +721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -731,7 +731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -740,9 +740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0a0cd0c-1ced-4e8b-8e4d-c73947fae699 + - 7a2c3a3e-d435-4964-ada3-005c92da7f31 status: 200 OK code: 200 - duration: 40.335416ms + duration: 92.415239ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b47ef08-9fe6-4fab-93c3-7a7e56bd0c54 + - b5556414-6be6-44ba-a4ec-0327a5e5d23b status: 200 OK code: 200 - duration: 57.066277ms + duration: 100.901098ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:20:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,12 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e734053a-4ec0-49db-b865-d8177f48f419 + - c39137af-10ea-48ec-a516-d04690c213d8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.029456ms + duration: 94.048036ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -880,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d19ba65f-7577-4ad9-b22e-212a48161361 + - d73ae90a-332e-400b-9d51-b0862fa55b88 status: 200 OK code: 200 - duration: 108.183684ms + duration: 122.192199ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcb0a365-2a1b-4db6-bb2c-ab5ffd809f37 + - 98b622f8-e3cd-437b-8442-707f8bc97135 status: 404 Not Found code: 404 - duration: 31.866467ms + duration: 46.203743ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f94daad8-0621-470b-b7f1-00027e20d17b + - 899049c5-52a3-4134-8b17-01849d77b1c6 status: 200 OK code: 200 - duration: 44.119976ms + duration: 80.206819ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data method: GET response: proto: HTTP/2.0 @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a479468e-5f4c-4e46-963b-d89b8d1a71f5 + - 3afc7884-9764-42b5-98f9-dab904d30d2e status: 200 OK code: 200 - duration: 56.850718ms + duration: 108.725364ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics method: GET response: proto: HTTP/2.0 @@ -1087,11 +1087,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,12 +1099,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebeb3ed0-0af7-4576-ad7f-d173ab4e3b3d + - 82aaab33-73dd-4cbe-a007-188ac4887852 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.097202ms + duration: 97.252365ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1129,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63dda565-d422-49ae-b238-9c86abfd6299 + - 15f4ccb4-5a96-4ebc-bbc4-d1106670a2ee status: 200 OK code: 200 - duration: 89.228974ms + duration: 414.219711ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10424817-4ed8-45f3-9574-3e58dee560ad + - 4e161414-8efe-4eca-83d8-f3b19c09c6d2 status: 404 Not Found code: 404 - duration: 28.765303ms + duration: 30.72541ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01bc7b8c-bf0c-4697-93f1-4ae168f4011a + - ff671a90-6eba-4c1b-8d42-c819908f0ca4 status: 200 OK code: 200 - duration: 41.146378ms + duration: 85.969853ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data method: GET response: proto: HTTP/2.0 @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a37062c-43a9-4604-b5ad-fbdea6a603ec + - 3a827272-e6ca-4eb4-a539-29353e26b985 status: 200 OK code: 200 - duration: 56.407126ms + duration: 103.855848ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics method: GET response: proto: HTTP/2.0 @@ -1336,11 +1336,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,12 +1348,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e57da581-60d9-41a3-b64a-453c41f47ad1 + - da9a79c0-95bf-44fb-b0d6-6ef20914ed9f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.979543ms + duration: 123.112226ms - id: 27 request: proto: HTTP/1.1 @@ -1370,7 +1370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1378,20 +1378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,29 +1399,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b41aa027-2d9b-4c6a-a10c-c05e3d49911c + - f561ae46-d5c4-4606-81d3-5533271111b4 status: 200 OK code: 200 - duration: 100.68292ms + duration: 144.446157ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 110 + content_length: 108 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","boot":false,"name":"tf-vol-practical-mestorf"}}}' + body: '{"volumes":{"0":{"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","boot":false,"name":"tf-vol-laughing-diffie"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: PATCH response: proto: HTTP/2.0 @@ -1429,20 +1429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 375e9a59-6970-4a30-b91f-97a0d1b5375f + - ae4e9a8c-c713-4d40-8c8b-3afbcd6d69ce status: 200 OK code: 200 - duration: 164.86157ms + duration: 239.931794ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4b7f3fd-6f74-44bd-865d-464f3f810b69 + - 54f4ef5d-de25-4adc-89a2-1e9763ac90b6 status: 200 OK code: 200 - duration: 103.384424ms + duration: 173.155681ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1527,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed881c21-0503-4223-b5bd-8adb7a3eebe7 + - e7845d1d-6f1c-4a5f-a109-57fdec2e256d status: 200 OK code: 200 - duration: 104.469544ms + duration: 135.196204ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1570,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: PATCH response: proto: HTTP/2.0 @@ -1580,7 +1580,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:09.477826Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:51.610123Z","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1589,9 +1589,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f66616cf-f7d1-42bd-8e61-4ad227477209 + - 2de3a906-d2f8-444b-931f-fdea2b576256 status: 200 OK code: 200 - duration: 133.845819ms + duration: 228.235204ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1627,20 +1627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7dea1777-80a7-4c98-9430-7550091ac042 + - d9ae4011-bcaa-4fef-98b4-df3b49284b56 status: 200 OK code: 200 - duration: 91.525006ms + duration: 166.144122ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1678,7 +1678,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f6cd964-5c27-4f1a-9cfb-f63c4e121ac8 + - 306012e2-9eaa-4d5a-b419-e60c7d94d9e1 status: 404 Not Found code: 404 - duration: 28.976234ms + duration: 23.605076ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1727,7 +1727,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:17.652697Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:01.398681Z","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1736,9 +1736,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc274a79-e81c-4f19-9dc0-ea088d3d37f7 + - 415995ca-139d-47e6-bcb6-fb8f258f9782 status: 200 OK code: 200 - duration: 50.482691ms + duration: 87.666791ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1766,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data method: GET response: proto: HTTP/2.0 @@ -1785,9 +1785,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d175d1b5-d62c-4679-a9c2-68a40940ad57 + - ecba94c4-aef5-451e-9b9a-153ee36f7f83 status: 200 OK code: 200 - duration: 65.294689ms + duration: 107.698446ms - id: 36 request: proto: HTTP/1.1 @@ -1815,7 +1815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics method: GET response: proto: HTTP/2.0 @@ -1834,11 +1834,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:17 GMT + - Wed, 15 Oct 2025 15:21:01 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1846,12 +1846,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dee970a-05cc-4629-9b5d-ab63f6c06304 + - 0d6a9485-e52b-4164-8615-df045da61151 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.172894ms + duration: 87.106088ms - id: 37 request: proto: HTTP/1.1 @@ -1868,7 +1868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -1876,20 +1876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1897,10 +1897,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7fa9564-a8c8-4e1a-ba24-f64dfebf6607 + - 8d7e5a25-a187-4399-95ef-e9616db1fec5 status: 200 OK code: 200 - duration: 106.606071ms + duration: 148.625107ms - id: 38 request: proto: HTTP/1.1 @@ -1917,7 +1917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1927,7 +1927,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1936,9 +1936,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,10 +1946,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820fc9f3-c14e-45f6-b5cb-fe64431b6c3b + - 329c2230-ff7b-41f7-b59f-76ed14eced23 status: 404 Not Found code: 404 - duration: 26.143947ms + duration: 36.852809ms - id: 39 request: proto: HTTP/1.1 @@ -1966,7 +1966,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -1976,7 +1976,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:09.477826Z","id":"43930ae1-76f4-42dd-b451-09e10ffe1a7f","product_resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:17.652697Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:51.610123Z","id":"faa6aa44-dfae-423a-aa1e-6628db7e4759","product_resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:01.398681Z","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1985,9 +1985,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,10 +1995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7184ce-eb61-487a-bf99-d3526caad20d + - 2fd9f931-6fd9-472f-a3fd-ef106297267e status: 200 OK code: 200 - duration: 46.687631ms + duration: 89.35402ms - id: 40 request: proto: HTTP/1.1 @@ -2015,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/user_data method: GET response: proto: HTTP/2.0 @@ -2034,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,10 +2044,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f58467d-ebb9-4e7c-b813-31810953086b + - 0d8148bf-b055-4094-b9db-140c0cd63fdc status: 200 OK code: 200 - duration: 66.247222ms + duration: 102.831284ms - id: 41 request: proto: HTTP/1.1 @@ -2064,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/private_nics method: GET response: proto: HTTP/2.0 @@ -2083,11 +2083,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2095,12 +2095,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f9eef0f-f842-4fdc-aa65-59f78b0aaa11 + - dc67e072-0b30-423b-8530-b8dc41f8bd00 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.515668ms + duration: 92.815782ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +2117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -2125,20 +2125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1972 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:12.819108+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1972" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,11 +2146,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09a2c916-65ee-44ea-a322-0722a050d312 + - 5313cf3a-7d87-411a-a16a-c2f89d64d8f6 status: 200 OK code: 200 - duration: 87.923474ms + duration: 161.896123ms - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1971 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:20:55.364211+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1971" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:21:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f99347a1-7999-4f3d-9fc6-d0a1c5ad1871 + status: 200 OK + code: 200 + duration: 135.182287ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2168,7 +2217,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/action method: POST response: proto: HTTP/2.0 @@ -2178,7 +2227,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5/action","href_result":"/servers/406b9d5e-481f-419c-86b1-57408aa47bd5","id":"ad7ceaa4-c7ef-4909-98b2-cf93dc39fd32","progress":0,"started_at":"2025-10-08T23:05:18.981551+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56/action","href_result":"/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56","id":"448b9d04-3605-48eb-bca7-2e40d42e7cfa","progress":0,"started_at":"2025-10-15T15:21:03.314980+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2187,11 +2236,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:21:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ad7ceaa4-c7ef-4909-98b2-cf93dc39fd32 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/448b9d04-3605-48eb-bca7-2e40d42e7cfa Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,11 +2248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 063e7fe4-2e2b-4e0f-8f77-725d8417f098 + - 8aea2e17-8878-439f-b6f4-0fb469981132 status: 202 Accepted code: 202 - duration: 171.055964ms - - id: 44 + duration: 322.76677ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2219,7 +2268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -2227,20 +2276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1935 + content_length: 1934 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:09.368924+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"406b9d5e-481f-419c-86b1-57408aa47bd5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"1001","node_id":"5","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9b","maintenances":[],"modification_date":"2025-10-08T23:05:18.849414+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:21:03.055122+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1935" + - "1934" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:21:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,11 +2297,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89d8c7b0-cecc-4729-8848-395cf22cfe1f + - 876f9daf-b517-43ba-87b4-2bfc9029b01c status: 200 OK code: 200 - duration: 104.550043ms - - id: 45 + duration: 158.031405ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1934 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:21:03.055122+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1934" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:21:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1fef940d-1897-4ba9-8d4b-776394746ef5 + status: 200 OK + code: 200 + duration: 129.983283ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1934 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:51.448837+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume-iops-update","id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"701","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f9","maintenances":[],"modification_date":"2025-10-15T15:21:03.055122+00:00","name":"tf-tests-instance-block-external-root-volume-iops-update","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1934" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:21:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4839dc9-16e3-4e8d-83f6-47c54c02166f + status: 200 OK + code: 200 + duration: 171.164202ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2268,7 +2415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -2278,7 +2425,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","type":"not_found"}' headers: Content-Length: - "143" @@ -2287,9 +2434,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:21:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,11 +2444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27c5fdc6-7345-4d1c-86bd-055ab8311059 + - 9c4ca96e-978f-4c95-9dea-4866a5533b4a status: 404 Not Found code: 404 - duration: 42.378128ms - - id: 46 + duration: 59.284734ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2317,7 +2464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -2327,7 +2474,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","type":"not_found"}' headers: Content-Length: - "143" @@ -2336,9 +2483,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:21:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2346,11 +2493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08d903a7-5317-406f-bfa8-dbdf94d5d375 + - ec6f3d8e-849c-4d6b-b1f5-45a1db37df74 status: 404 Not Found code: 404 - duration: 34.078584ms - - id: 47 + duration: 44.893873ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2366,7 +2513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: GET response: proto: HTTP/2.0 @@ -2376,7 +2523,7 @@ interactions: trailer: {} content_length: 500 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:09.477826Z","id":"6d03e5c6-8566-4aee-a0fc-555dbc9b26ee","last_detached_at":"2025-10-08T23:05:20.479635Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:05:20.479635Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:51.610123Z","id":"e0643ca3-5933-42ca-9fbd-690e7e03a0e8","last_detached_at":"2025-10-15T15:21:15.713719Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:15.713719Z","zone":"fr-par-1"}' headers: Content-Length: - "500" @@ -2385,9 +2532,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:21:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2395,11 +2542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aae71d6-d1e0-46c0-9811-5804d7248ca0 + - 3f6c162a-ee01-44e9-8da5-8ce1ef9e1573 status: 200 OK code: 200 - duration: 36.981612ms - - id: 48 + duration: 83.148145ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2415,7 +2562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6d03e5c6-8566-4aee-a0fc-555dbc9b26ee + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e0643ca3-5933-42ca-9fbd-690e7e03a0e8 method: DELETE response: proto: HTTP/2.0 @@ -2432,9 +2579,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:21:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,11 +2589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c73a45fa-9dc8-4a55-b59b-2c29e034cad4 + - 8f0ee206-a703-4ab3-aba0-3d05818424de status: 204 No Content code: 204 - duration: 98.693372ms - - id: 49 + duration: 159.14033ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2462,7 +2609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/406b9d5e-481f-419c-86b1-57408aa47bd5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/670401d7-bbd7-4dab-bd89-020cf2b04d56 method: GET response: proto: HTTP/2.0 @@ -2472,7 +2619,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"406b9d5e-481f-419c-86b1-57408aa47bd5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"670401d7-bbd7-4dab-bd89-020cf2b04d56","type":"not_found"}' headers: Content-Length: - "143" @@ -2481,9 +2628,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:21:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2491,7 +2638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93e677cb-d636-4f75-bfc2-3a47e6148e03 + - 751abe21-3c93-46b3-8808-dba61973b972 status: 404 Not Found code: 404 - duration: 55.383588ms + duration: 40.763686ms diff --git a/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml b/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml index 70caa5983..bcb18a443 100644 --- a/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external-root-volume.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fd791bf-eec6-4c32-882a-de8fe3f055cd + - d3a3fcf1-1b2f-4d82-a094-397e652de1ac X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.829469ms + duration: 82.681747ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7eb5b3-b179-48d2-b4ce-ba2ec914ec98 + - 75a88ad8-5714-4ff8-b494-4c0fe18ff0af X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 57.730199ms + duration: 89.111466ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d9e0798-f7f0-485f-8190-334a70a2300e + - 17be17b7-3ac2-4195-a94b-b00c4d5232e8 status: 200 OK code: 200 - duration: 43.015521ms + duration: 57.419047ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-block-external-root-volume","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-block-external-root-volume","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:02:59.962203+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1792" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d375dc4-ac8f-4533-bd30-ab4f60448bb0 + - b060efd4-4a55-4407-9773-b630de2397cc status: 201 Created code: 201 - duration: 617.138979ms + duration: 1.217244852s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:02:59.962203+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1792" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 614ce865-87d0-4e6b-bd1b-730098c8301d + - d950a5b9-7c90-4f78-94a1-d3d2a116db20 status: 200 OK code: 200 - duration: 94.184425ms + duration: 147.235675ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:02:59.962203+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1792" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55ddc047-1c62-434b-b4c6-5665f7ffa3d3 + - 3aff5cd8-b674-434a-8add-e32c7fa09e25 status: 200 OK code: 200 - duration: 122.497652ms + duration: 149.67157ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: PATCH response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 193 + content_length: 707 uncompressed: false - body: '{"details":[{"argument_name":"perf_iops","help_message":"can''t update perf_iops when volume is not available","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"updating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.140046Z","zone":"fr-par-1"}' headers: Content-Length: - - "193" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8736ad14-c70a-46d6-96a2-218a457cabfb - status: 400 Bad Request - code: 400 - duration: 98.922552ms + - e3c777d1-7b0c-42a2-a729-dd19600de2ae + status: 200 OK + code: 200 + duration: 387.396936ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1792 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:02:59.962203+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1792" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72605ec5-0d62-4486-ba10-37ccc5341a0c + - 769cfd57-3c55-4cb9-91e2-c9d03c649515 status: 200 OK code: 200 - duration: 93.291101ms + duration: 150.997075ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,48 +452,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fea63c6-d267-45c0-a34e-1ae66d5d1965 + - 33bdd91f-997d-4221-845e-62e16e15faa0 status: 200 OK code: 200 - duration: 41.510403ms + duration: 81.835552ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/action","href_result":"/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1","id":"a5026eb8-ee90-421c-85ba-d288833f1e5b","progress":0,"started_at":"2025-10-15T15:03:01.689436+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:03:01 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a5026eb8-ee90-421c-85ba-d288833f1e5b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 313ece0b-0186-4646-b978-ba55749f0f96 - status: 200 OK - code: 200 - duration: 51.425258ms + - b7feb6f9-f8dd-46cc-b459-5d8bf9cb9474 + status: 202 Accepted + code: 202 + duration: 250.638074ms - id: 10 request: proto: HTTP/1.1 @@ -521,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -529,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1814 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:01.497944+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da4567b-43b5-464f-9485-638984b95ada + - 9df5f0d2-7d26-4518-b369-425f724840c0 status: 200 OK code: 200 - duration: 45.697307ms + duration: 162.139686ms - id: 11 request: proto: HTTP/1.1 @@ -570,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -578,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -599,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9889608-42de-47d8-8766-00ea68bdcdce + - 4fc6e880-79bd-4252-89b0-8f3256fecd0c status: 200 OK code: 200 - duration: 40.995777ms + duration: 198.76585ms - id: 12 request: proto: HTTP/1.1 @@ -619,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -627,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -648,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67d026b0-e811-4e88-93c9-06ec590fa7c7 + - 140407b7-b838-4630-a713-e822356e4973 status: 200 OK code: 200 - duration: 40.78182ms + duration: 168.004275ms - id: 13 request: proto: HTTP/1.1 @@ -668,7 +672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -676,20 +680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -697,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b277aed-990e-4116-9967-db50eb895dcd - status: 200 OK - code: 200 - duration: 40.06928ms + - 36c12cb4-4475-4cb6-ad9c-ea70af5acc11 + status: 404 Not Found + code: 404 + duration: 33.259066ms - id: 14 request: proto: HTTP/1.1 @@ -717,7 +721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -725,20 +729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:39 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -746,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06694e25-3d44-4a5a-98bb-79a30d786ab0 + - b9ecc740-4f5d-471b-b0d7-9c4bd635560e status: 200 OK code: 200 - duration: 47.395589ms + duration: 88.356136ms - id: 15 request: proto: HTTP/1.1 @@ -766,7 +770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data method: GET response: proto: HTTP/2.0 @@ -774,20 +778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "706" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -795,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18b2afb3-95a0-4db8-b34f-1e21eb8fed3c + - 2fb70fc4-9472-49a6-be9d-e2ed81e331a6 status: 200 OK code: 200 - duration: 41.185876ms + duration: 128.345155ms - id: 16 request: proto: HTTP/1.1 @@ -815,7 +819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics method: GET response: proto: HTTP/2.0 @@ -823,20 +827,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "706" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:03:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -844,10 +850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa66bbf8-fcfb-44c4-8868-7c39ebaef3b3 + - bbd7068f-f071-4bb2-90bd-e08bad311dfc + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 45.842781ms + duration: 100.024894ms - id: 17 request: proto: HTTP/1.1 @@ -864,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -872,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -893,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ba3b8a9-6f82-4f4c-91ca-b9e2ba0785d0 + - 55c3dbfc-016b-4a4a-9496-575243a1ca5a status: 200 OK code: 200 - duration: 41.055041ms + duration: 166.143878ms - id: 18 request: proto: HTTP/1.1 @@ -913,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -921,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:00 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -942,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cce918ed-6805-4c9f-92da-2413c1d4c089 - status: 200 OK - code: 200 - duration: 45.67633ms + - 3b2708a3-180f-4c41-a93b-288609dae311 + status: 404 Not Found + code: 404 + duration: 23.632166ms - id: 19 request: proto: HTTP/1.1 @@ -962,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -970,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -991,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26772819-8fd4-4e07-a978-b1abfce08159 + - a6231265-0c6c-4766-9e5e-09add0e65f70 status: 200 OK code: 200 - duration: 44.653314ms + duration: 520.60353ms - id: 20 request: proto: HTTP/1.1 @@ -1011,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data method: GET response: proto: HTTP/2.0 @@ -1019,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "706" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1040,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 214d51a8-39b9-4738-a5b1-a4e55542447b + - cd0e7011-2c14-4b8e-b0ec-2a3f46b8cc0b status: 200 OK code: 200 - duration: 40.453695ms + duration: 119.551417ms - id: 21 request: proto: HTTP/1.1 @@ -1060,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics method: GET response: proto: HTTP/2.0 @@ -1068,20 +1076,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "706" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT + - Wed, 15 Oct 2025 15:03:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1089,10 +1099,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d3467da-5207-413d-be77-dbd6cca1f2ad + - 8afb4a47-c270-4100-a85f-c843e5c5b1ad + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 46.743183ms + duration: 96.235003ms - id: 22 request: proto: HTTP/1.1 @@ -1109,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1117,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1138,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb42c366-6b26-48cb-bd9b-38af65d1b61d + - fbc27645-dacd-4973-9725-4c4c5ef445ab status: 200 OK code: 200 - duration: 43.557321ms + duration: 198.068508ms - id: 23 request: proto: HTTP/1.1 @@ -1158,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1166,20 +1178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1187,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac768596-44ae-4290-840a-f74e327d00e1 - status: 200 OK - code: 200 - duration: 43.065741ms + - b40ff1e5-ced6-4922-886c-315879a15f71 + status: 404 Not Found + code: 404 + duration: 31.771379ms - id: 24 request: proto: HTTP/1.1 @@ -1207,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1215,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1236,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71b3a9c8-ada7-4d2d-bfed-af6352d1bc7e + - 395e7877-c3b5-4b60-a20e-1a785d12690b status: 200 OK code: 200 - duration: 63.790132ms + duration: 77.241059ms - id: 25 request: proto: HTTP/1.1 @@ -1256,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data method: GET response: proto: HTTP/2.0 @@ -1264,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "706" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1285,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61a9a482-5894-45c2-a68c-bfcdf448d8f2 + - 08c869a2-49db-43d2-8283-c6090df46903 status: 200 OK code: 200 - duration: 43.364963ms + duration: 117.9887ms - id: 26 request: proto: HTTP/1.1 @@ -1305,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics method: GET response: proto: HTTP/2.0 @@ -1313,20 +1325,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "706" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:40 GMT + - Wed, 15 Oct 2025 15:03:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1334,10 +1348,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40c0a88b-376d-436c-bb44-a0540c3fe49b + - ac76b8cc-2dbf-4654-b369-e5b2e8ec3ac5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 49.792085ms + duration: 94.461269ms - id: 27 request: proto: HTTP/1.1 @@ -1354,7 +1370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1362,20 +1378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1383,10 +1399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d87186af-a4d1-4f22-a8e4-02fdc5fa9733 + - c6f4ab20-5241-498f-bb73-207451432987 status: 200 OK code: 200 - duration: 43.952269ms + duration: 142.191426ms - id: 28 request: proto: HTTP/1.1 @@ -1403,7 +1419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1411,20 +1427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:50 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1432,10 +1448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ee7f558-b9c0-47ee-bb50-679ac4df1407 + - 00320025-d18c-4fa2-9c86-6b0499683f37 status: 200 OK code: 200 - duration: 39.712877ms + duration: 159.917223ms - id: 29 request: proto: HTTP/1.1 @@ -1452,7 +1468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1460,20 +1476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1481,10 +1497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83ba06c1-f7d3-4cd7-985b-02d84f22336a + - de1e6849-1f70-4d58-9dd2-296b8afe9da2 status: 200 OK code: 200 - duration: 39.906274ms + duration: 148.477224ms - id: 30 request: proto: HTTP/1.1 @@ -1501,7 +1517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1509,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1530,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd380d20-f80a-4ce0-8c78-77f55a542d26 - status: 200 OK - code: 200 - duration: 44.74264ms + - 5a951754-b5f2-4960-a7e5-5278c6ac7a52 + status: 404 Not Found + code: 404 + duration: 27.760152ms - id: 31 request: proto: HTTP/1.1 @@ -1550,7 +1566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1558,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:05 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1579,48 +1595,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19e86fe2-b9d5-4f20-9274-6dbc0979360a + - ff605a78-3cd6-43b9-a82f-6296e7232471 status: 200 OK code: 200 - duration: 41.358683ms + duration: 83.615465ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"size":60000000000}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 709 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"updating","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:01.248965Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "709" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:10 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1628,48 +1646,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f352306-73c3-45ee-aa0c-3c6b9f4c01f4 + - 2b021e1a-89f1-49b9-ae51-3fad2117c7fc status: 200 OK code: 200 - duration: 38.921258ms + duration: 1.297239168s - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 111 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"volumes":{"0":{"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","boot":false,"name":"tf-vol-peaceful-mendeleev"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:15 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1677,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 661b4461-5600-4d12-bd89-2cb9b23d6c30 + - 4e624643-feb8-4c0c-b80d-19265eb5d585 status: 200 OK code: 200 - duration: 45.401839ms + duration: 203.832654ms - id: 34 request: proto: HTTP/1.1 @@ -1697,7 +1717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1705,20 +1725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1886 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"resizing","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1886" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:20 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1726,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a11bc3f-4b06-4e40-b3cb-0fa25b438e64 + - afaf0f28-488c-4bef-9c0e-a07002d8d0f1 status: 200 OK code: 200 - duration: 57.718496ms + duration: 123.744628ms - id: 35 request: proto: HTTP/1.1 @@ -1746,7 +1766,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1754,20 +1774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1886 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"resizing","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1886" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:25 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca665aea-43ec-4db6-8e29-c8584bba7b81 + - a49fc6cc-d784-485e-ae9d-b538745b4807 status: 200 OK code: 200 - duration: 44.378271ms + duration: 132.904684ms - id: 36 request: proto: HTTP/1.1 @@ -1795,7 +1815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1803,20 +1823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:30 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45136d7e-68f3-419c-9a31-5d2e2006b3dc - status: 200 OK - code: 200 - duration: 54.19544ms + - 46f05031-dbc6-40c2-a1ff-c43306d8e4f6 + status: 404 Not Found + code: 404 + duration: 29.435693ms - id: 37 request: proto: HTTP/1.1 @@ -1844,7 +1864,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -1852,20 +1872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:11.392959Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:35 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1873,10 +1893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9b463b-4e28-455b-92b9-577dd111d7f7 + - dbfe66ce-5a04-4575-bafc-8251572333ce status: 200 OK code: 200 - duration: 53.045681ms + duration: 95.714781ms - id: 38 request: proto: HTTP/1.1 @@ -1893,7 +1913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data method: GET response: proto: HTTP/2.0 @@ -1901,20 +1921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "706" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:41 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1922,10 +1942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 371f074b-7d88-4900-9365-4632b99ed5e4 + - c9b0d59b-bb7a-48ed-95ef-210f234dda04 status: 200 OK code: 200 - duration: 49.778229ms + duration: 101.701671ms - id: 39 request: proto: HTTP/1.1 @@ -1942,7 +1962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics method: GET response: proto: HTTP/2.0 @@ -1950,20 +1970,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "706" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:46 GMT + - Wed, 15 Oct 2025 15:03:12 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1971,10 +1993,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cf58159-5804-4411-ad56-5e4f4da285d9 + - f86dd3d3-d7f0-4bcd-9981-d77716c881ac + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 41.791618ms + duration: 85.376256ms - id: 40 request: proto: HTTP/1.1 @@ -1991,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -1999,20 +2023,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:51 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2020,10 +2044,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4badc793-8df0-407c-86b4-2e68940ff017 + - 589a3613-d5ec-44f7-95cc-5e936b7f15a1 status: 200 OK code: 200 - duration: 53.891524ms + duration: 138.913286ms - id: 41 request: proto: HTTP/1.1 @@ -2040,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2048,20 +2072,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:56 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2069,10 +2093,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88744d7f-1663-4817-969e-828f434800bd - status: 200 OK - code: 200 - duration: 49.025963ms + - bf5cfb59-9ab5-4894-9d00-2942f0614617 + status: 404 Not Found + code: 404 + duration: 23.281921ms - id: 42 request: proto: HTTP/1.1 @@ -2089,7 +2113,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2097,20 +2121,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.140046Z","id":"dc14d9b6-c54b-4742-991e-3dccd7b98735","product_resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:11.392959Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:01 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2118,10 +2142,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bf35a47-8084-4a30-aac3-70422b986c5a + - b739a467-7534-4778-b01a-76a45fc324ce status: 200 OK code: 200 - duration: 47.96651ms + duration: 95.718969ms - id: 43 request: proto: HTTP/1.1 @@ -2138,7 +2162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/user_data method: GET response: proto: HTTP/2.0 @@ -2146,20 +2170,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "706" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:06 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2167,10 +2191,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 166fccac-fdde-4648-9a7d-6b1c92df1d33 + - ae2bb670-1fb5-4610-a9d5-df87cacd26b6 status: 200 OK code: 200 - duration: 42.210892ms + duration: 107.034164ms - id: 44 request: proto: HTTP/1.1 @@ -2187,7 +2211,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/private_nics method: GET response: proto: HTTP/2.0 @@ -2195,20 +2219,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "706" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:11 GMT + - Wed, 15 Oct 2025 15:03:12 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2216,10 +2242,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66e18831-903d-4039-ae83-abb27bb2af9e + - 9d545161-4644-48d3-8b80-67245adfb0fa + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 38.174608ms + duration: 95.443643ms - id: 45 request: proto: HTTP/1.1 @@ -2236,7 +2264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -2244,20 +2272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:16 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,10 +2293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc0f3d3a-20dc-48f6-9800-08ccd1aaded9 + - 19a0095e-7de9-4a6f-ae51-09e92fe56cd9 status: 200 OK code: 200 - duration: 59.408024ms + duration: 134.545572ms - id: 46 request: proto: HTTP/1.1 @@ -2285,7 +2313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -2293,20 +2321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1947 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:03.803934+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1947" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:21 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2314,48 +2342,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ade93f0-7854-43d5-9b0c-a759f1bb9793 + - 8528338c-1f3a-4153-996a-798f91b5bbcb status: 200 OK code: 200 - duration: 40.492568ms + duration: 168.369679ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 353 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1/action","href_result":"/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1","id":"708e6906-d491-4e1e-bdd0-7d0ca347a80a","progress":0,"started_at":"2025-10-15T15:03:13.645551+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:26 GMT + - Wed, 15 Oct 2025 15:03:13 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/708e6906-d491-4e1e-bdd0-7d0ca347a80a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2363,10 +2395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d424645d-2c52-4185-a3b1-ac10a982b89a - status: 200 OK - code: 200 - duration: 42.953294ms + - 36ed994a-1c3d-4107-810f-b8c0b2ea3056 + status: 202 Accepted + code: 202 + duration: 304.0727ms - id: 48 request: proto: HTTP/1.1 @@ -2383,7 +2415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -2391,20 +2423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 1910 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:02:59.962203+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fd","maintenances":[],"modification_date":"2025-10-15T15:03:13.401849+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "706" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:31 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,10 +2444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3afd56a0-2673-4022-8350-36319c554689 + - de013232-9b9e-4b22-b3eb-5bb92c2753e1 status: 200 OK code: 200 - duration: 45.77564ms + duration: 114.87569ms - id: 49 request: proto: HTTP/1.1 @@ -2432,7 +2464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -2440,20 +2472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:36 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,10 +2493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cc4712a-b9f1-46a0-956b-3906d652c454 - status: 200 OK - code: 200 - duration: 47.810266ms + - 7184b309-6457-4b5b-a3ff-f7f5ccfafcc5 + status: 404 Not Found + code: 404 + duration: 48.350523ms - id: 50 request: proto: HTTP/1.1 @@ -2481,7 +2513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2489,20 +2521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:41 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,10 +2542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e4ffab6-2e5a-4815-bf01-10a921c5fc85 - status: 200 OK - code: 200 - duration: 60.991071ms + - 3c7a37ec-7ebd-4740-b0b3-50a4c074d173 + status: 404 Not Found + code: 404 + duration: 25.560993ms - id: 51 request: proto: HTTP/1.1 @@ -2530,7 +2562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2538,20 +2570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 500 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.140046Z","id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","last_detached_at":"2025-10-15T15:03:15.258339Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":60000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:03:15.258339Z","zone":"fr-par-1"}' headers: Content-Length: - - "706" + - "500" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:46 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,10 +2591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a490f52-8cb1-40dc-98d8-b4325baa496f + - 6f691d96-ed35-46cd-a6fe-ed0642da600d status: 200 OK code: 200 - duration: 45.375146ms + duration: 90.9089ms - id: 52 request: proto: HTTP/1.1 @@ -2579,28 +2611,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "706" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:51 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,10 +2638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85028804-eb75-49a2-9e37-e84fef4c4a67 - status: 200 OK - code: 200 - duration: 46.684369ms + - 907539e3-3cbb-45b1-9aaa-f5b02aa1d987 + status: 204 No Content + code: 204 + duration: 136.145748ms - id: 53 request: proto: HTTP/1.1 @@ -2628,7 +2658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ae857bb7-e464-4239-8285-58a9cf9bcea1 method: GET response: proto: HTTP/2.0 @@ -2636,20 +2666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ae857bb7-e464-4239-8285-58a9cf9bcea1","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:08:56 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0593550-1685-4a0c-8865-7d3b3e968bbd - status: 200 OK - code: 200 - duration: 67.926879ms + - 642f84d6-f85d-4dfa-a24e-87ec9d4a1442 + status: 404 Not Found + code: 404 + duration: 58.245587ms - id: 54 request: proto: HTTP/1.1 @@ -2677,7 +2707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2685,20 +2715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:09:01 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,10 +2736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3869f00b-9dc4-436c-b11e-fca09356a984 - status: 200 OK - code: 200 - duration: 119.510488ms + - bac644f4-51f4-4698-938a-331deb31c45c + status: 404 Not Found + code: 404 + duration: 30.832553ms - id: 55 request: proto: HTTP/1.1 @@ -2726,203 +2756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 44739928-ab48-470e-ba19-65d1b13ee5f2 - status: 200 OK - code: 200 - duration: 43.093789ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 23f4587d-8938-408e-824f-ae74f3a5a371 - status: 200 OK - code: 200 - duration: 39.878496ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8a00f614-8e2f-458c-9305-3437e6056b1a - status: 200 OK - code: 200 - duration: 49.01001ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b497fe79-815c-4993-8c5f-0ddb1e8d2ea2 - status: 200 OK - code: 200 - duration: 42.532909ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/638157ee-3795-4cb2-b7ab-d37dd2dc391b method: GET response: proto: HTTP/2.0 @@ -2930,20 +2764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 706 + content_length: 127 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"638157ee-3795-4cb2-b7ab-d37dd2dc391b","type":"not_found"}' headers: Content-Length: - - "706" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:09:27 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2951,3388 +2785,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdf675f8-3fe8-438c-9f41-edce5228997d - status: 200 OK - code: 200 - duration: 36.623327ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 17281985-71bf-467d-aed4-0a7a549b8a3b - status: 200 OK - code: 200 - duration: 45.562237ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2ce3aad9-4287-4444-a58a-d58972b5f995 - status: 200 OK - code: 200 - duration: 41.879216ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dc405ec2-3a9c-44f3-910f-7dc26a435f61 - status: 200 OK - code: 200 - duration: 44.149129ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76d9a066-73bb-471f-a432-38ffd5f351e5 - status: 200 OK - code: 200 - duration: 39.131168ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7d65cdf9-e037-4deb-919d-712a3c013137 - status: 200 OK - code: 200 - duration: 53.636582ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:09:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 748d59b5-bc52-4402-afa7-a9a89258284f - status: 200 OK - code: 200 - duration: 42.351113ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - dd1df6a2-52bb-42ad-879e-44dbe150b957 - status: 200 OK - code: 200 - duration: 42.133286ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2f56377b-a09a-46ea-b912-e5172ef9f265 - status: 200 OK - code: 200 - duration: 51.726753ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ffbe4b0-3cf0-407e-8e87-2c67defd8897 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1792 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:08.758218+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-block-external-root-volume","id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:99","maintenances":[],"modification_date":"2025-10-08T23:05:08.758218+00:00","name":"tf-tests-instance-block-external-root-volume","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1792" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f0ecde44-4f0b-4dab-8f25-eb46dafb6015 - status: 200 OK - code: 200 - duration: 103.246052ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:09 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c228f3d5-21f1-49b6-b636-2a9f6667e548 - status: 200 OK - code: 200 - duration: 42.968912ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 84d25bd0-5ddc-48a7-8153-2c5f6939c347 - status: 200 OK - code: 200 - duration: 52.311899ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 497dcac7-a27e-4c75-9d69-41a847e1e081 - status: 200 OK - code: 200 - duration: 47.904854ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4bb12b1c-21aa-4523-8712-14907a466995 - status: 200 OK - code: 200 - duration: 39.165392ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - caed5a3d-4615-473c-b665-7bec3b2adeb5 - status: 200 OK - code: 200 - duration: 43.98823ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - de16616f-067d-4571-8f50-2a0fc9211277 - status: 200 OK - code: 200 - duration: 51.740306ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4c312180-6120-4da2-bff1-280ad9d8ea1c - status: 200 OK - code: 200 - duration: 48.062777ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2511043-77d2-4a2d-bdbc-432f9068e72f - status: 200 OK - code: 200 - duration: 57.073379ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21157ab7-b35d-4175-94ae-f00a147b421a - status: 200 OK - code: 200 - duration: 45.801826ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:10:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - abb55431-cdf8-455a-ab2f-3aee059e4d4e - status: 200 OK - code: 200 - duration: 51.413236ms - - id: 79 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ce8732d-c4a8-4f54-8ef4-ae58e272ea61 - status: 200 OK - code: 200 - duration: 47.664753ms - - id: 80 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d6076d9-f564-4f5b-a376-019747a1744f - status: 200 OK - code: 200 - duration: 47.705159ms - - id: 81 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2cca300-6f5a-4d3c-ac74-cd395b70c925 - status: 200 OK - code: 200 - duration: 36.985303ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5cd8aa97-54b3-4359-a1a6-ddee925a534d - status: 200 OK - code: 200 - duration: 50.798443ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2c5985ca-303e-41d8-9add-1dcdc69c0c1a - status: 200 OK - code: 200 - duration: 41.71291ms - - id: 84 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e4bd9662-c312-4f80-b229-c144101e26b1 - status: 200 OK - code: 200 - duration: 48.120822ms - - id: 85 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:30 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 846ae85c-c84f-4caa-bb30-733714660cb8 - status: 200 OK - code: 200 - duration: 41.307759ms - - id: 86 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:35 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b0c713a6-8884-4c34-92c0-4ba61a700084 - status: 200 OK - code: 200 - duration: 45.448625ms - - id: 87 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:40 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 63321e90-3d00-455d-9915-bddb666c9dce - status: 200 OK - code: 200 - duration: 47.346236ms - - id: 88 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52d5d073-0c00-405a-a90e-9773078be950 - status: 200 OK - code: 200 - duration: 47.469524ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:50 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c198c409-085c-404e-8ac6-cc977761c808 - status: 200 OK - code: 200 - duration: 46.093032ms - - id: 90 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:11:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 39dd5f13-f2d1-4d8a-99e1-e56bc989bd56 - status: 200 OK - code: 200 - duration: 47.548846ms - - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e51fb634-06c8-44bd-9808-846dbad3c6a7 - status: 200 OK - code: 200 - duration: 45.054183ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 183d3f13-33e8-41fc-908e-f58c0e956151 - status: 200 OK - code: 200 - duration: 54.783855ms - - id: 93 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5525b3f0-8134-4cf8-9b76-b4159bef4070 - status: 200 OK - code: 200 - duration: 40.557245ms - - id: 94 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 05b2d1f8-d9b8-47f2-93a2-14d3ad2a2594 - status: 200 OK - code: 200 - duration: 44.316853ms - - id: 95 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2540fed4-0121-41ec-b21e-b093e8348283 - status: 200 OK - code: 200 - duration: 41.039068ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c2107093-64a6-4644-9cfe-ce55a72f21e4 - status: 200 OK - code: 200 - duration: 40.511085ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 570e2980-33f3-426c-babe-e3b1bf7a869a - status: 200 OK - code: 200 - duration: 45.408809ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7bae5a80-d689-4a55-94c0-c196419791e1 - status: 200 OK - code: 200 - duration: 44.510184ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 48b89b6f-8141-4bcd-b06f-a3954833d188 - status: 200 OK - code: 200 - duration: 45.849925ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f03e9de-7d5f-499f-aa19-ca278c926307 - status: 200 OK - code: 200 - duration: 39.996714ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0420de49-103c-48ea-8e59-b31d61d396ac - status: 200 OK - code: 200 - duration: 59.027282ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:12:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4422c54d-1f7b-45c0-8887-72167a7bfc6f - status: 200 OK - code: 200 - duration: 49.269632ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3007a843-367f-49ab-9c46-69d7e5370dec - status: 200 OK - code: 200 - duration: 53.475566ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0d243d3b-61d6-41bc-bd74-e1341212ec20 - status: 200 OK - code: 200 - duration: 42.22112ms - - id: 105 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:11 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5146276-b9a9-4a7a-8c6b-3b68854cff60 - status: 200 OK - code: 200 - duration: 52.162265ms - - id: 106 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:16 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 18d55e0b-231b-40c2-9926-9a94d6ebe566 - status: 200 OK - code: 200 - duration: 49.572901ms - - id: 107 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1e40640a-c5d7-4ef9-943b-e6516b1b4670 - status: 200 OK - code: 200 - duration: 53.063516ms - - id: 108 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:26 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 635e6d88-c57a-415a-8816-04445e223c17 - status: 200 OK - code: 200 - duration: 61.705271ms - - id: 109 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6885050c-f6d3-4980-9ef3-7b723bf03e40 - status: 200 OK - code: 200 - duration: 38.276648ms - - id: 110 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 647e766f-1e08-4c97-a54f-78e669a9aaf1 - status: 200 OK - code: 200 - duration: 45.149697ms - - id: 111 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f4651d4b-6ddf-4d45-b3aa-c77bba8f3857 - status: 200 OK - code: 200 - duration: 53.053488ms - - id: 112 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4406a0e3-822b-4162-88b8-abd69909a92d - status: 200 OK - code: 200 - duration: 52.623324ms - - id: 113 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 902e3cc9-1735-4922-9598-08ed08c47e7a - status: 200 OK - code: 200 - duration: 49.721813ms - - id: 114 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:13:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 076d7f79-965a-43f6-b438-b5d835d052ce - status: 200 OK - code: 200 - duration: 54.838717ms - - id: 115 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:02 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8c6de0d2-9ddd-411b-b81d-646cf06fefbe - status: 200 OK - code: 200 - duration: 52.613126ms - - id: 116 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 51cdcc4a-286f-43fb-9680-8bd95af3bf98 - status: 200 OK - code: 200 - duration: 84.113085ms - - id: 117 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1d097763-6ae0-483d-8647-9225c7496f35 - status: 200 OK - code: 200 - duration: 63.851574ms - - id: 118 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 069ce316-7d89-4b73-911d-7aa82452a988 - status: 200 OK - code: 200 - duration: 128.433242ms - - id: 119 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24e95491-a9a4-4e62-84de-17ba9f4801ac - status: 200 OK - code: 200 - duration: 57.844929ms - - id: 120 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 820a65a3-3aa3-4cfa-a3f3-febd161215b8 - status: 200 OK - code: 200 - duration: 50.352397ms - - id: 121 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12219fdc-92c3-4809-9ce0-a659e4a6780e - status: 200 OK - code: 200 - duration: 40.590435ms - - id: 122 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 273e7d05-c2a1-4d14-8102-0fe0d33de7c0 - status: 200 OK - code: 200 - duration: 40.913391ms - - id: 123 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9b781b1-5acf-47e7-a07c-c19e21848978 - status: 200 OK - code: 200 - duration: 47.972741ms - - id: 124 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4e6f9d19-2a63-47b4-aec9-c49af9369ad7 - status: 200 OK - code: 200 - duration: 46.809979ms - - id: 125 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9c43333-22ad-4eb2-8f0e-a320bac1a082 - status: 200 OK - code: 200 - duration: 39.470233ms - - id: 126 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:14:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5595ead7-45b1-45f2-809a-8fd85f4809ec - status: 200 OK - code: 200 - duration: 44.903518ms - - id: 127 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:15:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5ac3ee28-4a75-44a0-b0a8-14b1f696ecc9 - status: 200 OK - code: 200 - duration: 58.782313ms - - id: 128 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2a83e34f-4f40-4b93-bca0-8f1c2a3d8222 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 706 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.840559Z","id":"2a83e34f-4f40-4b93-bca0-8f1c2a3d8222","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:08.840559Z","id":"38b71626-f23e-4577-9062-347ded6b1542","product_resource_id":"6ffbe4b0-3cf0-407e-8e87-2c67defd8897","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.840559Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "706" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:15:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8363df27-5bac-43d2-b2d5-5d273168f576 - status: 200 OK - code: 200 - duration: 68.679407ms + - c2bb80f9-ccbd-457f-8749-6d311c41caf8 + status: 404 Not Found + code: 404 + duration: 68.232683ms diff --git a/internal/services/instance/testdata/server-block-external.cassette.yaml b/internal/services/instance/testdata/server-block-external.cassette.yaml index 80cb2a31d..cac5bfe40 100644 --- a/internal/services/instance/testdata/server-block-external.cassette.yaml +++ b/internal/services/instance/testdata/server-block-external.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 146 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-great-banzai","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":10000000000},"tags":[]}' + body: '{"name":"tf-volume-wizardly-bassi","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":10000000000},"tags":[]}' form: {} headers: Content-Type: @@ -27,18 +27,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:41.652878Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf67ac40-51c3-49fc-922a-ed809e1cae39 + - 9171d1dc-e301-4b16-9674-9393013e2229 status: 200 OK code: 200 - duration: 161.401598ms + duration: 657.193483ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -76,18 +76,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:41.652878Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c9695fd-7959-4328-ba80-58e8275cbfc1 + - 0cfba883-c6cf-43ac-bc33-8612c3658c99 status: 200 OK code: 200 - duration: 41.382972ms + duration: 110.179764ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -125,18 +125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:41.652878Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -146,60 +146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437a33f8-6e11-42cb-900d-dcbf10cde908 + - 76ba6281-386e-4ef1-9ba6-0ac1174c0fad status: 200 OK code: 200 - duration: 47.955596ms + duration: 99.333281ms - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 420 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "420" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0f0955e7-7695-490c-acc3-edb38c7515c3 - status: 200 OK - code: 200 - duration: 43.725139ms - - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -223,18 +174,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Link: - ; rel="next",; rel="last" Server: @@ -246,13 +197,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1811d98-4e3d-4838-8c97-b6084454280f + - 1525af71-aeab-4c92-9d42-ebbfca43f7d0 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.118491ms - - id: 5 + duration: 41.025826ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -276,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -299,13 +250,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da5904e-a780-40ad-9079-dbd8d1954f7d + - 10a78f18-0cf2-4173-a72d-da914ca25228 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 44.195451ms - - id: 6 + duration: 41.545412ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -321,7 +272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -331,7 +282,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' headers: Content-Length: - "143" @@ -340,7 +291,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -350,11 +301,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ec8d74a-d5a1-45a2-bc11-8af71e93e091 + - ee12e644-4966-43e2-8838-fc05671cc356 status: 404 Not Found code: 404 - duration: 39.486488ms - - id: 7 + duration: 32.641138ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -370,7 +321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -378,18 +329,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:36.750778Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:41.652878Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -399,11 +350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29c6cd72-bb79-4919-ba25-6a60541db7fd + - 2c0dbd23-9659-4bbf-bdad-db3fca9c34ec status: 200 OK code: 200 - duration: 39.834523ms - - id: 8 + duration: 98.752551ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -438,7 +389,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -448,22 +399,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08edd57e-0584-46e8-b19f-4be9125c478a + - 92188acd-f0cc-444e-a6c9-aeda7f351d9c status: 200 OK code: 200 - duration: 57.674036ms - - id: 9 + duration: 55.987027ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 317 + content_length: 316 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-quizzical-edison","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-unruffled-moser","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false},"1":{"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -478,20 +429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1889 + content_length: 1887 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:43.285127+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1889" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:42 GMT + - Wed, 15 Oct 2025 15:20:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -501,11 +452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8b2b4cf-383a-459a-893f-5aa5465f89bd + - bb12ee6b-108a-4fc7-88da-11f9c8286059 status: 201 Created code: 201 - duration: 674.147672ms - - id: 10 + duration: 2.023973653s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -521,7 +472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -529,18 +480,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1889 + content_length: 1887 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:43.285127+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1889" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -550,11 +501,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6188e4c-789b-469e-a32c-da303f713cff + - f92e74de-137b-428b-a394-c2c748ca26b2 status: 200 OK code: 200 - duration: 109.470745ms - - id: 11 + duration: 155.804337ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -570,7 +521,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -578,18 +529,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1889 + content_length: 1887 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:42.423953+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:43.285127+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1889" + - "1887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -599,11 +550,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89fe3c0c-2138-4866-8765-f77ed2b30c36 + - ccd5bf3d-d738-4832-9b46-0d6f58d855c1 status: 200 OK code: 200 - duration: 101.966626ms - - id: 12 + duration: 150.132675ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -619,7 +570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -629,7 +580,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -638,7 +589,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -648,11 +599,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aaf74ec-4f3a-40f1-b0ed-1ba508952654 + - 27e44d89-2eb2-467b-987c-0a505dffbc77 status: 200 OK code: 200 - duration: 52.637497ms - - id: 13 + duration: 104.646071ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -668,7 +619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -676,18 +627,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 652 + content_length: 654 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "652" + - "654" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -697,11 +648,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8c5dafb-fa4e-4b52-bc7a-1273769096d2 + - 66c90cb2-50b9-48a8-97f9-3a5df8c9119b status: 200 OK code: 200 - duration: 37.599764ms - - id: 14 + duration: 78.870748ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -719,7 +670,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/action method: POST response: proto: HTTP/2.0 @@ -729,7 +680,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action","href_result":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a","id":"341db908-35f4-4f74-bac7-988a30041277","progress":0,"started_at":"2025-10-08T23:05:43.362430+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/action","href_result":"/servers/16b168a8-583a-44dc-b23c-e947bfbdc887","id":"6c8e25ff-f391-4d8a-849f-191b89ba1ca4","progress":0,"started_at":"2025-10-15T15:20:45.427378+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -738,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:45 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/341db908-35f4-4f74-bac7-988a30041277 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6c8e25ff-f391-4d8a-849f-191b89ba1ca4 Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -750,11 +701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb57120d-44e2-4871-9a7c-5f405f7a55b0 + - 522212cf-6178-4626-8f1b-efc7124cb53d status: 202 Accepted code: 202 - duration: 176.808531ms - - id: 15 + duration: 288.879575ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -770,7 +721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -778,18 +729,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1909 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:43.233693+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:45.220584+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1911" + - "1909" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:20:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -799,11 +750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19720453-3482-44b3-9a68-be4dfa38ac4d + - eab7493b-7f4b-4217-92a4-e4fb18105c0c status: 200 OK code: 200 - duration: 96.039447ms - - id: 16 + duration: 138.012941ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -819,7 +770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -827,18 +778,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -848,11 +799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 794fb685-6a50-4590-ad8e-02237cffaf2b + - 48cfc257-aefc-4639-a8f0-146f4a232447 status: 200 OK code: 200 - duration: 95.727388ms - - id: 17 + duration: 143.595617ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -868,7 +819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -876,18 +827,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -897,11 +848,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e044b40-09fb-4dca-b22a-e295012d719c + - 2991d7df-a4cb-4df6-8b98-4d672609d74f status: 200 OK code: 200 - duration: 96.859865ms - - id: 18 + duration: 145.159856ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -917,7 +868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -927,7 +878,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -936,7 +887,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -946,11 +897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb10dece-4db0-46c5-909d-ca8f1718ab3d + - d093ed3f-fb01-4b04-8fda-1d84ecff7e23 status: 404 Not Found code: 404 - duration: 30.535418ms - - id: 19 + duration: 32.385869ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -966,7 +917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -976,7 +927,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -985,7 +936,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -995,11 +946,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 190f6601-67c6-43f9-ac9a-297708dab315 + - c572dced-5295-44c1-8eeb-018d4b508b39 status: 200 OK code: 200 - duration: 52.047533ms - - id: 20 + duration: 78.108627ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1015,7 +966,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -1034,7 +985,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1044,11 +995,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d21870c-30a1-49a5-bbff-263acac548d2 + - 798c4d8b-c8cf-4921-80af-757db990d24e status: 200 OK code: 200 - duration: 60.461918ms - - id: 21 + duration: 89.352486ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1064,7 +1015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -1083,9 +1034,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1095,13 +1046,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 483414f8-9fc0-4d74-a76d-c1a7e205344e + - 4c9637a8-7ab6-46d2-8d3d-a211d86fc0e5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.601199ms - - id: 22 + duration: 101.62103ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1117,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -1125,18 +1076,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 652 + content_length: 654 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "652" + - "654" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1146,11 +1097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16b7c5d7-7f38-432b-a83c-f5d9a41ff1c0 + - e164cac4-fd0b-4427-943b-5002b34399cf status: 200 OK code: 200 - duration: 42.797821ms - - id: 23 + duration: 75.631034ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1166,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -1174,18 +1125,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1195,11 +1146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - facf4d5e-53cb-4e32-9168-5bd503c39008 + - 310ff39d-1513-47ac-8244-367208940421 status: 200 OK code: 200 - duration: 106.778015ms - - id: 24 + duration: 148.141917ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1215,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1225,7 +1176,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -1234,7 +1185,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1244,11 +1195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbfd115d-44a5-40d6-b605-53ec031c0c89 + - 41292443-9ff1-4ac1-ba89-dc1aac620a4b status: 404 Not Found code: 404 - duration: 28.435639ms - - id: 25 + duration: 32.900385ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1264,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1274,7 +1225,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1283,7 +1234,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1293,11 +1244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71173a34-e07f-49fd-b428-d484233dcded + - a5d03506-8ac8-42ec-9450-d11f8b066da9 status: 200 OK code: 200 - duration: 41.545321ms - - id: 26 + duration: 87.49636ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1313,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -1332,7 +1283,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1342,11 +1293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 584b4e40-d608-47ab-b2d7-a9875772474c + - 586125af-9d03-4088-9127-ed0ae9c4c978 status: 200 OK code: 200 - duration: 60.483188ms - - id: 27 + duration: 92.843433ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1362,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -1381,9 +1332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1393,13 +1344,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0983f966-b572-4106-8dcd-97cdd327ea67 + - bbc8278a-2e22-45eb-ba7c-688164e19573 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 66.829062ms - - id: 28 + duration: 104.376305ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1415,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -1423,18 +1374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 652 + content_length: 654 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "652" + - "654" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1444,11 +1395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb8e7f3a-6fbb-4293-8bab-48fe5ad7b90d + - 47a8ec62-d798-4ebf-981a-086a99974a41 status: 200 OK code: 200 - duration: 37.37031ms - - id: 29 + duration: 127.131755ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1464,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -1472,18 +1423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1493,11 +1444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20cbba81-34bb-4763-a0e7-a1c11e99f49b + - 3fc0ed8a-e671-4148-81aa-7c27ea3c698a status: 200 OK code: 200 - duration: 105.39324ms - - id: 30 + duration: 159.644592ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1513,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1523,7 +1474,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -1532,7 +1483,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1542,11 +1493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62faac15-0462-44ba-b617-6920cb39f75c + - 91735ee9-cd7a-472c-89e1-daefe6e46596 status: 404 Not Found code: 404 - duration: 35.853759ms - - id: 31 + duration: 25.90746ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1562,7 +1513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1572,7 +1523,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1581,7 +1532,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1591,11 +1542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 444aa143-64da-4a98-a4d1-8703c9f5b91d + - a7ef51b2-fc99-48d4-856e-3d1223a5c1ab status: 200 OK code: 200 - duration: 40.112096ms - - id: 32 + duration: 98.026378ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1611,7 +1562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -1630,7 +1581,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1640,11 +1591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8042c0e8-f217-4afa-bc1d-a1ba21dd734d + - 7a6c8f13-e2a3-4bfe-a0a4-43259bde9488 status: 200 OK code: 200 - duration: 69.980068ms - - id: 33 + duration: 315.301334ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1660,7 +1611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -1679,9 +1630,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:52 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1691,13 +1642,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea23d936-7d38-41d3-a174-3f3199d6764a + - 93fb2941-ef57-4eea-a8fa-bb518add8554 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.007599ms - - id: 34 + duration: 115.208059ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1713,7 +1664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -1721,18 +1672,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1742,29 +1693,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21677f53-edba-4905-a546-b4aceb81ca34 + - 8bacae26-8384-4b16-973c-df26074cf1d0 status: 200 OK code: 200 - duration: 104.38901ms - - id: 35 + duration: 132.171942ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 105 + content_length: 109 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-lucid-austin"}}}' + body: '{"volumes":{"0":{"id":"eb4df47d-a115-460d-9120-c57d1ef11833","boot":false,"name":"tf-vol-optimistic-kilby"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: PATCH response: proto: HTTP/2.0 @@ -1772,18 +1723,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1793,11 +1744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 864ad185-c8ec-4258-afbe-d89903073500 + - a794f28e-d24d-47ac-b21f-6b9c0bed7e23 status: 200 OK code: 200 - duration: 312.260199ms - - id: 36 + duration: 365.083458ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1813,7 +1764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -1821,18 +1772,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1842,11 +1793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 036e5c00-5ed2-4217-b693-c6b89b8bb948 + - ce007064-b189-4d66-b155-51873db3ed05 status: 200 OK code: 200 - duration: 106.05758ms - - id: 37 + duration: 180.266446ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1862,7 +1813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -1870,18 +1821,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1891,11 +1842,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 659caff8-b891-419c-859f-8a23ce7c441b + - f15aba18-241d-4d76-a7ad-97ef0d642e72 status: 200 OK code: 200 - duration: 95.360047ms - - id: 38 + duration: 142.782581ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1911,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1921,7 +1872,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -1930,7 +1881,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1940,11 +1891,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c08feb81-ecb5-4319-adce-917ec4f2537c + - 82eb412e-8347-4c6f-9f07-03ae4be324a1 status: 404 Not Found code: 404 - duration: 27.329881ms - - id: 39 + duration: 32.638644ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1960,7 +1911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -1970,7 +1921,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1979,7 +1930,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -1989,11 +1940,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 466bee07-59ab-4d8b-b954-00690b791eac + - 247553c0-3d42-4486-b58d-4298927ce6b7 status: 200 OK code: 200 - duration: 41.041116ms - - id: 40 + duration: 88.575708ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2009,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -2028,7 +1979,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:50 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2038,11 +1989,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c18a44-a533-439b-872c-940420fbe1e9 + - f2e3c6ee-cd6d-45d6-af8c-a9aecda5f2a6 status: 200 OK code: 200 - duration: 55.414249ms - - id: 41 + duration: 121.429224ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2058,7 +2009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -2077,9 +2028,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2089,13 +2040,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60376721-7f3f-4cb0-af2d-a0c4a93b1788 + - 58f34452-bf90-401b-bd49-5b4ec39d53a9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.643944ms - - id: 42 + duration: 90.80793ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2111,7 +2062,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2119,18 +2070,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2140,11 +2091,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f829663-f747-4860-930d-04e40b732282 + - 67fb39f6-18f2-46be-af2a-ad19aaff7e7e status: 200 OK code: 200 - duration: 41.245325ms - - id: 43 + duration: 82.889958ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2160,7 +2111,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -2168,18 +2119,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2189,11 +2140,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e3f331-77f8-43e1-bad2-b6bb727394a9 + - 32029547-7e2e-4a5d-821e-410857860be1 status: 200 OK code: 200 - duration: 103.152298ms - - id: 44 + duration: 144.931548ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2209,7 +2160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -2219,7 +2170,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -2228,7 +2179,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2238,11 +2189,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22dd5770-5131-4fed-8594-9dd972916f77 + - d35f31ab-cca6-41e3-809c-8dacd241c93f status: 404 Not Found code: 404 - duration: 32.537255ms - - id: 45 + duration: 30.778179ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2258,7 +2209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -2268,7 +2219,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2277,7 +2228,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2287,11 +2238,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a193fc-9649-469c-aead-900cc2cf3216 + - 2b62ce77-52a7-4799-9f82-347089d7c2e3 status: 200 OK code: 200 - duration: 41.923982ms - - id: 46 + duration: 83.179723ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2307,7 +2258,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -2326,7 +2277,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2336,11 +2287,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4dfc91a8-fe41-4181-aafe-a67607c2e241 + - 23e2d055-7818-4558-bd9f-c62c21fc6118 status: 200 OK code: 200 - duration: 46.932579ms - - id: 47 + duration: 107.512506ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2356,7 +2307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -2375,9 +2326,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:20:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2387,160 +2338,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf4caa03-664f-41ab-aeee-a41fcc6ae25a + - 57282e5f-8ebb-4de7-b4ba-cb0729928e21 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.957492ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "653" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f3af755-3f4c-4d6c-8305-b54f72651e1e - status: 200 OK - code: 200 - duration: 47.18223ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "653" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 65aae581-f817-47b5-adac-bd6ff800e480 - status: 200 OK - code: 200 - duration: 48.453374ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 653 - uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "653" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:06 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 08e3ffdd-0c8c-4933-9f0c-557dd461fa3c - status: 200 OK - code: 200 - duration: 43.342747ms - - id: 51 + duration: 99.915226ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2556,7 +2360,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2564,18 +2368,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:20:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2585,11 +2389,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aedec12-f69b-44d3-aefb-cc8792f29040 + - e129b899-4f1a-4cdf-80ef-2d45831100e7 status: 200 OK code: 200 - duration: 37.219856ms - - id: 52 + duration: 92.839096ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2605,7 +2409,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2613,18 +2417,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:16 GMT + - Wed, 15 Oct 2025 15:21:04 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2634,11 +2438,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8888d205-ca4a-4d65-9e1a-becc968e9bf3 + - f589df8e-cf46-4dfb-b4fe-616f9121db09 status: 200 OK code: 200 - duration: 49.620592ms - - id: 53 + duration: 126.897777ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2654,7 +2458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2662,18 +2466,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:21 GMT + - Wed, 15 Oct 2025 15:21:09 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2683,11 +2487,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f56fdbb-79e1-490f-8561-d7eb35d8f0ea + - 71c7f5b8-2be5-47de-99f2-1f533c38f908 status: 200 OK code: 200 - duration: 44.935834ms - - id: 54 + duration: 88.391303ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2703,7 +2507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2711,18 +2515,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:26 GMT + - Wed, 15 Oct 2025 15:21:14 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2732,11 +2536,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66c25d8f-644b-4118-b3c9-bdf41ebcc4aa + - 8da6149b-5d8f-4283-bf51-8173464c429e status: 200 OK code: 200 - duration: 46.599736ms - - id: 55 + duration: 115.710917ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2752,7 +2556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2760,18 +2564,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:31 GMT + - Wed, 15 Oct 2025 15:21:19 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2781,11 +2585,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e14d30e1-c35a-4115-98aa-0bc7f5afd7d8 + - 0921b3bf-4b9b-45fd-96d7-f6b32659ef3e status: 200 OK code: 200 - duration: 48.14156ms - - id: 56 + duration: 92.919489ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2801,7 +2605,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2809,18 +2613,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:36 GMT + - Wed, 15 Oct 2025 15:21:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2830,11 +2634,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7df98160-47e1-4f66-a14f-a9595f811f79 + - a28bab01-76b9-4656-af50-2a82bed96e8d status: 200 OK code: 200 - duration: 58.712737ms - - id: 57 + duration: 95.074036ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2850,7 +2654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2858,18 +2662,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:41 GMT + - Wed, 15 Oct 2025 15:21:30 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2879,11 +2683,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dea8d3d9-f0fe-4049-bbbd-7c48553ff089 + - 05127b9b-a26f-493c-ae6c-f9ef1f5b2ed0 status: 200 OK code: 200 - duration: 46.573594ms - - id: 58 + duration: 98.245623ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2899,7 +2703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2907,18 +2711,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 655 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":null,"name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.575587Z","id":"0e2c8a3c-1a9c-4546-81b4-512fde49898f","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.575587Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":null,"name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.617180Z","id":"9218c002-a070-4bd5-8fa5-9c9e4891b1b4","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"detaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.617180Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "655" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:21:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2928,11 +2732,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79cd807f-0f7b-443b-a095-d319aead3454 + - 2649638b-f16d-4fac-af3f-826b613eea07 status: 200 OK code: 200 - duration: 58.983526ms - - id: 59 + duration: 93.014489ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2948,7 +2752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -2956,18 +2760,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:37.979723Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -2977,11 +2781,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4f053c2-4212-4410-8ef2-64e404f23baf + - f31025d3-b4fc-4634-945b-4ad1117823d8 status: 200 OK code: 200 - duration: 45.041626ms - - id: 60 + duration: 83.645562ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2997,7 +2801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -3005,18 +2809,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:37.979723Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3026,11 +2830,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fab5212e-e9ce-44c9-a611-da57b7eccebc + - a94df8ec-6bd5-4918-81f6-1cab83555deb status: 200 OK code: 200 - duration: 58.153849ms - - id: 61 + duration: 87.852073ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3046,7 +2850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -3054,18 +2858,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3075,11 +2879,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9025c9d5-10b7-47df-9e50-cb956baecda2 + - d4b32c7b-3c4f-430d-b685-b4b4b1bc4047 status: 200 OK code: 200 - duration: 94.609193ms - - id: 62 + duration: 153.318619ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3095,7 +2899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3105,7 +2909,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -3114,7 +2918,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3124,11 +2928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a959725-2163-4014-af90-d8252a888d73 + - e644ec15-9c59-44b2-93f7-45aaad7d5242 status: 404 Not Found code: 404 - duration: 33.466689ms - - id: 63 + duration: 32.443388ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3144,7 +2948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3154,7 +2958,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3163,7 +2967,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3173,11 +2977,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4559ac2c-4dbc-43c5-bf91-855b93bcb593 + - 9dee3e17-b3ce-4b04-b27c-212331e1f5df status: 200 OK code: 200 - duration: 38.079181ms - - id: 64 + duration: 86.72732ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3193,7 +2997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -3212,7 +3016,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:40 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3222,11 +3026,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23ff6039-3dee-422b-aea3-c3dc629d6436 + - c9d12079-bdc6-426b-8d98-76611b41dcd2 status: 200 OK code: 200 - duration: 56.489436ms - - id: 65 + duration: 103.369499ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3242,7 +3046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -3261,9 +3065,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3273,13 +3077,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e90693c-dde5-4527-9b6b-385578a85f34 + - a28739ec-e3f6-42b8-b56e-7f824b672f01 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 45.591865ms - - id: 66 + duration: 95.443793ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3295,7 +3099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -3303,18 +3107,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1904 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1904" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3324,11 +3128,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdd0a4ab-5031-4253-8446-6d5fd643e8ee + - 4246853a-5a0b-49f6-960e-ae09398ce6fc status: 200 OK code: 200 - duration: 105.671249ms - - id: 67 + duration: 126.484085ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3344,7 +3148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -3354,7 +3158,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' headers: Content-Length: - "143" @@ -3363,7 +3167,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3373,11 +3177,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b214a52f-2673-4191-851b-b759235fdbd9 + - c6735473-9797-4c79-ac4e-1ebd4089580a status: 404 Not Found code: 404 - duration: 33.144963ms - - id: 68 + duration: 33.067942ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3393,7 +3197,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -3401,18 +3205,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:49.227959Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:37.979723Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:21:41 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3422,29 +3226,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fac57fb-0343-4b19-a1b9-d7681a513d95 + - d01afe90-ef79-4e75-a4a2-4b3dc2afffba status: 200 OK code: 200 - duration: 39.556517ms - - id: 69 + duration: 80.895957ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 185 + content_length: 188 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-nervous-hypatia"},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"}}}' + body: '{"volumes":{"0":{"id":"eb4df47d-a115-460d-9120-c57d1ef11833","boot":false,"name":"tf-vol-vigorous-blackwell"},"1":{"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","volume_type":"sbs_volume"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: PATCH response: proto: HTTP/2.0 @@ -3452,18 +3256,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1985 + content_length: 1983 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1985" + - "1983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3473,11 +3277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4ecd005-9b9c-4a4f-a718-72bfbd0fa984 + - 9aa42f20-eaaf-4a87-a444-583abd8f1910 status: 200 OK code: 200 - duration: 348.212335ms - - id: 70 + duration: 887.040823ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3493,7 +3297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -3501,18 +3305,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1985 + content_length: 1983 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1985" + - "1983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3522,11 +3326,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4579c3b7-019d-42c6-b0b7-d9cccb6700a7 + - 3fdce64a-52e1-4663-9d7c-ee767eab1709 status: 200 OK code: 200 - duration: 103.660515ms - - id: 71 + duration: 172.063518ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3542,7 +3346,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -3550,18 +3354,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1985 + content_length: 1983 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1985" + - "1983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3571,11 +3375,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 630bd559-a18d-4813-ac0e-3601989146dc + - 447241cb-e6c2-433d-bc17-e61c9ed06452 status: 200 OK code: 200 - duration: 548.997429ms - - id: 72 + duration: 182.088548ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3591,7 +3395,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3601,7 +3405,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -3610,7 +3414,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3620,11 +3424,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8386ebfa-9b2e-43a5-9084-b8c7fdb13a5b + - e8451fdc-41e3-4429-848c-f00a1186946c status: 404 Not Found code: 404 - duration: 31.292362ms - - id: 73 + duration: 25.894157ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3640,7 +3444,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3650,7 +3454,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3659,7 +3463,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3669,11 +3473,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 771d44c4-7cf1-47e9-a2ed-b0b4b527d4f5 + - 621a8e79-1fe3-4d79-97f0-f89277173b0c status: 200 OK code: 200 - duration: 40.731483ms - - id: 74 + duration: 93.300427ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3689,7 +3493,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -3708,7 +3512,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3718,11 +3522,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8272df23-2ccd-4801-941d-e1415b1c83eb + - d947d816-03e1-4a07-8b4d-0dca98ce4977 status: 200 OK code: 200 - duration: 53.949993ms - - id: 75 + duration: 93.154483ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3738,7 +3542,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -3757,9 +3561,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:53 GMT + - Wed, 15 Oct 2025 15:21:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3769,13 +3573,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 674c39f1-12dd-4065-abb9-eb6403323c2a + - 8cdfe6b3-eee0-4411-9fa6-ef549745acdd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.148859ms - - id: 76 + duration: 104.896087ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3791,7 +3595,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -3799,18 +3603,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 679 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:21:41.849098Z","id":"e1b7e5dd-042d-4983-abbe-620d9f60c4b5","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:41.849098Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "679" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3820,11 +3624,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8128cc69-5b05-48e0-bade-48e22392d189 + - 2f4986fa-7161-49eb-b282-16cbc2150443 status: 200 OK code: 200 - duration: 50.252145ms - - id: 77 + duration: 85.776645ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3840,7 +3644,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -3848,18 +3652,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3869,11 +3673,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e48a156-1c21-49f7-9117-e9caedd65038 + - 0974699a-b9f7-4a8d-b6ac-b9323da7e1e8 status: 200 OK code: 200 - duration: 100.358078ms - - id: 78 + duration: 138.85418ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3889,7 +3693,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3899,7 +3703,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -3908,7 +3712,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3918,11 +3722,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fd4595c-9f5b-42d2-85ec-c2b15585a1ca + - e178625c-82c3-4eee-985f-2be1264c5d7c status: 404 Not Found code: 404 - duration: 32.263912ms - - id: 79 + duration: 33.844831ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3938,7 +3742,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -3948,7 +3752,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3957,7 +3761,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -3967,11 +3771,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0d6fb4b-ee5b-4301-b447-a431c66ad321 + - 85efb661-2215-4683-bffe-9d561c3d55c9 status: 200 OK code: 200 - duration: 38.108254ms - - id: 80 + duration: 79.168503ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3987,7 +3791,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -4006,7 +3810,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4016,11 +3820,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22c2a357-72cc-443d-b401-066dd93dd06d + - eb76f0f7-b304-44d6-b61b-66006d86cc87 status: 200 OK code: 200 - duration: 57.514484ms - - id: 81 + duration: 118.340069ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4036,7 +3840,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -4055,9 +3859,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4067,13 +3871,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0674597-a170-47b4-b073-fe0f7ee48ed9 + - ec36479d-bd4c-46c4-9001-b8d7ff3398c4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.15273ms - - id: 82 + duration: 105.228671ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4089,7 +3893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -4097,18 +3901,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 679 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:21:41.849098Z","id":"e1b7e5dd-042d-4983-abbe-620d9f60c4b5","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:41.849098Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "679" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4118,11 +3922,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 713aabdc-4604-4f96-81cf-d4ca6a00ae21 + - bbc4f6aa-34c9-4041-b614-31f19596eab4 status: 200 OK code: 200 - duration: 51.727777ms - - id: 83 + duration: 86.516114ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4138,7 +3942,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -4146,18 +3950,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4167,11 +3971,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b458b78-c473-45f9-8cdf-d88cf8df55ae + - 47642ec5-b477-4826-a3cb-30f36fcb3c2a status: 200 OK code: 200 - duration: 131.137009ms - - id: 84 + duration: 162.305831ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4187,7 +3991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -4197,7 +4001,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -4206,7 +4010,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4216,11 +4020,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d464cf9-17e8-44a5-96df-05c9db86ada4 + - d49e9ae2-c79d-4091-b84a-ab59507f2e59 status: 404 Not Found code: 404 - duration: 33.710209ms - - id: 85 + duration: 30.363502ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4236,7 +4040,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -4246,7 +4050,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4255,7 +4059,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4265,11 +4069,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01e52b20-d08b-46d6-93db-f0a5ca5f8e6b + - e92a82de-1432-4555-8da1-c74db89d272c status: 200 OK code: 200 - duration: 38.891515ms - - id: 86 + duration: 99.141679ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4285,7 +4089,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -4304,7 +4108,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4314,11 +4118,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be4c1ff-51fe-4a7c-a622-199b17953a65 + - d686c842-c8e8-4f11-a877-4c6e1e510ab7 status: 200 OK code: 200 - duration: 53.583894ms - - id: 87 + duration: 114.834144ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4334,7 +4138,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -4353,9 +4157,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:21:44 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4365,24 +4169,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2456e800-26be-449e-8c2e-5d042ecba965 + - d178ae77-4f4e-49f1-8a59-df6025d0e3f6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 68.077236ms - - id: 88 + duration: 101.550743ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 145 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-angry-kare","perf_iops":15000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_empty":{"size":15000000000},"tags":[]}' + body: '{"name":"tf-volume-vigorous-hoover","perf_iops":15000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_empty":{"size":15000000000},"tags":[]}' form: {} headers: Content-Type: @@ -4397,18 +4201,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:44.772306Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:21:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4418,11 +4222,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b6f70b3-3953-4117-99e4-0e0a7adb41fa + - 8cfa2ff6-6e90-4c6c-b406-98ff1d6cc474 status: 200 OK code: 200 - duration: 119.72803ms - - id: 89 + duration: 559.137772ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4438,7 +4242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -4446,18 +4250,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 419 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"creating","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:44.772306Z","zone":"fr-par-1"}' headers: Content-Length: - - "419" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:55 GMT + - Wed, 15 Oct 2025 15:21:45 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4467,11 +4271,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 104aae21-babf-44fa-903b-10131f1fca49 + - 5326d176-4a4b-45ba-8914-5c37a872edf0 status: 200 OK code: 200 - duration: 43.692226ms - - id: 90 + duration: 84.385482ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4487,7 +4291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -4495,18 +4299,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 425 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:44.772306Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4516,11 +4320,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8bf45d2-c220-4004-aad4-bbe178e87e55 + - d6918aa5-8186-4a80-8a7f-a584ba8b5e43 status: 200 OK code: 200 - duration: 40.586243ms - - id: 91 + duration: 95.48486ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4536,7 +4340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -4544,18 +4348,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 425 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:44.772306Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4565,11 +4369,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cdf8296-2674-4875-9596-05b62b72a6c7 + - cc0bd6d7-efdb-4e95-b893-e7d8037ff136 status: 200 OK code: 200 - duration: 46.59446ms - - id: 92 + duration: 81.368085ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,7 +4389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -4593,18 +4397,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2045 + content_length: 2043 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2045" + - "2043" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4614,11 +4418,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e758565-66b1-4dda-81a5-016cdb4a20b8 + - cd1dde14-48c4-4d5d-bddb-325cfa14c420 status: 200 OK code: 200 - duration: 109.677516ms - - id: 93 + duration: 138.908794ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4634,7 +4438,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -4644,7 +4448,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' headers: Content-Length: - "143" @@ -4653,7 +4457,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4663,11 +4467,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b228c86-6e1e-4234-b979-fdca64eb5f59 + - 2fbd3c44-4106-4549-ba0d-5bfeca441a53 status: 404 Not Found code: 404 - duration: 29.40744ms - - id: 94 + duration: 29.926471ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4683,7 +4487,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -4691,18 +4495,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 679 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:21:41.849098Z","id":"e1b7e5dd-042d-4983-abbe-620d9f60c4b5","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:41.849098Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "679" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4712,11 +4516,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73cda5db-a0c0-4d66-8a3e-2998d79ae307 + - 7b9d6778-2315-4bb8-bb49-b2ddb7a0d46e status: 200 OK code: 200 - duration: 39.151837ms - - id: 95 + duration: 82.438004ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4732,7 +4536,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -4742,7 +4546,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9d190c3-6517-42dd-91f2-50681d8f8101","type":"not_found"}' headers: Content-Length: - "143" @@ -4751,7 +4555,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4761,11 +4565,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fa8556e-9c0c-4cef-b1fb-c4e1a5ff87f1 + - 4ee9969b-a9ac-4e0c-b18a-75c9a853cb4d status: 404 Not Found code: 404 - duration: 32.8091ms - - id: 96 + duration: 26.423852ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4781,7 +4585,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -4789,18 +4593,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 425 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:06:55.279631Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:44.772306Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:21:50 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4810,29 +4614,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d2870b7-c52f-4c58-a5c6-07c03849d94b + - 4609502b-2ff4-4a1a-b86a-2261ffb1f49c status: 200 OK code: 200 - duration: 44.774309ms - - id: 97 + duration: 89.55916ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 264 + content_length: 265 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"c28cab87-2079-455b-bc76-fb79f4694d40","boot":false,"name":"tf-vol-objective-gagarin"},"1":{"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","volume_type":"sbs_volume"},"2":{"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","volume_type":"sbs_volume"}}}' + body: '{"volumes":{"0":{"id":"eb4df47d-a115-460d-9120-c57d1ef11833","boot":false,"name":"tf-vol-optimistic-goodall"},"1":{"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","volume_type":"sbs_volume"},"2":{"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","volume_type":"sbs_volume"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: PATCH response: proto: HTTP/2.0 @@ -4840,18 +4644,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2124 + content_length: 2122 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2124" + - "2122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4861,11 +4665,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97a2c164-1a5e-467f-af77-cdf9311ee87b + - 3d467768-d5ed-457d-94ab-4f3bf7e78485 status: 200 OK code: 200 - duration: 366.733926ms - - id: 98 + duration: 446.126766ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4881,7 +4685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -4889,18 +4693,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2124 + content_length: 2122 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2124" + - "2122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4910,11 +4714,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63dd8045-0a0e-413a-8464-78698128a7cb + - ea741ade-74a5-456a-b571-bebfe2b40ed9 status: 200 OK code: 200 - duration: 117.808222ms - - id: 99 + duration: 156.019113ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4930,7 +4734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -4938,18 +4742,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2124 + content_length: 2122 uncompressed: false - body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":[],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"attaching","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2124" + - "2122" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -4959,11 +4763,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc7b9b0f-365a-458a-8afa-3b54f573d673 + - 8c5d34dd-df43-414d-8711-5b5599b182c0 status: 200 OK code: 200 - duration: 108.802475ms - - id: 100 + duration: 144.623048ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4979,7 +4783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -4989,7 +4793,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -4998,7 +4802,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5008,11 +4812,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c9a5fab-e924-490c-b514-d1d7d15b7f34 + - ca9f4f92-98ba-4cfd-87a3-758c4f832489 status: 404 Not Found code: 404 - duration: 35.733867ms - - id: 101 + duration: 27.671927ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5028,7 +4832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -5038,7 +4842,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -5047,7 +4851,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5057,11 +4861,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33c3d98d-0c84-4af9-a8ca-09ca933ab0a9 + - 004ee87d-8b04-4e55-99d2-b0a214216b38 status: 200 OK code: 200 - duration: 42.590414ms - - id: 102 + duration: 86.611153ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5077,7 +4881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -5096,7 +4900,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5106,11 +4910,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b75b3941-de18-4187-aba8-54eadb2ef31a + - 630d553f-c1f4-492d-b0ae-fd6d2811f801 status: 200 OK code: 200 - duration: 53.378924ms - - id: 103 + duration: 104.580976ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5126,7 +4930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -5145,9 +4949,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:51 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5157,13 +4961,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a134b93-4272-4ebb-9a59-d4dfbed96737 + - a3599dd7-ed20-4a1a-8ea8-13562d5fe28e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.174852ms - - id: 104 + duration: 100.905362ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5179,7 +4983,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -5187,18 +4991,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 653 + content_length: 679 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:07:00.885758Z","id":"9efded82-90dd-4a00-a195-c19f6cc55fd4","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:00.885758Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:37.979723Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:21:41.849098Z","id":"e1b7e5dd-042d-4983-abbe-620d9f60c4b5","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:41.849098Z","zone":"fr-par-1"}' headers: Content-Length: - - "653" + - "679" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5208,11 +5012,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 457e0747-ed09-40ae-84cf-52eb34538432 + - f7bebfa9-f36e-40ae-ac68-93d177fb4245 status: 200 OK code: 200 - duration: 50.016116ms - - id: 105 + duration: 78.276728ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5228,7 +5032,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -5236,18 +5040,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 677 + content_length: 657 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:06:49.227959Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:52.936001Z","id":"396e8d3a-d5d3-4998-8617-4d3b61533503","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:52.936001Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":null,"name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:21:51.046596Z","id":"f8da6716-8b1c-47a7-b05b-db9ba351739c","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:51.046596Z","zone":"fr-par-1"}' headers: Content-Length: - - "677" + - "657" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:01 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5257,11 +5061,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df78c4ff-ef6d-4f2c-b76f-d464a5064181 + - b51c28d5-002d-43e8-ba4f-c8fe4bf65ef3 status: 200 OK code: 200 - duration: 50.981804ms - - id: 106 + duration: 90.650049ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5277,7 +5081,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -5285,18 +5089,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 652 + content_length: 2182 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":null,"name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:07:00.885758Z","id":"9efded82-90dd-4a00-a195-c19f6cc55fd4","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"in_use","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:00.885758Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "652" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:06 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5306,11 +5110,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9be9d1f2-5c53-4856-be09-3efdc620c234 + - 9072308e-0a54-4356-9798-5c57f5a21fdb status: 200 OK code: 200 - duration: 45.973829ms - - id: 107 + duration: 165.757795ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5326,7 +5130,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -5334,18 +5138,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - - "2184" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5355,11 +5159,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22deb7ef-7004-4822-8de4-d25b7b04170a - status: 200 OK - code: 200 - duration: 123.139343ms - - id: 108 + - 7de0eba4-bba7-4c7f-b55c-77b75ee9f888 + status: 404 Not Found + code: 404 + duration: 34.848166ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5375,7 +5179,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -5383,18 +5187,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 705 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:20:43.408485Z","id":"71005327-0a15-445b-ad96-ec2d6e898b4e","product_resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:20:43.408485Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5404,11 +5208,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bd5e0a-4b1a-4e47-a860-4e832019f3d7 - status: 404 Not Found - code: 404 - duration: 34.794146ms - - id: 109 + - 391b8b67-9440-402b-b34c-b40cbcd9fe7f + status: 200 OK + code: 200 + duration: 81.190631ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5424,7 +5228,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/user_data method: GET response: proto: HTTP/2.0 @@ -5432,18 +5236,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:42.511895Z","id":"5f9bb3ad-cf7e-41c5-8695-fcb5c4735d40","product_resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:42.511895Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "705" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5453,11 +5257,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d5f3cc4-8eb1-46ff-b92d-3e28086fd03f + - 936c91a2-5490-4dd5-9c40-6d3412d5c0c2 status: 200 OK code: 200 - duration: 39.69457ms - - id: 110 + duration: 92.27442ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5473,7 +5277,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/private_nics method: GET response: proto: HTTP/2.0 @@ -5481,18 +5285,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:52 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5502,11 +5308,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2c8bb79-8e5a-4726-9563-37e3090cfe0b + - 743bf4eb-0eac-4df8-b5b8-6c9033b6cd72 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 66.535015ms - - id: 111 + duration: 109.107358ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5522,7 +5330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -5530,20 +5338,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2182 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:21:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5553,13 +5359,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73ab210a-e426-4ab5-888d-9d117d51a00b - X-Total-Count: - - "0" + - 76364cd4-da9c-4c82-8f57-51ecbb5bbdb5 status: 200 OK code: 200 - duration: 57.323149ms - - id: 112 + duration: 155.723438ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5575,7 +5379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -5583,18 +5387,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2184 + content_length: 2182 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:05:47.220059+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:20:49.510707+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2184" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5604,11 +5408,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0dd36f0e-fc63-4d13-b5a2-bad3bc907492 + - 6fc68868-e37a-41d7-be03-5e9e6a978ba1 status: 200 OK code: 200 - duration: 107.324744ms - - id: 113 + duration: 149.244188ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5626,7 +5430,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/action method: POST response: proto: HTTP/2.0 @@ -5636,7 +5440,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a/action","href_result":"/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a","id":"b0530b8d-5ac4-4b2d-80ed-8be1e2077505","progress":0,"started_at":"2025-10-08T23:07:07.885358+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/16b168a8-583a-44dc-b23c-e947bfbdc887/action","href_result":"/servers/16b168a8-583a-44dc-b23c-e947bfbdc887","id":"1d91c6d8-ff48-42d8-a00f-02ee9a0e2276","progress":0,"started_at":"2025-10-15T15:21:53.532605+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -5645,9 +5449,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:07 GMT + - Wed, 15 Oct 2025 15:21:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0530b8d-5ac4-4b2d-80ed-8be1e2077505 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d91c6d8-ff48-42d8-a00f-02ee9a0e2276 Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5657,11 +5461,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e21de530-ca0f-4ccb-9cf5-12f1e2749ccc + - 5ede536a-e066-400e-8676-02a632549816 status: 202 Accepted code: 202 - duration: 207.289099ms - - id: 114 + duration: 301.23247ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5677,7 +5481,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -5685,18 +5489,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2147 + content_length: 2145 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:42.423953+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quizzical-edison","id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:b5","maintenances":[],"modification_date":"2025-10-08T23:07:07.737238+00:00","name":"tf-srv-quizzical-edison","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c28cab87-2079-455b-bc76-fb79f4694d40","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"a53cd535-7739-462f-9e53-4ae54ea2e795","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:20:43.285127+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-unruffled-moser","id":"16b168a8-583a-44dc-b23c-e947bfbdc887","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"801","node_id":"67","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:f3","maintenances":[],"modification_date":"2025-10-15T15:21:53.284827+00:00","name":"tf-srv-unruffled-moser","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"eb4df47d-a115-460d-9120-c57d1ef11833","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"1":{"boot":false,"id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"},"2":{"boot":false,"id":"b9d190c3-6517-42dd-91f2-50681d8f8101","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2147" + - "2145" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:08 GMT + - Wed, 15 Oct 2025 15:21:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5706,11 +5510,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb30ec0-4b3b-4c06-9327-e687566d91da + - bbc0361d-1e52-42d3-9460-d76ed3ef37c8 status: 200 OK code: 200 - duration: 113.923297ms - - id: 115 + duration: 152.666365ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5726,7 +5530,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -5736,7 +5540,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","type":"not_found"}' headers: Content-Length: - "143" @@ -5745,7 +5549,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5755,11 +5559,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27b9ac58-28ce-4938-85f6-86949c5aff50 + - d52e3c27-66b1-410f-8b12-86233abd1a97 status: 404 Not Found code: 404 - duration: 48.560228ms - - id: 116 + duration: 48.113633ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5775,7 +5579,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -5785,7 +5589,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c28cab87-2079-455b-bc76-fb79f4694d40","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb4df47d-a115-460d-9120-c57d1ef11833","type":"not_found"}' headers: Content-Length: - "143" @@ -5794,7 +5598,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5804,11 +5608,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ffc8253-8998-4cd1-b7cf-e34adf3800bf + - 4791a065-8fe5-4b5f-912c-1220d399982c status: 404 Not Found code: 404 - duration: 26.879698ms - - id: 117 + duration: 24.609975ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5824,7 +5628,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: GET response: proto: HTTP/2.0 @@ -5834,7 +5638,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:42.511895Z","id":"c28cab87-2079-455b-bc76-fb79f4694d40","last_detached_at":"2025-10-08T23:07:09.568839Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:09.568839Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:43.408485Z","id":"eb4df47d-a115-460d-9120-c57d1ef11833","last_detached_at":"2025-10-15T15:21:55.612001Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:55.612001Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5843,7 +5647,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:58 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5853,11 +5657,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c69e2574-b764-4b19-b764-f6af2c8a11b1 + - cf02677a-5f51-4bb0-ad0a-4f1c22122f36 status: 200 OK code: 200 - duration: 38.549579ms - - id: 118 + duration: 96.130654ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5873,7 +5677,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c28cab87-2079-455b-bc76-fb79f4694d40 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb4df47d-a115-460d-9120-c57d1ef11833 method: DELETE response: proto: HTTP/2.0 @@ -5890,7 +5694,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5900,11 +5704,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c3829c1-bfc7-4bd2-94e3-12d29840a4fd + - 4e77ca5b-62af-4900-9760-dd68f280780a status: 204 No Content code: 204 - duration: 67.022027ms - - id: 119 + duration: 174.802125ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5920,7 +5724,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -5928,18 +5732,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:36.750778Z","id":"a53cd535-7739-462f-9e53-4ae54ea2e795","last_detached_at":"2025-10-08T23:07:09.644850Z","name":"tf-volume-great-banzai","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:07:09.644850Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:20:41.652878Z","id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","last_detached_at":"2025-10-15T15:21:55.690819Z","name":"tf-volume-wizardly-bassi","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:21:55.690819Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5949,11 +5753,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e31ed1c-33b7-411c-86a5-715b40a576ee + - 7c19d32b-c5c9-4115-8097-e688ac647d8b status: 200 OK code: 200 - duration: 41.355045ms - - id: 120 + duration: 82.199086ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5969,7 +5773,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -5977,18 +5781,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:55.279631Z","id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","last_detached_at":"2025-10-08T23:07:09.733039Z","name":"tf-volume-angry-kare","parent_snapshot_id":null,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-08T23:07:09.733039Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:21:44.772306Z","id":"b9d190c3-6517-42dd-91f2-50681d8f8101","last_detached_at":"2025-10-15T15:21:55.763523Z","name":"tf-volume-vigorous-hoover","parent_snapshot_id":null,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":15000000000,"specs":{"class":"sbs","perf_iops":15000},"status":"available","tags":[],"type":"sbs_15k","updated_at":"2025-10-15T15:21:55.763523Z","zone":"fr-par-1"}' headers: Content-Length: - - "445" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -5998,11 +5802,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c62736bb-069f-43ef-ad1c-102474c59da3 + - 2e9b933d-31d8-46a0-865b-ae008d981f25 status: 200 OK code: 200 - duration: 41.442647ms - - id: 121 + duration: 120.465473ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -6018,7 +5822,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: DELETE response: proto: HTTP/2.0 @@ -6035,7 +5839,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -6045,11 +5849,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b952eb-d01f-479a-9a45-9e08f0d50975 + - a15adda0-6512-47bb-ab99-7b9733d66a64 status: 204 No Content code: 204 - duration: 66.11121ms - - id: 122 + duration: 149.712208ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -6065,7 +5869,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: DELETE response: proto: HTTP/2.0 @@ -6082,7 +5886,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -6092,11 +5896,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af98c87d-02d3-4d5a-834e-a9fd51517dbe + - bc003c4a-1128-4e12-9d49-aa1bf6799c79 status: 204 No Content code: 204 - duration: 77.691636ms - - id: 123 + duration: 171.953083ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -6112,7 +5916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a53cd535-7739-462f-9e53-4ae54ea2e795 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0d4ad909-3105-4b09-b8c2-ca4fc01cdd87 method: GET response: proto: HTTP/2.0 @@ -6122,7 +5926,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"a53cd535-7739-462f-9e53-4ae54ea2e795","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"0d4ad909-3105-4b09-b8c2-ca4fc01cdd87","type":"not_found"}' headers: Content-Length: - "127" @@ -6131,7 +5935,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -6141,11 +5945,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23c00072-190c-4c73-8b9b-080a26f339ad + - 027bfeeb-6341-48ba-bf77-026aea70bf93 status: 404 Not Found code: 404 - duration: 36.100844ms - - id: 124 + duration: 75.147912ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6161,7 +5965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f1892c80-8ec7-4af6-a55c-99329b50e8f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9d190c3-6517-42dd-91f2-50681d8f8101 method: GET response: proto: HTTP/2.0 @@ -6171,7 +5975,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"f1892c80-8ec7-4af6-a55c-99329b50e8f7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"b9d190c3-6517-42dd-91f2-50681d8f8101","type":"not_found"}' headers: Content-Length: - "127" @@ -6180,7 +5984,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -6190,11 +5994,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc3bc8e4-acbe-4a56-bddf-466dcff35fcb + - e4ffd010-a496-4c5a-b891-b62d6d3cd93f status: 404 Not Found code: 404 - duration: 45.903387ms - - id: 125 + duration: 98.988593ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6210,7 +6014,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2959ac59-6bf5-4557-9c2e-545916be5a2a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/16b168a8-583a-44dc-b23c-e947bfbdc887 method: GET response: proto: HTTP/2.0 @@ -6220,7 +6024,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2959ac59-6bf5-4557-9c2e-545916be5a2a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"16b168a8-583a-44dc-b23c-e947bfbdc887","type":"not_found"}' headers: Content-Length: - "143" @@ -6229,7 +6033,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:13 GMT + - Wed, 15 Oct 2025 15:21:59 GMT Server: - Scaleway API Gateway (fr-par-3;edge03) Strict-Transport-Security: @@ -6239,7 +6043,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2422bafc-2ea6-4208-bde0-49ddcaf080b1 + - 7a107f4c-c4b4-4a42-b493-05a1fa74ffed status: 404 Not Found code: 404 - duration: 41.16378ms + duration: 53.232017ms diff --git a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml index 43cdf86d7..176888814 100644 --- a/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml +++ b/internal/services/instance/testdata/server-custom-diff-image.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d7ed71e-8db3-4166-b2bf-80a946edd8cd + - 0f1666e7-d43b-4063-9596-05c34c472c63 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.017189ms + duration: 50.381261ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 39263 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f63e428-dabb-4be5-afa9-6b539813bb94 + - 952d4e25-8b4f-47d7-96b0-d45f5c61eebd X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 80.688773ms + duration: 50.021396ms - id: 2 request: proto: HTTP/1.1 @@ -123,7 +123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -131,20 +131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 14295 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "423" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,52 +154,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd66dc9-7eb5-4f1b-9025-764beee1fbb1 + - 65645231-1674-4b35-a674-cd9460af9ef6 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 53.89255ms + duration: 50.72229ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 273 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-adoring-ride","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 14295 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "2163" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + - Wed, 15 Oct 2025 15:03:02 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +207,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80f2c445-6a06-4ce9-8f0c-9bbc7b7177de - status: 201 Created - code: 201 - duration: 371.901998ms + - 79da0ed4-2db0-46ab-be7d-cc9768445c7e + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 55.016817ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +229,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + 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: proto: HTTP/2.0 @@ -233,20 +237,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2163" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e311dba6-549d-4635-9897-a717d3e20743 + - 6501367e-16e2-44c6-8bcc-c7cf1a977e80 status: 200 OK code: 200 - duration: 75.333391ms + duration: 53.91899ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +278,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + 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: proto: HTTP/2.0 @@ -282,20 +286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2163" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,48 +307,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6aaa7e2-4d35-4334-9c8c-318e7cd97367 + - a570bfc8-36d6-42e8-9460-797f7209d64a status: 200 OK code: 200 - duration: 82.313031ms + duration: 47.918105ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 224 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"main-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +360,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df5597f0-512d-4de1-8fec-4dd55a4f0b3a - status: 200 OK - code: 200 - duration: 92.142191ms + - 6ee0d54a-7625-4773-9b2a-2d27aae936b2 + status: 201 Created + code: 201 + duration: 1.263218608s - id: 7 request: proto: HTTP/1.1 @@ -372,7 +380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -380,20 +388,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 1722 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +409,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 753a0de0-2498-4f22-a7ac-6961a6ee79f4 + - c30c29a8-2cda-4590-a2c4-c805090b0773 status: 200 OK code: 200 - duration: 67.155731ms + duration: 173.456527ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -429,20 +437,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1722 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81ba9020-1bd3-47de-8b6a-f85b74b50f57 + - 60fa69d1-be34-434b-aaf1-876fe5fa207a status: 200 OK code: 200 - duration: 62.809069ms + duration: 124.604972ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -478,22 +486,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1722 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,12 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad79778c-fb93-4169-9369-82d7273475d7 - X-Total-Count: - - "0" + - 1be12e79-9699-426f-b34f-df2649f00282 status: 200 OK code: 200 - duration: 1.142634006s + duration: 137.376786ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -531,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 800da1de-ff45-41db-b726-45033144eaad - status: 200 OK - code: 200 - duration: 90.429016ms + - 0719d93b-7b55-4314-b05a-53885a62a6b8 + status: 404 Not Found + code: 404 + duration: 28.238868ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -580,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "2163" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33d5edf9-2475-42fa-b000-7b288cb15302 + - f418fb5d-7eb1-4bd2-b73f-2b3441e741d5 status: 200 OK code: 200 - duration: 86.292042ms + duration: 83.784787ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -629,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,48 +654,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebb0535a-0431-417b-9547-6dd1704fc1d4 + - 893b1ba1-7010-4d2f-8b09-4347ae97365f status: 200 OK code: 200 - duration: 61.8064ms + duration: 94.381806ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 227 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"control-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1728 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2368953e-89f5-4be8-8508-7cc48e3a7a67 - status: 200 OK - code: 200 - duration: 51.578774ms + - 8f4fbe54-42a6-482e-9297-00315795ff3d + status: 201 Created + code: 201 + duration: 1.963882431s - id: 14 request: proto: HTTP/1.1 @@ -719,7 +727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +746,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +758,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f5dfc5c-e1e1-4bd5-a132-ef39eee00402 + - 9165f516-1c14-458f-b84c-9ce7db7e38fd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 43.155108ms + duration: 100.171356ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +780,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -780,20 +788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1728 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6e306e-9cb3-4ea3-9e10-57fec4d4b2e0 + - 03fd78a3-00db-4d82-ab2f-c597812aeed4 status: 200 OK code: 200 - duration: 86.850176ms + duration: 165.850064ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +829,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -829,20 +837,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 1728 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +858,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ac2e729-1b73-4cd1-9dd1-7e159f3ebfdc + - 1d74f0e4-ad3e-4997-992d-3169dab50d94 status: 200 OK code: 200 - duration: 48.708666ms + duration: 154.558765ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +878,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -878,20 +886,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1728 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +907,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7563f20c-ef68-4c0b-a83e-fc5e377778c5 + - 9e67823b-6faa-4017-a3e5-997101012e45 status: 200 OK code: 200 - duration: 62.444262ms + duration: 158.582325ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +927,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -927,22 +935,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,12 +956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 277d6098-c0e5-4ff7-8993-7e2727139f18 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 63.621723ms + - 811afe1b-94d7-4eca-a469-4a3c7f82bdd7 + status: 404 Not Found + code: 404 + duration: 36.156696ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -980,20 +984,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 705 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec8ca855-a3ed-4175-8d8d-5f4e3af31a16 + - 38f43d2e-0339-4332-9e3f-21a0c27229ca status: 200 OK code: 200 - duration: 64.609313ms + duration: 99.380755ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data method: GET response: proto: HTTP/2.0 @@ -1029,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2163" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a55dbfee-008f-4506-9902-e1a2dbad7f6f + - 5598dc8b-6e43-4f16-99c6-f7b684a37881 status: 200 OK code: 200 - duration: 94.336375ms + duration: 94.538941ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics method: GET response: proto: HTTP/2.0 @@ -1078,20 +1082,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1105,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a7ba64-8849-4531-9d7f-a34f2be62272 + - c678a21f-dd57-41ca-b3c5-1791bd2ed3bd + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 55.896152ms + duration: 87.372792ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1127,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -1127,20 +1135,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1156,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46c8fd62-7d51-467e-8929-245631696b98 + - c4404e12-d5ef-49a9-98e2-b93555814395 status: 200 OK code: 200 - duration: 88.224582ms + duration: 135.164552ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1176,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -1176,20 +1184,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1728 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aeae4245-7ddc-468f-abd0-0d23e4f992b2 + - cfecfc6c-8dc7-4b74-844d-eeeeb6d2565c status: 200 OK code: 200 - duration: 53.950788ms + duration: 133.816686ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -1225,20 +1233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 1728 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c39f20a7-8ed8-4b90-88a3-a8b92e69d4d7 + - 87ef9731-74fd-450c-81c7-9625e28193a0 status: 200 OK code: 200 - duration: 61.951209ms + duration: 126.960519ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -1274,22 +1282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8198627c-c112-472f-830e-a8fa91dd6100 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 58.316576ms + - 23d91094-f5b1-40c3-ae4d-0bee9e7cf233 + status: 404 Not Found + code: 404 + duration: 22.520622ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -1327,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1722 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 188a72ba-c2a9-471d-803f-0dbed921063b + - e9abd41a-3ff7-4f66-a552-232bf8d3c413 status: 200 OK code: 200 - duration: 52.797ms + duration: 158.520962ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -1376,22 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,12 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d21caf1b-922a-45d7-93d8-a93b4abc4384 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 64.588605ms + - 1793d4a0-ea62-479a-8625-cdaa1d827196 + status: 404 Not Found + code: 404 + duration: 30.593582ms - id: 28 request: proto: HTTP/1.1 @@ -1421,7 +1421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -1429,20 +1429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' headers: Content-Length: - - "2163" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90ffd5f4-bb88-46dd-aadd-7394b3062b0a + - a17a200f-4670-4cea-9744-f77c56e526f4 status: 200 OK code: 200 - duration: 120.899294ms + duration: 94.765918ms - id: 29 request: proto: HTTP/1.1 @@ -1470,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -1478,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 705 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "387" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd0a82b-b6de-4175-b1d8-40d494e29fe8 + - ab3bc78f-61ed-4366-907a-0d785c9a4adc status: 200 OK code: 200 - duration: 58.002604ms + duration: 90.716819ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -1527,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2163" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 978326c9-6d9b-413f-87a7-8ea91c9e4fea + - 9a5cea71-edec-421f-b6c3-43e17dcea979 status: 200 OK code: 200 - duration: 117.712229ms + duration: 97.454576ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data method: GET response: proto: HTTP/2.0 @@ -1576,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2163" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3109b07e-3326-4595-8496-3028b3bb546a + - c9a2b203-b7f7-4c00-9419-524fe69a5e05 status: 200 OK code: 200 - duration: 87.260726ms + duration: 133.812339ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2163" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1648,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2988d8ef-ab6e-4866-98f3-710028e1fe21 + - bf7fc7c1-b494-4202-b511-ba7abfef0dc8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 95.761785ms + duration: 94.320262ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -1674,20 +1678,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 20 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "387" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1701,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92d0a7c6-296d-4ec2-b3d3-a01149007307 + - bf7fad05-fcea-4160-b490-96d5c110eecb + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 43.836901ms + duration: 100.224026ms - id: 34 request: proto: HTTP/1.1 @@ -1715,7 +1723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + 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: proto: HTTP/2.0 @@ -1723,20 +1731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1260 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "2163" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72f6df5a-e914-484d-a722-c94b0780212e + - 7eeec4b6-1fe2-45d9-80d8-3006093febe7 status: 200 OK code: 200 - duration: 83.801819ms + duration: 43.128922ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -1772,20 +1780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1728 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4770d30e-a8fb-43ee-bd13-4f7040a239fb + - 5137d59e-9b40-494e-b641-6c6395129bc7 status: 200 OK code: 200 - duration: 103.53207ms + duration: 171.624177ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -1821,20 +1829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0568852-3090-47af-8ab7-56116bb5e989 + - fe35e805-a7d6-471d-9073-4d805bd25437 status: 200 OK code: 200 - duration: 100.948172ms + duration: 149.909054ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -1870,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbb3c9ea-b927-4822-8d0b-fc45d9898694 - status: 200 OK - code: 200 - duration: 103.635802ms + - adefb3af-9658-4608-affd-f307aa36378c + status: 404 Not Found + code: 404 + duration: 27.919581ms - id: 38 request: proto: HTTP/1.1 @@ -1911,7 +1919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -1919,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b12d009-ed0d-4f89-b09a-f2175ab65cca - status: 200 OK - code: 200 - duration: 92.003081ms + - 36337067-cbcf-4fe1-81ba-3d56069e8a5e + status: 404 Not Found + code: 404 + duration: 48.884669ms - id: 39 request: proto: HTTP/1.1 @@ -1960,7 +1968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -1968,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' headers: Content-Length: - - "2163" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f9d1916-8deb-47e9-8fdc-14cb108f782f + - d7285a1b-ee7d-4a40-b24f-8073c834950e status: 200 OK code: 200 - duration: 75.921018ms + duration: 492.039086ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +2017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data method: GET response: proto: HTTP/2.0 @@ -2017,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb179598-1f5a-40bb-93ab-bac1cfb227c1 + - c9350d9c-5381-4adf-9e30-247b1b5b6a47 status: 200 OK code: 200 - duration: 53.961637ms + duration: 118.19308ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +2066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics method: GET response: proto: HTTP/2.0 @@ -2066,20 +2074,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9855ed9a-6b27-4828-90b1-93baa0df7ba4 + - b2ee8590-c9db-46df-9f15-1f6e9121d9df + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 43.240275ms + duration: 94.843855ms - id: 42 request: proto: HTTP/1.1 @@ -2107,7 +2119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -2115,20 +2127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b91260-5793-46bb-bc2e-89eb6601b075 + - 9e4878c3-84cb-47bb-9237-64a919599438 status: 200 OK code: 200 - duration: 46.856435ms + duration: 1.327899399s - id: 43 request: proto: HTTP/1.1 @@ -2156,7 +2168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -2175,9 +2187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b56f6980-725d-41ac-9fe3-2d5b94389829 + - 84a4ea27-6a83-44f1-80f0-7655dcfcca59 status: 200 OK code: 200 - duration: 63.093825ms + duration: 106.123904ms - id: 44 request: proto: HTTP/1.1 @@ -2205,7 +2217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -2224,11 +2236,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,12 +2248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26f49724-1792-40fe-8f14-98c40955253f + - 5eadddf4-ccac-4638-9af6-2cf6dc0f0bdd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.080983ms + duration: 100.672719ms - id: 45 request: proto: HTTP/1.1 @@ -2258,7 +2270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2266,22 +2278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1722 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,12 +2299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d789f07a-6456-4335-ba36-96c8cbc59783 - X-Total-Count: - - "0" + - 8888ddb8-5382-4b01-9ac8-0bbea3a28c6a status: 200 OK code: 200 - duration: 43.519993ms + duration: 156.39973ms - id: 46 request: proto: HTTP/1.1 @@ -2311,7 +2319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2319,20 +2327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2340,10 +2348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e240aa83-a345-48dd-a6d1-28cd785cf126 + - 0ea85d32-cdea-4438-9845-83ec2113ce90 status: 200 OK code: 200 - duration: 84.379297ms + duration: 168.530604ms - id: 47 request: proto: HTTP/1.1 @@ -2360,7 +2368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2368,20 +2376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,10 +2397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaf941ff-7530-48a9-882a-3b57e0941170 + - 1df82a7e-4056-489f-b328-1a0d12a08c32 status: 200 OK code: 200 - duration: 83.426773ms + duration: 166.69807ms - id: 48 request: proto: HTTP/1.1 @@ -2409,7 +2417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2417,20 +2425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1722 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2438,10 +2446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e34a4741-e843-4223-955b-ba01697da4b1 + - 5a9a6604-9072-4c79-9b66-1e95a462d903 status: 200 OK code: 200 - duration: 41.773768ms + duration: 137.603157ms - id: 49 request: proto: HTTP/1.1 @@ -2458,7 +2466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2466,20 +2474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1722 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2487,10 +2495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 419218f7-ab89-434e-8297-d395e44a594c + - 264d7dc8-a8e0-43a1-9a3f-5c838a724044 status: 200 OK code: 200 - duration: 43.042859ms + duration: 117.806679ms - id: 50 request: proto: HTTP/1.1 @@ -2507,7 +2515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -2515,20 +2523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2536,10 +2544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1424923-24aa-426d-88e0-aaa4ebc99779 - status: 200 OK - code: 200 - duration: 93.095124ms + - f93b6a43-6881-42aa-a83b-e0a58a8d91bd + status: 404 Not Found + code: 404 + duration: 31.224705ms - id: 51 request: proto: HTTP/1.1 @@ -2556,7 +2564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -2564,20 +2572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 705 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "2163" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2585,10 +2593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6324bb1-ec3c-43bf-a407-96c131010f1a + - c8d4cc73-f031-4cf2-b756-3531afbe3c92 status: 200 OK code: 200 - duration: 88.867252ms + duration: 80.094196ms - id: 52 request: proto: HTTP/1.1 @@ -2605,7 +2613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -2613,20 +2621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "523" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2634,10 +2642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - afe9bcf8-2f07-4517-95a4-d882a0753afb + - 693d7e12-93e8-4e1d-a7e1-b9b0f6aee72c status: 200 OK code: 200 - duration: 61.410626ms + duration: 114.161598ms - id: 53 request: proto: HTTP/1.1 @@ -2654,7 +2662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -2662,20 +2670,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "523" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2693,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2368d93-6d62-40c7-a0e6-baa0e30e0ebf + - aa6f1831-5beb-4e51-b797-6156551397b5 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 63.022473ms + duration: 92.402041ms - id: 54 request: proto: HTTP/1.1 @@ -2703,7 +2715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -2711,20 +2723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1722 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,10 +2744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca83bbd3-5fdc-444b-b92a-e6afd12f4dda + - cbc77fcb-dac8-4f06-9092-b5343f729603 status: 200 OK code: 200 - duration: 48.62433ms + duration: 139.396128ms - id: 55 request: proto: HTTP/1.1 @@ -2752,7 +2764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -2760,20 +2772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1728 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2781,10 +2793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b20f3c3e-b313-465e-aa8c-fae217892a43 + - e663df73-9405-4218-9bb7-75ecce6b5459 status: 200 OK code: 200 - duration: 46.652296ms + duration: 133.299673ms - id: 56 request: proto: HTTP/1.1 @@ -2801,7 +2813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + 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: proto: HTTP/2.0 @@ -2809,22 +2821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1260 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "20" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2832,12 +2842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d14d722-c676-4caa-96de-1b48c89ab202 - X-Total-Count: - - "0" + - 32489cfd-f676-40fe-b1d3-035b3a89f59f status: 200 OK code: 200 - duration: 55.932789ms + duration: 50.36304ms - id: 57 request: proto: HTTP/1.1 @@ -2854,7 +2862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + 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: proto: HTTP/2.0 @@ -2862,22 +2870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1260 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "20" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2885,12 +2891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 386abed3-d7f4-46de-b6fb-f9a02e0da4df - X-Total-Count: - - "0" + - a27da082-0b28-462c-bb16-5529e958389b status: 200 OK code: 200 - duration: 52.1008ms + duration: 50.087013ms - id: 58 request: proto: HTTP/1.1 @@ -2907,7 +2911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + 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: proto: HTTP/2.0 @@ -2915,20 +2919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "423" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,10 +2940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 353bd61f-a79a-4de5-9c75-721381cf57bd + - ca13e71a-1f9b-4020-8438-c24f2aa51a34 status: 200 OK code: 200 - duration: 46.995392ms + duration: 53.216718ms - id: 59 request: proto: HTTP/1.1 @@ -2956,7 +2960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -2964,20 +2968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1728 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,10 +2989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c6208b3-723f-47f6-836d-f3b1d65920eb + - 0be18151-dcf1-41e0-97d4-fb8de2ba2dc0 status: 200 OK code: 200 - duration: 84.936329ms + duration: 146.277634ms - id: 60 request: proto: HTTP/1.1 @@ -3005,7 +3009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -3013,20 +3017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c97b37d-b52b-48c7-a008-788d4657e73f - status: 200 OK - code: 200 - duration: 88.913777ms + - 34ed6cd3-a688-4be6-a65f-1d1f87c120b4 + status: 404 Not Found + code: 404 + duration: 27.008754ms - id: 61 request: proto: HTTP/1.1 @@ -3054,7 +3058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -3062,20 +3066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 1722 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,10 +3087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ca44cf1-70df-466c-a6c5-a54f9ded6165 + - 62bbeb4d-de54-4a16-8477-eecf2f557772 status: 200 OK code: 200 - duration: 60.984877ms + duration: 154.986785ms - id: 62 request: proto: HTTP/1.1 @@ -3103,7 +3107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -3111,20 +3115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "523" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,10 +3136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842fcb25-008c-4677-bf5a-dadcee9ef213 - status: 200 OK - code: 200 - duration: 59.635217ms + - 5d97776d-9bbd-457d-b710-7e308074886a + status: 404 Not Found + code: 404 + duration: 36.310897ms - id: 63 request: proto: HTTP/1.1 @@ -3152,7 +3156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -3160,20 +3164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,10 +3185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95cc41d4-846d-4312-bb0a-72a5dd80d8e8 + - 89b7b2f0-b99a-4d90-87d9-c63ab682ca49 status: 200 OK code: 200 - duration: 53.592774ms + duration: 93.316946ms - id: 64 request: proto: HTTP/1.1 @@ -3201,7 +3205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -3209,22 +3213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 705 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3232,12 +3234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83b85817-0b7e-4e22-98ed-4da3736be820 - X-Total-Count: - - "0" + - f80b5269-71cc-4b34-9a23-374ac7d520c6 status: 200 OK code: 200 - duration: 47.020618ms + duration: 116.879161ms - id: 65 request: proto: HTTP/1.1 @@ -3254,7 +3254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data method: GET response: proto: HTTP/2.0 @@ -3273,9 +3273,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,10 +3283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbabe6cb-4295-43aa-aa3e-3094acce8b25 + - 4c36c591-1dae-4600-b2fe-4ef385b616ca status: 200 OK code: 200 - duration: 55.106257ms + duration: 101.735512ms - id: 66 request: proto: HTTP/1.1 @@ -3303,7 +3303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics method: GET response: proto: HTTP/2.0 @@ -3322,11 +3322,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3334,12 +3334,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523062dc-667c-4aba-9ded-3598f3c9beba + - 579696ff-29c8-4f0a-9598-d29e427395a6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.47171ms + duration: 95.014377ms - id: 67 request: proto: HTTP/1.1 @@ -3356,7 +3356,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -3364,20 +3364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2163" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3385,10 +3385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61653894-5df3-45ea-9a2a-995bb4313325 + - c0bf015a-2773-4146-a329-cd7eca5f6775 status: 200 OK code: 200 - duration: 86.456115ms + duration: 107.198269ms - id: 68 request: proto: HTTP/1.1 @@ -3405,7 +3405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -3413,20 +3413,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2163" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3434,10 +3436,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef6f5e60-b333-46e1-9a0f-47302bfb030d + - 8fc5b119-e32f-4ba0-b292-bac4597a9777 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 73.812422ms + duration: 104.591104ms - id: 69 request: proto: HTTP/1.1 @@ -3454,7 +3458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3462,20 +3466,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1260 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "423" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3483,10 +3487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60cca05a-39aa-4c2f-8d7f-62a35d2669e8 + - 0b412bde-81e0-4d42-b071-12f017eb33e9 status: 200 OK code: 200 - duration: 45.004092ms + duration: 56.826394ms - id: 70 request: proto: HTTP/1.1 @@ -3503,7 +3507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -3511,20 +3515,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1728 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3532,10 +3536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30dac36e-5f73-4ec8-b82f-34502a3f8c77 + - a43a7b56-3221-4867-816b-2e42e7403006 status: 200 OK code: 200 - duration: 89.115722ms + duration: 152.608209ms - id: 71 request: proto: HTTP/1.1 @@ -3552,7 +3556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -3560,20 +3564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,10 +3585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2821887-a08c-4ceb-81a8-26bb293f294b - status: 200 OK - code: 200 - duration: 80.916292ms + - 76a1e103-606f-4971-be90-43694e25a0dc + status: 404 Not Found + code: 404 + duration: 37.921295ms - id: 72 request: proto: HTTP/1.1 @@ -3601,7 +3605,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -3609,20 +3613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 1722 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3630,10 +3634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 361fa0df-7759-44d3-b2f5-020a1d87d16b + - 8c744c9d-56bc-4bbb-8153-9f8e91fc73d2 status: 200 OK code: 200 - duration: 71.234275ms + duration: 163.751061ms - id: 73 request: proto: HTTP/1.1 @@ -3650,7 +3654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -3658,20 +3662,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "523" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3679,10 +3683,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8204c36d-30d7-4a2a-9741-365f7529d8a8 - status: 200 OK - code: 200 - duration: 60.699288ms + - 67d8317e-fc94-48ad-84b6-634813939d8d + status: 404 Not Found + code: 404 + duration: 21.530288ms - id: 74 request: proto: HTTP/1.1 @@ -3699,7 +3703,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 method: GET response: proto: HTTP/2.0 @@ -3707,20 +3711,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,10 +3732,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69bfffd4-bd17-419e-ac76-91bc5ff851d8 + - 8fe4e79a-477d-4d9b-92f0-7836f7726e37 status: 200 OK code: 200 - duration: 51.153976ms + duration: 99.751275ms - id: 75 request: proto: HTTP/1.1 @@ -3748,7 +3752,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -3756,20 +3760,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3777,10 +3781,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9716126-abe9-4b2b-9fc7-5b1349b9e3a9 + - 7c033633-a9ed-4da3-8085-62cff8052fd9 status: 200 OK code: 200 - duration: 47.704365ms + duration: 103.443534ms - id: 76 request: proto: HTTP/1.1 @@ -3797,7 +3801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data method: GET response: proto: HTTP/2.0 @@ -3805,22 +3809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3828,12 +3830,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e545f46d-4fb1-48f6-a8f1-e12cc538bbdc - X-Total-Count: - - "0" + - dc6fd7bc-01e4-4834-acc0-9b860a945b4b status: 200 OK code: 200 - duration: 50.078633ms + duration: 100.833783ms - id: 77 request: proto: HTTP/1.1 @@ -3850,7 +3850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/user_data method: GET response: proto: HTTP/2.0 @@ -3858,22 +3858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3881,12 +3879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f01fa55-8f7f-4595-b1c9-444e65e21a08 - X-Total-Count: - - "0" + - 402b90ec-6ede-4163-93d7-140498c0cdc2 status: 200 OK code: 200 - duration: 55.357703ms + duration: 83.107093ms - id: 78 request: proto: HTTP/1.1 @@ -3903,7 +3899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics method: GET response: proto: HTTP/2.0 @@ -3911,20 +3907,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3932,10 +3930,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87af052f-c61d-40fd-b89d-21e69e2de63b + - dfae4245-35ca-4281-9c67-697c30e8f243 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 44.22531ms + duration: 105.016061ms - id: 79 request: proto: HTTP/1.1 @@ -3952,7 +3952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/private_nics method: GET response: proto: HTTP/2.0 @@ -3960,20 +3960,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2163" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3981,10 +3983,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a3f379f-d2a4-4801-9c12-07d64a46dabc + - d0e69627-96db-4b69-ade5-0b96292cdf86 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 86.256524ms + duration: 80.114105ms - id: 80 request: proto: HTTP/1.1 @@ -4001,7 +4005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4009,20 +4013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 1722 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "387" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4030,10 +4034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b71573f-eb49-410e-bd5c-06c344b6d2c1 + - 099e4a79-78aa-4797-a7d8-1111b2c182d5 status: 200 OK code: 200 - duration: 49.750746ms + duration: 141.756594ms - id: 81 request: proto: HTTP/1.1 @@ -4050,7 +4054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/marketplace/v2/local-images/6d3c053e-c728-4294-b23a-560b62a4d592 method: GET response: proto: HTTP/2.0 @@ -4058,20 +4062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 971 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4079,10 +4083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b08e6d3-10a4-4ab4-a5e6-d6e120325f55 + - 7898fd47-ece7-411c-ab27-2d7f6729b2bd status: 200 OK code: 200 - duration: 42.373409ms + duration: 116.923576ms - id: 82 request: proto: HTTP/1.1 @@ -4099,7 +4103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4107,20 +4111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4128,10 +4132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d8c4b4-4882-400f-a944-6daf4c49c5f6 + - 177aa290-f4e6-4435-8d7c-7a26aafe48b5 status: 200 OK code: 200 - duration: 98.478846ms + duration: 168.163461ms - id: 83 request: proto: HTTP/1.1 @@ -4148,7 +4152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4156,20 +4160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 1722 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:03.570689+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2163" + - "1722" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4177,10 +4181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7611c7d8-c286-422b-8299-6a805cb057db + - 6706b05f-0760-4245-8e5e-4d4c94529927 status: 200 OK code: 200 - duration: 80.419401ms + duration: 175.454826ms - id: 84 request: proto: HTTP/1.1 @@ -4197,7 +4201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -4205,20 +4209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 705 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.709218Z","id":"31767a66-a0e1-4df1-a3da-a97fe999fbba","product_resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.709218Z","zone":"fr-par-1"}' headers: Content-Length: - - "523" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4226,48 +4230,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f87f7b0-d15e-44e2-8a3a-72ecbfe41f3d + - b2b4301e-3473-445f-b5e3-f7152ee94c69 status: 200 OK code: 200 - duration: 59.678236ms + duration: 92.534531ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 523 + content_length: 357 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action","href_result":"/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa","id":"de04b668-94be-4cc1-b003-fc25187df5a2","progress":0,"started_at":"2025-10-15T15:03:12.733894+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "523" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/de04b668-94be-4cc1-b003-fc25187df5a2 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4275,10 +4283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88f1be4a-37ad-4973-88c5-0269f94e00f7 - status: 200 OK - code: 200 - duration: 59.28036ms + - fb205500-020a-4bdc-90ca-cb2326fc536f + status: 202 Accepted + code: 202 + duration: 259.831299ms - id: 86 request: proto: HTTP/1.1 @@ -4295,7 +4303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4303,20 +4311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1744 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:12.529915+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4324,10 +4332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6e12714-2975-40f9-9abf-4de92ecf8786 + - 5f796668-0bac-4f40-9942-4e9ad8f84ae5 status: 200 OK code: 200 - duration: 71.141393ms + duration: 142.810389ms - id: 87 request: proto: HTTP/1.1 @@ -4344,7 +4352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4352,20 +4360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1878 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"703","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:15.326675+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,50 +4381,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14b33aaf-228e-4f80-96b3-7a030855d68f + - c4903511-7463-4b83-b528-b5caf885e981 status: 200 OK code: 200 - duration: 47.7183ms + duration: 129.826875ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 353 uncompressed: false - body: '{"private_nics":[]}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa/action","href_result":"/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa","id":"0b315cc8-2065-4d95-b342-7beabec40e9d","progress":0,"started_at":"2025-10-15T15:03:18.309743+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:18 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b315cc8-2065-4d95-b342-7beabec40e9d Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4424,12 +4434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f281749f-fec4-46cb-bf92-d204e90df30a - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 52.584666ms + - 00e88fc9-3cb9-4c13-8e3e-65dc8979f5c3 + status: 202 Accepted + code: 202 + duration: 299.692626ms - id: 89 request: proto: HTTP/1.1 @@ -4446,7 +4454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4454,22 +4462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1841 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.570689+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"703","node_id":"10","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:09","maintenances":[],"modification_date":"2025-10-15T15:03:18.067910+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1841" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4477,12 +4483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b12885d3-e1c2-4512-a714-5dd52c3ca1f9 - X-Total-Count: - - "0" + - f5fc69c2-ad4c-4c09-b85f-4c4cf0425ec9 status: 200 OK code: 200 - duration: 58.321283ms + duration: 130.876232ms - id: 90 request: proto: HTTP/1.1 @@ -4499,7 +4503,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e01c2167-95ea-4bed-a6f0-f5198840c5fa method: GET response: proto: HTTP/2.0 @@ -4507,20 +4511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e01c2167-95ea-4bed-a6f0-f5198840c5fa","type":"not_found"}' headers: Content-Length: - - "2163" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4528,10 +4532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b06e4a6-9208-42f7-9f22-e298955d9864 - status: 200 OK - code: 200 - duration: 76.379597ms + - 42ebd086-fde2-4f94-85ac-27476bfbfd79 + status: 404 Not Found + code: 404 + duration: 49.26601ms - id: 91 request: proto: HTTP/1.1 @@ -4548,7 +4552,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images/ec31d73d-ca36-4536-adf4-0feb76d30379 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -4556,20 +4560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 143 uncompressed: false - body: '{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"ec31d73d-ca36-4536-adf4-0feb76d30379","label":"ubuntu_jammy","type":"instance_local","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","type":"not_found"}' headers: Content-Length: - - "387" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4577,10 +4581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc6600a1-79cf-4cc7-abc7-8d1e55ecc7f1 - status: 200 OK - code: 200 - duration: 47.628184ms + - bc97792d-74f5-49f6-9862-7801734be4c9 + status: 404 Not Found + code: 404 + duration: 26.511987ms - id: 92 request: proto: HTTP/1.1 @@ -4597,7 +4601,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d method: GET response: proto: HTTP/2.0 @@ -4605,20 +4609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 498 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:03.709218Z","id":"56cbd02d-683d-4c7d-b3cc-0beb73dc859d","last_detached_at":"2025-10-15T15:03:19.778896Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.778896Z","zone":"fr-par-1"}' headers: Content-Length: - - "2163" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4626,10 +4630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a038c20-6749-4e47-9726-d59d392aa8ac + - 1867d3f4-d29b-4bc1-a044-cd23871e8723 status: 200 OK code: 200 - duration: 64.574006ms + duration: 88.010542ms - id: 93 request: proto: HTTP/1.1 @@ -4646,7 +4650,54 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/56cbd02d-683d-4c7d-b3cc-0beb73dc859d + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 356ab2a9-7780-402f-86fb-8390979caa3b + status: 204 No Content + code: 204 + duration: 180.011323ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -4654,20 +4705,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2163 + content_length: 39263 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:27.337433+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "2163" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:23 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4675,50 +4728,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54d53231-804c-44b7-8900-58b6e9ff38af + - 6d2dad21-5d8a-4516-ba6f-fb36b75de881 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 99.81945ms - - id: 94 + duration: 34.675716ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 158 + content_length: 14295 uncompressed: false - body: '{"help_message":"server should be stopped","message":"precondition is not respected","precondition":"resource_not_usable","type":"precondition_failed"}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "158" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:23 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4726,29 +4781,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45225a1-d24b-420e-8b6d-ce375b6e5ad4 - status: 400 Bad Request - code: 400 - duration: 98.755369ms - - id: 95 + - bf3bddcd-e64d-4efb-9d12-1429acc89250 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 43.832738ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 224 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"name":"main-server","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -4756,22 +4813,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1718 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action","href_result":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","id":"453c0ce8-e8ea-475b-85ae-75f66f59be2c","progress":0,"started_at":"2025-10-08T23:04:34.965782+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/453c0ce8-e8ea-475b-85ae-75f66f59be2c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4779,11 +4836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63739ece-838b-4eb3-a8aa-52cbd91c4633 - status: 202 Accepted - code: 202 - duration: 182.494249ms - - id: 96 + - 4e39a578-a757-4283-80f5-95905a9842b3 + status: 201 Created + code: 201 + duration: 1.2228284s + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4799,7 +4856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 method: GET response: proto: HTTP/2.0 @@ -4807,20 +4864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2185 + content_length: 1718 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2185" + - "1718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4828,11 +4885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25ac0021-20fa-4386-bd99-a18d8b402d95 + - af5c36c1-6afd-46dd-b718-39a63fb9001b status: 200 OK code: 200 - duration: 86.331753ms - - id: 97 + duration: 161.422208ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4848,7 +4905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 method: GET response: proto: HTTP/2.0 @@ -4856,20 +4913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 1718 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "1718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4877,11 +4934,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c333010c-5b96-4e0f-a556-49127c619c75 + - e902486b-ce94-4b28-92c8-ac00d89d89c3 status: 200 OK code: 200 - duration: 94.142891ms - - id: 98 + duration: 148.343867ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4897,7 +4954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 method: GET response: proto: HTTP/2.0 @@ -4905,20 +4962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 1718 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "1718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4926,11 +4983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9807df6-4f9b-4a6d-8edf-27579bb1f9b3 + - dfd9cc11-eae6-4b50-bb44-3c5c6dc6592e status: 200 OK code: 200 - duration: 83.559975ms - - id: 99 + duration: 160.483519ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4946,7 +5003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 method: GET response: proto: HTTP/2.0 @@ -4954,20 +5011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:34.822774+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6263783c-22b5-4fa4-8834-dcd9a0954991","type":"not_found"}' headers: Content-Length: - - "2288" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4975,11 +5032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d8113e-38b3-465f-bac7-06a91668157c - status: 200 OK - code: 200 - duration: 69.207204ms - - id: 100 + - f4e8a2b6-ee64-4c0b-852d-8fa9a80e4291 + status: 404 Not Found + code: 404 + duration: 30.997174ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4995,7 +5052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 method: GET response: proto: HTTP/2.0 @@ -5003,20 +5060,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2319 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:50.767357+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:24.697759Z","id":"6263783c-22b5-4fa4-8834-dcd9a0954991","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:24.697759Z","id":"ebb907ef-adfc-49d2-88ab-0220216c2ee7","product_resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:24.697759Z","zone":"fr-par-1"}' headers: Content-Length: - - "2319" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5024,52 +5081,99 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 945d0118-04fa-413f-9171-0ba57b9fbfb2 + - dccd56f5-282f-47d6-ab19-1f777a91da9d status: 200 OK code: 200 - duration: 89.419396ms - - id: 101 + duration: 97.071836ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json + Date: + - Wed, 15 Oct 2025 15:03:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24b68c81-c40c-4a10-9f92-0fc72021e4af + status: 200 OK + code: 200 + duration: 104.102943ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 20 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254/action","href_result":"/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","id":"6af5b1e3-8ed7-4f0d-97d7-2c252d6481e0","progress":0,"started_at":"2025-10-08T23:04:55.571460+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "353" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6af5b1e3-8ed7-4f0d-97d7-2c252d6481e0 + - Wed, 15 Oct 2025 15:03:25 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5077,11 +5181,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 355ed0a1-8abd-43a0-b9f3-ba267c1f4963 - status: 202 Accepted - code: 202 - duration: 174.626527ms - - id: 102 + - 92007e8e-ffa9-4c4a-a320-fe08752ccece + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 105.896115ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5097,7 +5203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 method: GET response: proto: HTTP/2.0 @@ -5105,20 +5211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2282 + content_length: 1718 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:27.337433+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-ride","id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"901","node_id":"59","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5d","maintenances":[],"modification_date":"2025-10-08T23:04:55.443358+00:00","name":"tf-srv-adoring-ride","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.337433+00:00","export_uri":null,"id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","modification_date":"2025-10-08T23:04:27.337433+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","name":"tf-srv-adoring-ride"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2282" + - "1718" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5126,11 +5232,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 876d1e59-b615-4411-906a-1849583f8217 + - 41d6c3ae-0a10-4c17-b5d7-13af9790c9f2 status: 200 OK code: 200 - duration: 90.63712ms - - id: 103 + duration: 164.456105ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5146,7 +5252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f6738d5a-f0f9-4f5b-8ce2-9e8bef179254 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee method: GET response: proto: HTTP/2.0 @@ -5154,20 +5260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1728 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f6738d5a-f0f9-4f5b-8ce2-9e8bef179254","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5175,11 +5281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87646788-daee-4e24-894a-b1b4de3b723e - status: 404 Not Found - code: 404 - duration: 42.462258ms - - id: 104 + - 343e8855-4aef-4f33-ae7b-bd11599b6738 + status: 200 OK + code: 200 + duration: 156.266757ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5195,7 +5301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + 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: proto: HTTP/2.0 @@ -5203,20 +5309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1260 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","type":"not_found"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"65ce6135-f6d5-4e90-82ec-ef09d29d1cff","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"6d3c053e-c728-4294-b23a-560b62a4d592","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "143" + - "1260" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5224,11 +5330,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9e53322-2ca5-4259-a02d-06c26b9e5dd5 - status: 404 Not Found - code: 404 - duration: 45.349126ms - - id: 105 + - ae972800-bb40-43a8-8199-ab19b14dab8c + status: 200 OK + code: 200 + duration: 46.033854ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5244,7 +5350,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/edaa3073-7e58-47cf-9da1-c126ed90f4c4 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -5252,20 +5358,1951 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 1260 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"edaa3073-7e58-47cf-9da1-c126ed90f4c4","type":"not_found"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "127" + - "1260" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4463a4b7-add2-4b5d-a598-6f2e43248224 + status: 200 OK + code: 200 + duration: 54.468332ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1260 + uncompressed: false + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "1260" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4af6e256-8b3d-4038-9d03-c4d3c8acddef + status: 200 OK + code: 200 + duration: 51.843753ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1728 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 727acbc9-9088-4cd2-a6bd-da734fa3b15a + status: 200 OK + code: 200 + duration: 162.079051ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c27245b2-4e8d-42cc-8a6a-08ce87d24da5 + status: 404 Not Found + code: 404 + duration: 25.111963ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1718 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1718" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e8d0194e-0bca-41b8-ac7d-711ce63eeaf1 + status: 200 OK + code: 200 + duration: 152.89054ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6263783c-22b5-4fa4-8834-dcd9a0954991","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ec86bbe-3ede-435f-907e-31fb8a1b667e + status: 404 Not Found + code: 404 + duration: 34.138862ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 705 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9fe68a15-9dba-4f26-9e20-778f72b5815d + status: 200 OK + code: 200 + duration: 93.961388ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:24.697759Z","id":"6263783c-22b5-4fa4-8834-dcd9a0954991","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:24.697759Z","id":"ebb907ef-adfc-49d2-88ab-0220216c2ee7","product_resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:24.697759Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68f1c7d8-7f81-43c0-90e0-446ab3813525 + status: 200 OK + code: 200 + duration: 88.671774ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ab6a315-8e24-4148-ac09-3200b6ce9122 + status: 200 OK + code: 200 + duration: 97.651824ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4cef6d47-57d1-4ab8-ace3-e7fd150f353d + status: 200 OK + code: 200 + duration: 87.788699ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8659d02e-d7f5-4469-b451-391de5c59ec4 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 101.904555ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 605a7cf2-26a1-490c-9553-d8d4ab2fd887 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 107.265983ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1728 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9898489d-bb70-4e1b-8efb-01100d53ad72 + status: 200 OK + code: 200 + duration: 133.721805ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1718 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1718" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a65f6bf-43ea-446f-8381-4f4ce25a6bb1 + status: 200 OK + code: 200 + duration: 162.481606ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1728 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:03.733134+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68a4e05f-02e6-41e4-86b0-7befaa665a6a + status: 200 OK + code: 200 + duration: 155.366441ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1718 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:24.557925+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1718" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30f0481e-b5bb-4bd3-96f2-e9c272c06b71 + status: 200 OK + code: 200 + duration: 139.244205ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 705 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.869604Z","id":"3eb0cb04-df89-4c22-a19b-9679b08b3037","product_resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.869604Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3588f83e-c73c-446f-9a5f-aade8484aa40 + status: 200 OK + code: 200 + duration: 70.384903ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:24.697759Z","id":"6263783c-22b5-4fa4-8834-dcd9a0954991","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:24.697759Z","id":"ebb907ef-adfc-49d2-88ab-0220216c2ee7","product_resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:24.697759Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cab853fa-9c8d-4b9b-9365-d810af1546f8 + status: 200 OK + code: 200 + duration: 81.856191ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action","href_result":"/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee","id":"13036396-2c90-418b-b4d2-3e4bdeb5b602","progress":0,"started_at":"2025-10-15T15:03:27.923498+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/13036396-2c90-418b-b4d2-3e4bdeb5b602 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70153b88-0bdc-4d20-80ca-ec605420cd70 + status: 202 Accepted + code: 202 + duration: 251.484973ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1750 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:27.724318+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1750" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 36cbbfc9-6d7e-4b95-a1eb-70686bd3a49a + status: 200 OK + code: 200 + duration: 221.067437ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/action","href_result":"/servers/63dca55f-ad4e-432d-b25b-d733e80695e8","id":"b3f7e50f-256d-42f6-806b-3ed24a620308","progress":0,"started_at":"2025-10-15T15:03:28.436566+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:28 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b3f7e50f-256d-42f6-806b-3ed24a620308 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de8ce0f8-3334-4923-8114-73b49db4dfaf + status: 202 Accepted + code: 202 + duration: 758.87227ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1740 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:27.748994+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1740" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a924a9c2-c8b1-489d-825c-f985e44067ba + status: 200 OK + code: 200 + duration: 147.2974ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1884 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"303","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:30.538184+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1884" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5fedf7a6-9f8b-4834-bf20-fe840a5d41d1 + status: 200 OK + code: 200 + duration: 188.523794ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee/action","href_result":"/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee","id":"76446dbb-ce90-4de7-a6d1-d676d83cffe6","progress":0,"started_at":"2025-10-15T15:03:33.631489+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:33 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/76446dbb-ce90-4de7-a6d1-d676d83cffe6 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e37d3d24-c3ad-4f11-821e-ff8f05156a13 + status: 202 Accepted + code: 202 + duration: 304.093175ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1874 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"602","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:31.258812+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1874" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 451f5b6c-a32f-42af-af52-d371b8accaa0 + status: 200 OK + code: 200 + duration: 142.527547ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1847 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:03.733134+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"control-server","id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"48","hypervisor_id":"303","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0b","maintenances":[],"modification_date":"2025-10-15T15:03:33.385941+00:00","name":"control-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1847" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1195c395-af52-4a42-8361-3b666deb5a9e + status: 200 OK + code: 200 + duration: 147.210745ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/63dca55f-ad4e-432d-b25b-d733e80695e8/action","href_result":"/servers/63dca55f-ad4e-432d-b25b-d733e80695e8","id":"7d6bc037-5a00-44bf-904d-48839ba43ce5","progress":0,"started_at":"2025-10-15T15:03:34.052924+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7d6bc037-5a00-44bf-904d-48839ba43ce5 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 81730607-2c69-4212-b2f0-d13599554e3d + status: 202 Accepted + code: 202 + duration: 316.770436ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1837 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"602","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:33.795009+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1837" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1f1689ca-0e60-49f7-9796-474988750735 + status: 200 OK + code: 200 + duration: 143.896263ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66c2e922-4257-4ae3-bafc-e624943f13f5 + status: 404 Not Found + code: 404 + duration: 48.066759ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f35c4eb1-f9dc-4f0d-8cec-c91db6e0db6c + status: 404 Not Found + code: 404 + duration: 30.652921ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 498 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:03.869604Z","id":"db8bd0c7-9f6f-4063-8ddb-37972b309f89","last_detached_at":"2025-10-15T15:03:35.157146Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:35.157146Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "498" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26450c88-aa02-476c-a023-fe133849765b + status: 200 OK + code: 200 + duration: 80.556533ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/db8bd0c7-9f6f-4063-8ddb-37972b309f89 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8157b2cc-6288-4d84-bce1-700d678d03a9 + status: 204 No Content + code: 204 + duration: 163.557ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1837 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"602","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:33.795009+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1837" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4659b0e-a76d-4ed0-b91a-4977afa6365c + status: 200 OK + code: 200 + duration: 139.513235ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1837 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:24.557925+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"main-server","id":"63dca55f-ad4e-432d-b25b-d733e80695e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"602","node_id":"39","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:25","maintenances":[],"modification_date":"2025-10-15T15:03:33.795009+00:00","name":"main-server","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6263783c-22b5-4fa4-8834-dcd9a0954991","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1837" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 11969633-8053-45a9-a03a-cae875b7d030 + status: 200 OK + code: 200 + duration: 139.020607ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e1afad1-db99-4e2e-81ad-14a9598a6e59 + status: 404 Not Found + code: 404 + duration: 50.621973ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6263783c-22b5-4fa4-8834-dcd9a0954991","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c571a99a-0f09-407e-bc21-2eb0ec7a869c + status: 404 Not Found + code: 404 + duration: 30.344857ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:24.697759Z","id":"6263783c-22b5-4fa4-8834-dcd9a0954991","last_detached_at":"2025-10-15T15:03:45.485961Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.485961Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 532adc26-d161-4ca2-9fb8-b9346108e31c + status: 200 OK + code: 200 + duration: 105.199722ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6263783c-22b5-4fa4-8834-dcd9a0954991 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5050389a-f1be-4521-837a-598efa941b58 + status: 204 No Content + code: 204 + duration: 176.330517ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/57d06475-4195-4d4a-ad7b-c120eeb2a7ee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"57d06475-4195-4d4a-ad7b-c120eeb2a7ee","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:49 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a06ac990-4bfa-43b1-ac02-4ecbaa55921c + status: 404 Not Found + code: 404 + duration: 61.301852ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63dca55f-ad4e-432d-b25b-d733e80695e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63dca55f-ad4e-432d-b25b-d733e80695e8","type":"not_found"}' + headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5273,7 +7310,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e1104e6-135c-4ce4-bf39-55a36794afee + - 310eca30-9669-479d-b950-3c159f311006 status: 404 Not Found code: 404 - duration: 18.388052ms + duration: 68.981095ms diff --git a/internal/services/instance/testdata/server-ip-removed.cassette.yaml b/internal/services/instance/testdata/server-ip-removed.cassette.yaml index e3c390af1..ccc1771d5 100644 --- a/internal/services/instance/testdata/server-ip-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ip-removed.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd055943-bf41-471c-a9d2-e99f1884fdfe + - 21427e78-355d-404a-8bc3-5fead1c0ec9c status: 201 Created code: 201 - duration: 2.07484945s + duration: 498.21391ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304e20f0-614f-4fc9-87ee-64839a448e91 + - 6b1d654d-3930-4a8c-89d5-a94833cdae94 status: 200 OK code: 200 - duration: 71.552356ms + duration: 171.603176ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13c4f162-e700-43e7-9b52-d5279f183c6c + - 3363bb09-1a04-4cd4-975a-f99bdd412cb3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 59.554609ms + duration: 46.515355ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba065137-6e9e-4992-9ae1-3c0483bc0614 + - 3d2ed85b-c83f-4387-8f7a-b7836d563ef5 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.792624ms + duration: 41.689872ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e7902ff-045c-4cec-aba2-ec2192f32798 + - 6f43b93d-6571-4419-9e18-4c449993435c status: 200 OK code: 200 - duration: 43.936455ms + duration: 45.400295ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ip-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ip":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-server-ip-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ip":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07e053eb-0842-4f70-8734-3ef0915ca75d + - b633bb7c-77fa-4270-a2c3-4fd999cd477c status: 201 Created code: 201 - duration: 832.106726ms + duration: 1.672625714s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b2e2773-d260-43a2-8792-13955206e5e8 + - 5d2f8c3e-337d-4bf9-8cfe-f711c0015579 status: 200 OK code: 200 - duration: 100.642256ms + duration: 140.01734ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0c01e6b-5e8d-4f5c-806c-75ea83c34902 + - 855470a5-c9ca-4f64-8ea3-0e094295aef5 status: 200 OK code: 200 - duration: 94.965089ms + duration: 136.334939ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ceef03b-b51c-4a1a-b8c6-e82e6c75b147 + - 0641f5c7-53b5-49c7-90c1-bad4bac5bfc1 status: 200 OK code: 200 - duration: 114.362835ms + duration: 158.908762ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8ca4628-3bec-40cf-838f-a54bc872314c + - 83191a68-2b2c-460a-9230-5d45fbc5c0c1 status: 404 Not Found code: 404 - duration: 35.482895ms + duration: 27.69092ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00963b91-0720-40a3-abb3-67662b2189c1 + - a96cdd00-3d90-45a9-bd02-4be93d891a6b status: 200 OK code: 200 - duration: 36.019618ms + duration: 110.064522ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401c717f-aaa5-44c9-b658-12d1dfac8cb0 + - eb8edfa8-0753-412c-8bf0-a77444a4e6b1 status: 200 OK code: 200 - duration: 63.043893ms + duration: 166.718848ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f038e926-6893-44f5-ae0f-3503696bf2e4 + - 4ccbf7cf-2570-43b8-b55b-b1a14c0f6dc2 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.193455ms + duration: 101.762555ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eba5bed0-470b-42b2-8cd5-a46988658a5a + - bbffdfda-0a7f-4acc-ab7b-50d948b78aee X-Total-Count: - "0" status: 200 OK code: 200 - duration: 45.568889ms + duration: 116.636157ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 453 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"42ff5278-005b-4a5d-9367-34568d89d1ee","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "455" + - "453" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d74bb4e-f655-431c-920f-8eb6f90ea652 + - f32cd49b-1655-4767-9a3b-1a07c9414e91 status: 200 OK code: 200 - duration: 77.894685ms + duration: 126.90536ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1f1393-da67-40bb-90d6-435efe223254 + - 81debf98-cff4-42f5-966f-e2e1b2bbae2f status: 200 OK code: 200 - duration: 95.328111ms + duration: 153.819427ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdabc715-202b-44ec-9fdb-2fe25816b59e + - 2cc604d3-724a-4c41-9cfe-3a2bbe648809 status: 404 Not Found code: 404 - duration: 34.887691ms + duration: 26.424378ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60fdf7ca-5309-4d5a-8ec3-cc88b1aa9d59 + - 3e8c7dd2-cf5e-4e33-be71-e522ae6d34eb status: 200 OK code: 200 - duration: 45.270386ms + duration: 68.557192ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8f3fa8d-b68d-495c-882a-bee073ea742f + - 0cc9178f-315f-4d4e-bb55-b0ff11ff2ab5 status: 200 OK code: 200 - duration: 47.339479ms + duration: 110.032915ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9fbcd7f-b88e-4643-a239-12bc3a923444 + - f17c5e3e-9718-497d-a0d3-1f7ece336878 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.843426ms + duration: 134.609569ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 453 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"42ff5278-005b-4a5d-9367-34568d89d1ee","name":"tf-tests-instance-server-ip-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "455" + - "453" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce85168f-b56f-437c-8b63-86fb9bce3fd0 + - fb644c2f-2263-472b-9962-cae56b5bcd85 status: 200 OK code: 200 - duration: 78.688966ms + duration: 110.702759ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3655690b-1439-42b8-90e4-167c66312fac + - 0ef67c76-fc9f-400c-970a-145e1643f483 status: 200 OK code: 200 - duration: 120.247165ms + duration: 152.824102ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a8a1235-094e-4c4e-97a2-19e65564764e + - fc840916-179c-47e5-b7d4-c16742af7112 status: 404 Not Found code: 404 - duration: 22.260159ms + duration: 32.032546ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d443014-3506-4584-911f-15ffd59c0dd7 + - 1a007f38-bd39-4b7e-954b-6fe21a4f9335 status: 200 OK code: 200 - duration: 41.988075ms + duration: 92.423195ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96236be3-72e4-4768-bcc4-5a2afed5a582 + - f309b62c-1188-42ab-883b-7e96a514a557 status: 200 OK code: 200 - duration: 56.990569ms + duration: 100.337635ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fd99c9c-25f6-4837-8285-861a5378abd8 + - 650142eb-f40b-447d-9514-32ae45a5d6b6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.668487ms + duration: 98.414543ms - id: 26 request: proto: HTTP/1.1 @@ -1323,7 +1323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0423a774-86dc-4bb6-a8b4-8948f941115f + - 4f04fc4c-a696-49d6-a7d2-4eb9a21d12a5 status: 200 OK code: 200 - duration: 102.837582ms + duration: 158.10512ms - id: 27 request: proto: HTTP/1.1 @@ -1372,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2300 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2300" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e53c628a-b067-4713-a98c-a5b35c10ce0b + - ea0460d2-959d-4aa7-915e-8d6012c42848 status: 200 OK code: 200 - duration: 95.039605ms + duration: 127.639679ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1423,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: PATCH response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,10 +1452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4538099-3874-47dc-888d-f7616f19e4a9 + - 1c581412-f30f-455d-829a-3ac92492d243 status: 200 OK code: 200 - duration: 332.095926ms + duration: 510.441257ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1482,7 +1482,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1491,9 +1491,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1501,10 +1501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bf7587-f9ff-497e-8c4d-b51078cc58a5 + - 7df66bfe-e5c1-4f2e-8c0e-dfe2057ea560 status: 200 OK code: 200 - duration: 101.165926ms + duration: 165.540434ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1521,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1531,7 +1531,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1540,9 +1540,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0df38f9d-d280-44b3-a2a2-e35fa731c6b4 + - b5415796-09d7-449e-99fb-ef072e1ce032 status: 200 OK code: 200 - duration: 107.860978ms + duration: 133.442194ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1580,7 +1580,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1589,9 +1589,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b25324-4fa6-4f1d-957c-ea7dacf548f2 + - fad7492b-d8d5-4f40-a9eb-c5af8ed6ba8f status: 200 OK code: 200 - duration: 97.503461ms + duration: 142.981501ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -1629,7 +1629,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -1638,9 +1638,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 226cdaf3-983f-41ba-894e-adda01117692 + - 45b62c91-8788-4bec-ae48-789d658c3198 status: 404 Not Found code: 404 - duration: 32.027643ms + duration: 31.52691ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -1678,7 +1678,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ea62fb2-533e-4cf3-afda-84c2816716d9 + - 1ee7bc20-adb6-49e4-972e-ff89524ded1c status: 200 OK code: 200 - duration: 41.786822ms + duration: 111.511046ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/user_data method: GET response: proto: HTTP/2.0 @@ -1736,9 +1736,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4861ba93-7389-4b74-8d59-fc36abe0d445 + - 6747d3b4-d45d-42c5-983d-b32588373bf6 status: 200 OK code: 200 - duration: 69.362138ms + duration: 98.756776ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1766,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -1785,11 +1785,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,12 +1797,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf35b2d-2537-42f5-8a5c-52c420a81414 + - fa1d0afb-f114-47c5-9614-3bc137cf2b6a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.674458ms + duration: 87.072249ms - id: 36 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -1838,11 +1838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,12 +1850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 440ccf8e-22b8-4029-acc6-d0ff299fce4e + - f5ccb041-f276-409a-b06f-4ea6698fb580 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.40702ms + duration: 107.967776ms - id: 37 request: proto: HTTP/1.1 @@ -1872,7 +1872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1882,7 +1882,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1891,9 +1891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1901,10 +1901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3ecceb1-50a0-486a-921d-19861e4770bf + - 21480bff-64aa-42a7-b21a-1bcd31391009 status: 200 OK code: 200 - duration: 97.717717ms + duration: 135.891254ms - id: 38 request: proto: HTTP/1.1 @@ -1921,7 +1921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -1929,20 +1929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.121","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"e43a4892-8491-4fdc-a30a-0fae428d8112","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"ba4df91b-2822-4880-8e0c-7d6eb2984d5c","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1950,10 +1950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 724a2e4c-f200-400b-9c50-f89f9fcad0ff + - a8941495-9745-4b0e-a92a-4a66226ea201 status: 200 OK code: 200 - duration: 92.082057ms + duration: 126.06972ms - id: 39 request: proto: HTTP/1.1 @@ -1970,7 +1970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -1980,7 +1980,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -1989,9 +1989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1999,10 +1999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1a4b040-1e5b-4c2b-98d7-5ea448aedb47 + - 6ea3c511-b13a-4e1c-ac80-3478e8bebc1a status: 200 OK code: 200 - duration: 100.747139ms + duration: 133.072282ms - id: 40 request: proto: HTTP/1.1 @@ -2019,7 +2019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -2029,7 +2029,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -2038,9 +2038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,10 +2048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbeaf5b4-357e-4e3f-a3b6-6181aa23c926 + - 503187d5-e0f2-4435-aee9-7c9cc91be667 status: 404 Not Found code: 404 - duration: 32.797128ms + duration: 27.273549ms - id: 41 request: proto: HTTP/1.1 @@ -2068,7 +2068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -2078,7 +2078,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ac429d8-fc0c-4dc8-825b-fe5403b79f7e + - 7eb13f7a-5a20-4192-8e37-967a0f72e4fd status: 200 OK code: 200 - duration: 40.165408ms + duration: 86.158908ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +2117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/user_data method: GET response: proto: HTTP/2.0 @@ -2136,9 +2136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,10 +2146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 898af3e1-c2a2-4bd2-9686-9c6dd77841d5 + - 3af55afe-aeec-4ac8-81b1-d2a23984dd0d status: 200 OK code: 200 - duration: 48.553548ms + duration: 95.41298ms - id: 43 request: proto: HTTP/1.1 @@ -2166,7 +2166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/private_nics method: GET response: proto: HTTP/2.0 @@ -2185,11 +2185,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2197,12 +2197,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8bb959b-1a2f-4d8f-8599-be2e8f8e6bb1 + - de6bda05-a878-4270-a545-114a6f58429c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 44.360209ms + duration: 103.954056ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +2219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2229,7 +2229,7 @@ interactions: trailer: {} content_length: 1772 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:29.484917+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1772" @@ -2238,9 +2238,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,10 +2248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daa1a04d-8d5f-4412-bbdb-53947e98c19d + - 11108e69-076d-4907-a58b-6e8a187ebc86 status: 200 OK code: 200 - duration: 101.867385ms + duration: 214.172792ms - id: 45 request: proto: HTTP/1.1 @@ -2268,7 +2268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2276,20 +2276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1772 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.599729Z","id":"8cabbb39-5949-4c7b-acea-850f5a040d10","product_resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.599729Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:00.637671+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "1772" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,10 +2297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b878fa0-f943-4244-99df-88e6f8d3f4c2 + - e1c5c438-df57-4069-9576-62b76d2ca35d status: 200 OK code: 200 - duration: 37.161664ms + duration: 144.65021ms - id: 46 request: proto: HTTP/1.1 @@ -2317,7 +2317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/d5fea682-b791-4b19-bdd6-9d5add27f9f3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: DELETE response: proto: HTTP/2.0 @@ -2334,9 +2334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,11 +2344,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 950ab2c2-bff5-4883-a293-89859a2a46a2 + - d657dd2e-1c59-4936-bf84-c303f867526f status: 204 No Content code: 204 - duration: 315.509617ms + duration: 364.222962ms - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 705 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.764925Z","id":"aaa7d4bb-c38a-4a66-b62b-be639e92c316","product_resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.764925Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "705" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0abfaa7e-4fb6-46f9-bf2c-5017acf99a1d + status: 200 OK + code: 200 + duration: 1.18128655s + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2366,7 +2415,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/action method: POST response: proto: HTTP/2.0 @@ -2376,7 +2425,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action","href_result":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","id":"a6b159b2-dd53-4014-aa6d-09e01f8b94b9","progress":0,"started_at":"2025-10-08T23:04:34.285763+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/action","href_result":"/servers/42ff5278-005b-4a5d-9367-34568d89d1ee","id":"9aaf8081-adba-4667-b4c0-66ae5e2c7833","progress":0,"started_at":"2025-10-15T15:03:08.648073+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2385,11 +2434,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a6b159b2-dd53-4014-aa6d-09e01f8b94b9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9aaf8081-adba-4667-b4c0-66ae5e2c7833 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2397,11 +2446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9946487b-5fca-4ab6-8871-34084bc9849a + - c6984ade-e4b6-486d-8612-9abc0f8ee5d1 status: 202 Accepted code: 202 - duration: 194.892398ms - - id: 48 + duration: 227.179489ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2417,7 +2466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2427,7 +2476,7 @@ interactions: trailer: {} content_length: 1794 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:34.137130+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:08.479370+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1794" @@ -2436,9 +2485,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2446,11 +2495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a581d41a-64ec-4ead-8545-970c1bef51d0 + - 809db067-381e-4983-93d5-ae0af65dfc23 status: 200 OK code: 200 - duration: 158.16631ms - - id: 49 + duration: 147.071308ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2466,7 +2515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2476,7 +2525,7 @@ interactions: trailer: {} content_length: 1928 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"601","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:36.716883+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"101","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:10.579665+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1928" @@ -2485,9 +2534,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2495,11 +2544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04abcd8c-74ea-4be1-a20a-9f4f096a937f + - 26eb5a9a-e89a-4615-9a1e-2ddbea424eee status: 200 OK code: 200 - duration: 104.161782ms - - id: 50 + duration: 154.731992ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2517,7 +2566,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/action method: POST response: proto: HTTP/2.0 @@ -2527,7 +2576,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804/action","href_result":"/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","id":"304356ab-05a7-401c-84ee-bcd116eed1a5","progress":0,"started_at":"2025-10-08T23:04:39.730574+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/42ff5278-005b-4a5d-9367-34568d89d1ee/action","href_result":"/servers/42ff5278-005b-4a5d-9367-34568d89d1ee","id":"a602605f-4156-4c5e-bd05-fde0bae901f1","progress":0,"started_at":"2025-10-15T15:03:14.244031+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2536,11 +2585,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/304356ab-05a7-401c-84ee-bcd116eed1a5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a602605f-4156-4c5e-bd05-fde0bae901f1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2548,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52bff9e2-b067-4d24-a171-72183d6b2dfa + - b35caf40-2a14-48d3-8f3f-a2bbd8d17662 status: 202 Accepted code: 202 - duration: 175.866838ms - - id: 51 + duration: 290.668343ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,7 +2617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2578,7 +2627,7 @@ interactions: trailer: {} content_length: 1891 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:29.484917+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"601","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:75","maintenances":[],"modification_date":"2025-10-08T23:04:39.602252+00:00","name":"tf-tests-instance-server-ip-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"974212e2-cd56-4c47-b031-d5d0d8a786af","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:00.637671+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ip-removed","id":"42ff5278-005b-4a5d-9367-34568d89d1ee","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"59","hypervisor_id":"101","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:03","maintenances":[],"modification_date":"2025-10-15T15:03:14.008023+00:00","name":"tf-tests-instance-server-ip-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"08258abe-fbc8-4baf-87df-655a3592fbcf","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1891" @@ -2587,9 +2636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,11 +2646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cbba559-c796-40aa-b69c-9ab2809f93f5 + - 94fec068-df18-4289-9688-175cb81ecfa9 status: 200 OK code: 200 - duration: 103.894957ms - - id: 52 + duration: 120.575122ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,7 +2666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2627,7 +2676,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","type":"not_found"}' headers: Content-Length: - "143" @@ -2636,9 +2685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2646,11 +2695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2abdfdc-5511-4360-8b7a-9bd3e6c74849 + - 92bf7c4f-613f-4100-a2b5-2ad70d090914 status: 404 Not Found code: 404 - duration: 57.821774ms - - id: 53 + duration: 57.274898ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,7 +2715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -2676,7 +2725,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"974212e2-cd56-4c47-b031-d5d0d8a786af","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"08258abe-fbc8-4baf-87df-655a3592fbcf","type":"not_found"}' headers: Content-Length: - "143" @@ -2685,9 +2734,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2695,11 +2744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe0200bd-b65b-472d-b46d-ebd42dd53d14 + - c8326a90-ef1f-4f0b-9d68-e4f2da87690a status: 404 Not Found code: 404 - duration: 31.013012ms - - id: 54 + duration: 32.828243ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,7 +2764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: GET response: proto: HTTP/2.0 @@ -2725,7 +2774,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.599729Z","id":"974212e2-cd56-4c47-b031-d5d0d8a786af","last_detached_at":"2025-10-08T23:04:40.952846Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:40.952846Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.764925Z","id":"08258abe-fbc8-4baf-87df-655a3592fbcf","last_detached_at":"2025-10-15T15:03:15.710131Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:15.710131Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -2734,9 +2783,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2744,11 +2793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4be66c9-6a6a-42b4-b2c1-cef8bd16b83d + - f33f27a5-2218-49e7-81fc-c1cabce22631 status: 200 OK code: 200 - duration: 34.188203ms - - id: 55 + duration: 90.299339ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2764,7 +2813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/974212e2-cd56-4c47-b031-d5d0d8a786af + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08258abe-fbc8-4baf-87df-655a3592fbcf method: DELETE response: proto: HTTP/2.0 @@ -2781,9 +2830,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2791,11 +2840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef5e3480-224c-49f7-b299-28067b3bc09e + - f8b00ca5-d749-4847-b302-bc913b8f8939 status: 204 No Content code: 204 - duration: 73.825331ms - - id: 56 + duration: 162.162937ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2811,7 +2860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d8d2a164-b7bd-4bdc-84a1-6aa50eac2804 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42ff5278-005b-4a5d-9367-34568d89d1ee method: GET response: proto: HTTP/2.0 @@ -2821,7 +2870,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d8d2a164-b7bd-4bdc-84a1-6aa50eac2804","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42ff5278-005b-4a5d-9367-34568d89d1ee","type":"not_found"}' headers: Content-Length: - "143" @@ -2830,9 +2879,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2840,7 +2889,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 919d5986-7723-4ede-a9f6-15b66c9e6e5a + - bc7ad56c-f172-492b-ba9c-ede4e7709d93 status: 404 Not Found code: 404 - duration: 38.543141ms + duration: 48.953062ms diff --git a/internal/services/instance/testdata/server-ips-removed.cassette.yaml b/internal/services/instance/testdata/server-ips-removed.cassette.yaml index 1651ac2f4..6587b84e4 100644 --- a/internal/services/instance/testdata/server-ips-removed.cassette.yaml +++ b/internal/services/instance/testdata/server-ips-removed.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c78258c7-161d-4834-9f92-f9f52ad27c8a + - 290cfa9f-f550-4925-a606-12c17dc135a9 status: 201 Created code: 201 - duration: 307.73111ms + duration: 1.370340116s - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc8c2be4-83af-4e00-b48e-fcd95d894c87 + - 10c5ef11-f4d7-4f1f-beaf-84fc7c5eb7a4 status: 200 OK code: 200 - duration: 64.212591ms + duration: 146.706484ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 256c0a7a-34ea-4f79-8530-d9860ef3e08f + - aa38eff5-c204-450f-bc51-7cf5e264d36f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 82.282889ms + duration: 34.860455ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb1be9aa-b759-41a3-b721-473ced341555 + - 88ab892a-e452-4c3d-b0f0-c42802da4dc1 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 39.755362ms + duration: 75.890522ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c18732-7455-461f-98ab-f946234f9897 + - f2e72305-77a8-4b24-93e2-8741c1d0b06a status: 200 OK code: 200 - duration: 52.089106ms + duration: 60.019831ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["c429e36b-083d-4ad8-9f47-1a6edc00f1b9"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-server-ips-removed","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["01cdc811-7feb-416f-9933-c74defd40b17"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a72dc8a-fb79-4899-9157-4b135ee4c5ff + - b504cfb7-48f6-4f24-a64a-8d8f5eb323a3 status: 201 Created code: 201 - duration: 872.791546ms + duration: 1.566431228s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c49389e-50cd-45ec-927c-5ec30aedf095 + - d7a2a83f-2a5f-49d8-bdf2-c05870303ab0 status: 200 OK code: 200 - duration: 92.130268ms + duration: 167.467051ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24e2d6f7-848b-4492-8bb5-c5c70e82b0a6 + - b0925415-bbe3-4a62-b871-dec99ad8007a status: 200 OK code: 200 - duration: 97.292528ms + duration: 173.084467ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 368696cf-b31b-4bc0-b24d-bb8fdf2e6615 + - 03552c61-ce5a-42b7-a3f9-9be5a4bf9936 status: 200 OK code: 200 - duration: 94.257376ms + duration: 155.308787ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8d0c24-399c-4db6-b677-1d13f01c697a + - 2658d97b-bda4-4e57-8606-f62431f35d24 status: 404 Not Found code: 404 - duration: 39.443725ms + duration: 27.42924ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 595ee5bf-b5e1-4605-95d7-6db2118fd9f9 + - 0a780452-998b-4752-8e39-10787f00f211 status: 200 OK code: 200 - duration: 40.673292ms + duration: 91.870829ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 386c45cd-4977-4db0-b93a-0980c1a885ba + - edb26e53-ba16-4612-9278-57a54775fde3 status: 200 OK code: 200 - duration: 49.712784ms + duration: 94.887583ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c7c1e5-8fc9-4f9d-95dc-ea29f7f1e66c + - 030d35c9-e1e2-4175-ba30-27013132d9ac X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.993511ms + duration: 119.095978ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48bad170-f76c-45a8-9b08-9a0184a8e413 + - 204d22a9-2aa8-4149-ac50-f5e1a5e2104e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.904739ms + duration: 101.670153ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 455 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"968c7554-8f6e-4762-9986-759c4556b08e","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "456" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a809be36-dfde-4823-b447-fb0a5cbc3d15 + - ff41f115-fa27-4df0-ab55-d4860440bbef status: 200 OK code: 200 - duration: 79.695155ms + duration: 128.648308ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c0aadde-18a9-488a-a28e-7eba350c419b + - 627bfad8-737e-4e06-aa94-b35e93b2c982 status: 200 OK code: 200 - duration: 115.506874ms + duration: 166.428606ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0604623c-9760-476d-9852-80f7613813fb + - d7617d6e-4534-4698-b197-88c337d2220c status: 404 Not Found code: 404 - duration: 25.65169ms + duration: 29.417747ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d1f195f-331e-4017-a99f-27b7c72f224e + - 54e7bd43-5f97-4e31-8b7c-2cee38bfbcf3 status: 200 OK code: 200 - duration: 74.332494ms + duration: 100.964461ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4743edcf-8a6e-4878-9287-d4f822fe2410 + - ebb0036b-f9ef-4741-812a-c89b0978574a status: 200 OK code: 200 - duration: 48.142116ms + duration: 89.374192ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 203234a0-c9b8-43f7-8a8f-32d79536d2cf + - 303a7c17-f4d7-4dc1-add4-2f4d13b659aa X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.610074ms + duration: 114.345748ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 456 + content_length: 455 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"968c7554-8f6e-4762-9986-759c4556b08e","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","name":"tf-tests-instance-server-ips-removed"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "456" + - "455" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83556173-3f83-4701-8209-c40b8f5ffde7 + - 529d0722-3bb6-4d60-b7d8-d55862643465 status: 200 OK code: 200 - duration: 81.469111ms + duration: 113.286011ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68ea0550-0994-465e-b193-8f4e6064863d + - 3317236b-bcbc-4c3e-a22a-b790f337d599 status: 200 OK code: 200 - duration: 112.423653ms + duration: 154.468565ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b67f5e16-776e-4b2e-aee2-1d9982aa250e + - ba6ad808-2adc-4777-8559-37b27ca152e3 status: 404 Not Found code: 404 - duration: 26.949313ms + duration: 28.220473ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73dfc198-99c4-4f67-801a-e8ef469d11aa + - 70bc142a-3c2a-4f43-b343-ea6dee0bdbbf status: 200 OK code: 200 - duration: 45.09414ms + duration: 109.361707ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e73b703-9706-44a6-af73-c8273708d550 + - 0c7660a9-472b-4424-806a-09f40b3d1d1f status: 200 OK code: 200 - duration: 44.815774ms + duration: 126.450872ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a948c62f-797c-4940-880a-c610672615ca + - fccc9d9c-1c39-4adc-a0fe-aa52ac298823 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 70.220978ms + duration: 96.962261ms - id: 26 request: proto: HTTP/1.1 @@ -1323,7 +1323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b74148e-7f30-4a59-9892-8515e9854741 + - a21fce89-131e-40c9-afd5-7c32bf46269f status: 200 OK code: 200 - duration: 101.170229ms + duration: 151.96798ms - id: 27 request: proto: HTTP/1.1 @@ -1372,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 2300 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.15.140.102","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "2300" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a22d6e9e-f786-4070-8ab3-4b1252a1c65b + - 3c207f37-9517-4403-8aee-fc960f9dc1c6 status: 200 OK code: 200 - duration: 107.602192ms + duration: 149.002643ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1423,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 method: PATCH response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,10 +1452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f316edba-9d51-4a3b-955d-74934fbbd951 + - 3f979dd8-0870-44da-a1ed-8eb8e2332819 status: 200 OK code: 200 - duration: 349.38331ms + duration: 471.38376ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1472,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1482,7 +1482,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -1491,9 +1491,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1501,10 +1501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a706de1e-f1cf-4aa9-a63b-9a88ebe25cc6 + - 2fc56a43-cb40-4268-b4af-2862faa77f3f status: 200 OK code: 200 - duration: 128.073257ms + duration: 137.452419ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1521,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1531,7 +1531,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -1540,9 +1540,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8a1b539-ed9a-48a4-8a9e-8faba1cea634 + - 16b0756b-91a7-42b4-a80d-3f936f4795e0 status: 200 OK code: 200 - duration: 111.181762ms + duration: 177.391995ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -1580,7 +1580,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -1589,9 +1589,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5cf89c7-e7ab-4158-9b6e-e1761000c913 + - 15e55507-d5ed-4e2c-b04a-949af2676581 status: 404 Not Found code: 404 - duration: 35.495021ms + duration: 25.069339ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -1629,7 +1629,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1638,9 +1638,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 508b5783-1a5f-489d-ba10-e4ff0e15b70c + - d27dd486-45bf-4a11-9b5e-2f32741cf918 status: 200 OK code: 200 - duration: 67.536546ms + duration: 108.951521ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data method: GET response: proto: HTTP/2.0 @@ -1687,9 +1687,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5591c09a-dbc1-4487-a7a9-f8ccb9b1c42a + - 0af30072-27a9-4d57-84f8-e7a94131c6a4 status: 200 OK code: 200 - duration: 54.346456ms + duration: 131.141003ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -1736,11 +1736,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,12 +1748,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 343e00c6-6eb8-456c-90d6-32032be78352 + - 084f2a41-ebe6-4eae-87b2-29181ec8821c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 71.405151ms + duration: 105.929187ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -1789,11 +1789,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1801,12 +1801,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d1d0d18-d45e-4714-9d8a-3144b7321698 + - 0f8c118f-c615-490a-b4ec-b07a56a63bdc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.602535ms + duration: 137.650301ms - id: 36 request: proto: HTTP/1.1 @@ -1823,7 +1823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1833,7 +1833,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -1842,9 +1842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1852,10 +1852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c3747d3-4654-419f-85b7-048a376036ea + - ca29bd1d-c705-4bb7-8ddf-503f09f95847 status: 200 OK code: 200 - duration: 97.10493ms + duration: 125.159274ms - id: 37 request: proto: HTTP/1.1 @@ -1872,7 +1872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 method: GET response: proto: HTTP/2.0 @@ -1880,20 +1880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"97d08d90-4d2c-4e2c-b3ed-e38eeff68a5e","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.140.102","id":"01cdc811-7feb-416f-9933-c74defd40b17","ipam_id":"c6c5b9c1-decd-43c2-a9d4-b3c1b0e9623b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1901,10 +1901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d8e31e5-8baf-489d-8842-e960411abea6 + - e0ba57fc-a11f-4788-b3e8-5a67a458f74f status: 200 OK code: 200 - duration: 75.074847ms + duration: 139.674315ms - id: 38 request: proto: HTTP/1.1 @@ -1921,7 +1921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -1931,7 +1931,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -1940,9 +1940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1950,10 +1950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49b52152-909b-4977-8f4e-cc03e68a48bd + - 15718c5a-b27c-481e-a93b-6664d5f381b9 status: 200 OK code: 200 - duration: 92.858034ms + duration: 180.229244ms - id: 39 request: proto: HTTP/1.1 @@ -1970,7 +1970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -1980,7 +1980,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -1989,9 +1989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1999,10 +1999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f478a86-286b-46f5-a853-14a9dfd58ca9 + - 629fe2ee-158c-49a4-b476-b046fadc11bc status: 404 Not Found code: 404 - duration: 27.183457ms + duration: 30.766556ms - id: 40 request: proto: HTTP/1.1 @@ -2019,7 +2019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -2029,7 +2029,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2038,9 +2038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2048,10 +2048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad2f7fce-e99e-4a71-9c5e-2c0f2d8a22c0 + - 6ac2be8d-52f1-4b51-9748-5256e7710552 status: 200 OK code: 200 - duration: 35.967205ms + duration: 110.256357ms - id: 41 request: proto: HTTP/1.1 @@ -2068,7 +2068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/user_data method: GET response: proto: HTTP/2.0 @@ -2087,9 +2087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,10 +2097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d926818-98e4-48d8-8847-f3512da963ba + - 6eaf0438-0c56-49f2-8741-5a739e942bb4 status: 200 OK code: 200 - duration: 43.348907ms + duration: 92.977547ms - id: 42 request: proto: HTTP/1.1 @@ -2117,7 +2117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/private_nics method: GET response: proto: HTTP/2.0 @@ -2136,11 +2136,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:11 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2148,12 +2148,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98bac303-0d3f-4b6b-a4e7-482539157433 + - 45b1f2ad-b6cb-4e01-b4e7-ffa70cbad0c6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.238482ms + duration: 125.025765ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +2170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2180,7 +2180,7 @@ interactions: trailer: {} content_length: 1774 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:07.593814+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1774" @@ -2189,9 +2189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e96370b-91cb-45ab-9f4b-acc88bd1f429 + - 03c9abb5-12f4-4d37-b81d-73683ea437ce status: 200 OK code: 200 - duration: 103.342903ms + duration: 178.686302ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +2219,54 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/01cdc811-7feb-416f-9933-c74defd40b17 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2b24085-1029-4a07-9f22-abbecb16aa72 + status: 204 No Content + code: 204 + duration: 334.392462ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2227,20 +2274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1774 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:06:07.694475Z","id":"a81f5681-3d21-4b0d-92ad-5caeaeac5fb4","product_resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:07.694475Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:01.543540+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "1774" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,11 +2295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b324be3-651f-4e08-a231-a5c80d1f2a6a + - c645d53e-cd7e-466e-9f99-29ea32f95d0f status: 200 OK code: 200 - duration: 45.328504ms - - id: 45 + duration: 158.378036ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2268,26 +2315,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 705 uncompressed: false - body: "" + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:01.678954Z","id":"420e600f-8e35-40e4-9b6e-07acad19aea6","product_resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:01.678954Z","zone":"fr-par-1"}' headers: + Content-Length: + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2295,11 +2344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6547160-a42c-43d1-89a6-0a3be4933239 - status: 204 No Content - code: 204 - duration: 252.253352ms - - id: 46 + - ff8da119-8ddf-49f4-bd95-98c34576d25f + status: 200 OK + code: 200 + duration: 533.915567ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2317,7 +2366,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/action method: POST response: proto: HTTP/2.0 @@ -2327,7 +2376,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/968c7554-8f6e-4762-9986-759c4556b08e/action","href_result":"/servers/968c7554-8f6e-4762-9986-759c4556b08e","id":"60dd485b-4318-4ac9-add9-1ab1379c2ffd","progress":0,"started_at":"2025-10-08T23:06:12.557078+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/action","href_result":"/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3","id":"ecd50e2b-a1a6-4da5-af83-270ea9a76d75","progress":0,"started_at":"2025-10-15T15:03:08.785214+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2336,11 +2385,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/60dd485b-4318-4ac9-add9-1ab1379c2ffd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ecd50e2b-a1a6-4da5-af83-270ea9a76d75 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2348,11 +2397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5486c1f-3bc6-4f7a-a75e-14cbee00a9db + - 28a65367-fbe5-46af-a9db-488e1a9f2f98 status: 202 Accepted code: 202 - duration: 195.224879ms - - id: 47 + duration: 247.997282ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2368,7 +2417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2378,7 +2427,7 @@ interactions: trailer: {} content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:12.401304+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:08.586304+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1796" @@ -2387,9 +2436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2397,11 +2446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91664dd3-36ed-49f4-be6a-8000cfd47923 + - 90657296-fddf-49b4-bf20-62c3c400a8e4 status: 200 OK code: 200 - duration: 114.555921ms - - id: 48 + duration: 143.635099ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2417,7 +2466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2427,7 +2476,7 @@ interactions: trailer: {} content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"301","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:14.486178+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"201","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:11.105013+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1930" @@ -2436,9 +2485,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2446,11 +2495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39faf20b-89f7-4487-b5b7-7c5f6325cb0a + - b4411706-8000-4e79-b65e-5cf1c635357e status: 200 OK code: 200 - duration: 114.165125ms - - id: 49 + duration: 145.961958ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2468,7 +2517,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/action method: POST response: proto: HTTP/2.0 @@ -2478,7 +2527,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/968c7554-8f6e-4762-9986-759c4556b08e/action","href_result":"/servers/968c7554-8f6e-4762-9986-759c4556b08e","id":"0b79e105-b7d6-4dd0-ac9b-7b7eec9deacf","progress":0,"started_at":"2025-10-08T23:06:18.217168+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3/action","href_result":"/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3","id":"5d8e08d6-c8f3-4518-a4bb-362b701432b2","progress":0,"started_at":"2025-10-15T15:03:14.348463+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2487,11 +2536,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:18 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b79e105-b7d6-4dd0-ac9b-7b7eec9deacf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d8e08d6-c8f3-4518-a4bb-362b701432b2 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2499,11 +2548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c30455b-3c2f-424d-b264-4cd9beb25026 + - 281e6550-1e62-4262-8225-a82ab274df6d status: 202 Accepted code: 202 - duration: 452.397031ms - - id: 50 + duration: 280.162796ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2519,7 +2568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2529,7 +2578,7 @@ interactions: trailer: {} content_length: 1893 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:06:07.593814+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"968c7554-8f6e-4762-9986-759c4556b08e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"301","node_id":"24","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:bd","maintenances":[],"modification_date":"2025-10-08T23:06:17.834859+00:00","name":"tf-tests-instance-server-ips-removed","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:01.543540+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips-removed","id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"201","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:05","maintenances":[],"modification_date":"2025-10-15T15:03:14.122732+00:00","name":"tf-tests-instance-server-ips-removed","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1893" @@ -2538,9 +2587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:18 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2548,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869bff58-c8b9-4e33-9e06-78cb7e38ff2a + - 6293e564-ca30-4b25-bfb7-e73e624b89c2 status: 200 OK code: 200 - duration: 117.139322ms - - id: 51 + duration: 158.649034ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2568,7 +2617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2578,7 +2627,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","type":"not_found"}' headers: Content-Length: - "143" @@ -2587,9 +2636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,11 +2646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 477f34fc-85d3-4423-9e98-0a1f3fcac512 + - 0f5b7832-ca69-4ead-9723-c51a4dff5d2d status: 404 Not Found code: 404 - duration: 54.861327ms - - id: 52 + duration: 52.8681ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2617,7 +2666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -2627,7 +2676,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","type":"not_found"}' headers: Content-Length: - "143" @@ -2636,9 +2685,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2646,11 +2695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 239c16ec-1195-45cd-b5fc-2b1b7851e322 + - 95fcf3d0-90e9-4e12-9e34-e25aa8ea7dc0 status: 404 Not Found code: 404 - duration: 32.562108ms - - id: 53 + duration: 28.471026ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2666,7 +2715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: GET response: proto: HTTP/2.0 @@ -2676,7 +2725,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:06:07.694475Z","id":"8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6","last_detached_at":"2025-10-08T23:06:19.446322Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:19.446322Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:01.678954Z","id":"6ab40323-ee64-4a65-aa25-5dbc3cfc42fc","last_detached_at":"2025-10-15T15:03:15.835149Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:15.835149Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -2685,9 +2734,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2695,11 +2744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ddedc5-1138-481b-8fa7-ee3cc16b73cc + - 392e4b3e-4329-47c1-8491-ba301cf3df27 status: 200 OK code: 200 - duration: 38.097519ms - - id: 54 + duration: 85.383967ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2715,7 +2764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8fced3e3-ca76-4e0b-b11c-c9f14ecdb9d6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6ab40323-ee64-4a65-aa25-5dbc3cfc42fc method: DELETE response: proto: HTTP/2.0 @@ -2732,9 +2781,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2742,11 +2791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e43406f-6b3e-4bb7-b46d-d8f870e932b9 + - d0ad0836-5c1b-4494-8ea3-cfadd1f86182 status: 204 No Content code: 204 - duration: 85.685305ms - - id: 55 + duration: 173.774769ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2762,7 +2811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/968c7554-8f6e-4762-9986-759c4556b08e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6ef62972-c0e3-43f0-b518-abb0457a52a3 method: GET response: proto: HTTP/2.0 @@ -2772,7 +2821,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"968c7554-8f6e-4762-9986-759c4556b08e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6ef62972-c0e3-43f0-b518-abb0457a52a3","type":"not_found"}' headers: Content-Length: - "143" @@ -2781,9 +2830,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2791,7 +2840,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f79d658-bbeb-4f21-9d78-ee1e0ce7156a + - 9bf7408b-a4df-4e29-9ba1-0c27aa36d967 status: 404 Not Found code: 404 - duration: 52.463737ms + duration: 44.493244ms diff --git a/internal/services/instance/testdata/server-ips.cassette.yaml b/internal/services/instance/testdata/server-ips.cassette.yaml index 24805f62a..8fd74628e 100644 --- a/internal/services/instance/testdata/server-ips.cassette.yaml +++ b/internal/services/instance/testdata/server-ips.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 960f2fb3-3012-4222-8570-4b84f8824383 + - 1b918cc6-b0ce-422d-b314-e91012f9782d status: 201 Created code: 201 - duration: 465.544069ms + duration: 442.937357ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8eec280-94d6-490d-8d88-a8a64ac2a4f2 + - 21414ac6-0b3f-4df6-bd2a-248c12dbe520 status: 200 OK code: 200 - duration: 83.447113ms + duration: 164.211109ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e576bd-30a0-4ce0-b746-f0ce209b44e4 + - 00d946c5-4932-451f-8cb6-fe8a06c44cd2 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 66.303463ms + duration: 132.230961ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3086c7a7-e9ae-49b9-879a-d818955bdfa7 + - 0f2d499c-1872-4d74-8cab-1402becb1cf6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.611123ms + duration: 86.42836ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c1df95-0d28-4fd1-884b-c736a3068137 + - 7e034bbd-f51a-4ab3-9d8d-3a9632eb249e status: 200 OK code: 200 - duration: 52.288288ms + duration: 63.61489ms - id: 5 request: proto: HTTP/1.1 @@ -269,7 +269,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["f6f5181d-2547-47dc-b75a-42b2934e949c"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-server-ips","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"public_ips":["c8c01bd8-acd8-411c-a396-7c3d71f6f0d1"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6805b6d3-f23c-4f4b-9457-1a57d567bd08 + - d9ec7105-e77e-4bdb-9a07-ccc6f3dd1b37 status: 201 Created code: 201 - duration: 1.174330396s + duration: 1.500992373s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99644886-59bd-46dd-af9e-ba1f00b3ba4f + - 0f60706a-617f-4cc6-bdf3-6f849d2956ed status: 200 OK code: 200 - duration: 130.398684ms + duration: 153.508195ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28809171-2b2b-450c-a5bd-0a1f6718a649 + - 986b9ce5-f451-4a3f-8388-1b37d4cd7fd8 status: 200 OK code: 200 - duration: 95.102184ms + duration: 151.082319ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b01a10b2-4421-49e2-9eed-18978d05972d + - 8637139b-6859-4f29-aed4-ec4db576c3aa status: 200 OK code: 200 - duration: 90.390284ms + duration: 170.188444ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -493,9 +493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5886d908-a8e2-42d6-9a0c-c606eb835d94 + - 3ccb8de1-9ab1-4b9b-8f7e-51d8171bb2ed status: 404 Not Found code: 404 - duration: 32.288106ms + duration: 35.850562ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b32132f3-ccb9-4030-a582-8427657f82e1 + - e47c305b-cf2d-4029-b2a2-01150adc3d4c status: 200 OK code: 200 - duration: 40.202728ms + duration: 99.159329ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cecc290-27ad-4ee4-87f4-b4de3c09a9c3 + - 0cac0e78-687e-461e-b52e-0cc1ecc563e9 status: 200 OK code: 200 - duration: 57.7035ms + duration: 122.911089ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -640,11 +640,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,12 +652,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa56b008-b247-4002-9059-4f7a45a053ba + - f978ccdb-0418-4835-a209-9974eb7b573f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.862073ms + duration: 96.956471ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -693,11 +693,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,12 +705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce34e361-a443-4418-b8d1-8699f8c74fc5 + - a4400637-acf5-4018-a5a8-931dddbb718c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.076488ms + duration: 101.530032ms - id: 14 request: proto: HTTP/1.1 @@ -727,7 +727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -735,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d79a26a-7518-4a65-a9a0-45e6cbe2728d + - c04f4850-bcee-4ee1-9d84-fb57983d51bb status: 200 OK code: 200 - duration: 77.514471ms + duration: 132.356589ms - id: 15 request: proto: HTTP/1.1 @@ -776,7 +776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -784,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc300840-f2f4-4570-b44a-493abd432633 + - e73de53e-87a7-4791-9780-21fd48d47bf7 status: 200 OK code: 200 - duration: 110.027554ms + duration: 374.119432ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -835,7 +835,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -844,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d642140-de9a-4591-b01c-a235a733d9a4 + - 681b4938-b125-48d3-bfe5-65cf6234b711 status: 404 Not Found code: 404 - duration: 32.320897ms + duration: 28.614753ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 052662a2-6fae-4731-b7bb-a7d3e599a354 + - 1c44fbea-68b0-491a-8578-9ac85df4e829 status: 200 OK code: 200 - duration: 46.382207ms + duration: 115.765248ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0bbcde4-0847-4ce0-a60c-5edbeaf6ea1a + - dcc6eff7-fd1d-4e22-b074-ceac881d177a status: 200 OK code: 200 - duration: 55.132847ms + duration: 118.312322ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +991,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,12 +1003,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1aeba7-4642-495b-b06b-4ebfc334f752 + - d9c15240-3266-4b19-9317-5d25ce1e5c62 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.441343ms + duration: 111.461244ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +1025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01cbb110-da3e-4bd6-baa4-17b71cedc683 + - c6729cd3-0d4c-461d-8170-de6bec35cfe8 status: 200 OK code: 200 - duration: 72.674534ms + duration: 120.249582ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb2de712-1680-4fcd-985b-1d9b24e8f46c + - 1539c958-b349-41f1-abc3-db23e03b6eaa status: 200 OK code: 200 - duration: 99.684172ms + duration: 381.031808ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87d336da-3c55-4b5e-811b-137214f767f5 + - b0ff50f4-a68b-4169-8874-ef89017187cd status: 404 Not Found code: 404 - duration: 35.36175ms + duration: 29.209548ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9242a09a-e5f6-4b3c-8a61-79c9b2a9d71e + - 0c9e0486-e449-47c8-b9f9-bec42d29020e status: 200 OK code: 200 - duration: 50.220467ms + duration: 74.598264ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 384c03f2-584d-4f99-a718-771d2dc47cea + - a188805c-6b44-4af6-acfa-73fccd003fb0 status: 200 OK code: 200 - duration: 56.002388ms + duration: 101.756648ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49f96650-eded-46d5-b37e-1269d662ee80 + - bf049a47-731b-46d7-a273-d9e1a4bb88a3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 66.264218ms + duration: 161.570838ms - id: 26 request: proto: HTTP/1.1 @@ -1318,7 +1318,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv4"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv4"}' form: {} headers: Content-Type: @@ -1333,22 +1333,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15ae7949-d688-4172-80c3-b74d574b067b + - 8570c9f0-e3cd-4254-8d70-11816988fcbe status: 201 Created code: 201 - duration: 978.963921ms + duration: 372.692885ms - id: 27 request: proto: HTTP/1.1 @@ -1376,7 +1376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -1384,20 +1384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 367 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "367" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1405,10 +1405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdfb1b68-37c5-4cc0-a191-a2b1721d8d33 + - a88a90ec-7540-4926-87e9-f4acfb1bb47a status: 200 OK code: 200 - duration: 78.102961ms + duration: 119.112783ms - id: 28 request: proto: HTTP/1.1 @@ -1425,7 +1425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -1433,20 +1433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1454,10 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 353b1c8a-c8fd-4730-bfcc-a247b102a72c + - cc7654b1-1172-43db-8748-8ae08ea15afa status: 200 OK code: 200 - duration: 93.241406ms + duration: 131.312266ms - id: 29 request: proto: HTTP/1.1 @@ -1474,7 +1474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -1482,20 +1482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2280 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2280" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,10 +1503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 709cefed-faa1-49e7-be46-4e5ff03e98f5 + - b48cc195-b91a-4ac2-ac85-27271ffdc956 status: 200 OK code: 200 - duration: 115.423609ms + duration: 163.44397ms - id: 30 request: proto: HTTP/1.1 @@ -1518,14 +1518,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"b16d235b-ae02-4c0d-ad23-49d8e569190d"}' + body: '{"server":"76cb4b23-c7c1-481a-a70f-393135bcb980"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: PATCH response: proto: HTTP/2.0 @@ -1533,20 +1533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 446 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1554,10 +1554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc7fc077-359a-47c8-8eaf-be913d3f6262 + - bde8fb2b-24e0-468a-945a-0395e264ba77 status: 200 OK code: 200 - duration: 374.499622ms + duration: 528.663034ms - id: 31 request: proto: HTTP/1.1 @@ -1574,7 +1574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -1582,20 +1582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,10 +1603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26f77dbd-6fc5-4691-9d5b-393434096496 + - 93393e37-6a69-4e08-ae2d-3b1c8074bbbd status: 200 OK code: 200 - duration: 91.705059ms + duration: 152.138765ms - id: 32 request: proto: HTTP/1.1 @@ -1623,7 +1623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -1631,20 +1631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1652,10 +1652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42ad6cf7-23b4-4936-8eab-d895d464b025 + - ed7b1393-f48e-4d2a-830c-6e91e44cbfc7 status: 200 OK code: 200 - duration: 102.25344ms + duration: 143.334687ms - id: 33 request: proto: HTTP/1.1 @@ -1672,7 +1672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -1682,7 +1682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -1691,9 +1691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,10 +1701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1644f25e-9eb9-4465-99a2-dfb7c01762ff + - dc3fbf7c-4bcd-415e-9ef5-432440d5c4b1 status: 404 Not Found code: 404 - duration: 36.402117ms + duration: 29.224736ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -1731,7 +1731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1740,9 +1740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 480c20dd-db28-4925-a851-361a9e3f5d78 + - 8ff860bd-8960-4079-9f3d-072d4599c765 status: 200 OK code: 200 - duration: 43.704645ms + duration: 75.340476ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -1789,9 +1789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,10 +1799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21c559d-f310-4737-86d8-daad7aa5d15d + - 79dadee0-321a-4894-a51f-edfd77ab3fa6 status: 200 OK code: 200 - duration: 48.314636ms + duration: 119.63761ms - id: 36 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -1838,11 +1838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1850,12 +1850,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59fc4fe5-9736-4a4e-9958-f0dcbc65ac24 + - e9576d90-11a5-41a3-bce0-05d520ad5515 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 63.740062ms + duration: 108.26108ms - id: 37 request: proto: HTTP/1.1 @@ -1872,7 +1872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -1891,11 +1891,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1903,12 +1903,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ea926a-5237-4f6f-9b9b-6a87cc1b2748 + - fefe4cc0-649c-4864-a624-9dbeefb5f449 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.652431ms + duration: 89.727539ms - id: 38 request: proto: HTTP/1.1 @@ -1925,7 +1925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1933,20 +1933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1954,10 +1954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c2cbb16-3900-4619-a728-bedd9dcd9a3a + - 70eb01e5-eaef-4683-a582-82e477f4dd8f status: 200 OK code: 200 - duration: 76.601709ms + duration: 129.583569ms - id: 39 request: proto: HTTP/1.1 @@ -1974,7 +1974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -1982,20 +1982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 446 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2003,10 +2003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d584a62f-902d-4b39-8718-679da21bd917 + - 6b786f33-c44c-4b9f-af1a-e278eec6d28f status: 200 OK code: 200 - duration: 84.211817ms + duration: 132.46085ms - id: 40 request: proto: HTTP/1.1 @@ -2023,7 +2023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2031,20 +2031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2052,10 +2052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a0f2ef2-0262-4cf5-97c7-93db760aff23 + - a4b61964-8508-4a16-ba50-0088b4b0df77 status: 200 OK code: 200 - duration: 98.409999ms + duration: 125.460241ms - id: 41 request: proto: HTTP/1.1 @@ -2072,7 +2072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2082,7 +2082,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -2091,9 +2091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2101,10 +2101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4670a10d-5bb4-463c-bbd5-008cf42c6408 + - aa347fa5-15b4-479f-9b0f-a21e85573d97 status: 404 Not Found code: 404 - duration: 35.987799ms + duration: 28.084931ms - id: 42 request: proto: HTTP/1.1 @@ -2121,7 +2121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2131,7 +2131,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2140,9 +2140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2150,10 +2150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af4e05da-f2ff-43da-965e-6726ee3ab89a + - 5a469d13-1a90-4c6d-83be-5b79b6fa21ae status: 200 OK code: 200 - duration: 41.90397ms + duration: 75.228477ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +2170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -2189,9 +2189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2d99d39-1863-457d-86e3-e74126a355c0 + - 1f503a95-20c8-49a0-a61e-96c36b4c8ba3 status: 200 OK code: 200 - duration: 53.392242ms + duration: 123.915717ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +2219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -2238,11 +2238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2250,12 +2250,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2028a8c-7187-4a4f-aa6f-5382d3fa41a8 + - 79ff4e5f-8cba-48e8-97f7-44cc94be0786 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.169717ms + duration: 93.923913ms - id: 45 request: proto: HTTP/1.1 @@ -2272,7 +2272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -2280,20 +2280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 446 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2301,10 +2301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 137c201e-c96a-4d8d-928d-3931bb5dc4c2 + - 45f03432-96db-4b0b-b12d-77a9b61edcea status: 200 OK code: 200 - duration: 60.522491ms + duration: 139.950868ms - id: 46 request: proto: HTTP/1.1 @@ -2321,7 +2321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -2329,20 +2329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 445 + content_length: 447 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "445" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2350,10 +2350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88c382d8-a53d-409b-a4fe-cfa117479d21 + - c3baeb90-939b-4cb6-8027-b083281bd3f4 status: 200 OK code: 200 - duration: 88.508676ms + duration: 147.613628ms - id: 47 request: proto: HTTP/1.1 @@ -2370,7 +2370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2378,20 +2378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,10 +2399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f8b7e92-e066-4ff9-8a63-b0feb2e8a869 + - 892c2674-a50a-490d-83b1-42176238c277 status: 200 OK code: 200 - duration: 115.381521ms + duration: 142.731038ms - id: 48 request: proto: HTTP/1.1 @@ -2419,7 +2419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2429,7 +2429,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -2438,9 +2438,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,10 +2448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f2f1b24-529b-42d8-a0a5-06d4e25d36f1 + - 8f13875c-c11b-47fb-b96d-9470baf79b1f status: 404 Not Found code: 404 - duration: 27.673396ms + duration: 29.777333ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2478,7 +2478,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2487,9 +2487,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,10 +2497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 393c445d-c5b2-4e2d-b566-a2df5bde6b99 + - b2bb286e-8838-4fc7-9e87-01d3ad70a228 status: 200 OK code: 200 - duration: 44.855677ms + duration: 83.540444ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -2536,9 +2536,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,10 +2546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61e52402-b84d-4d99-aac2-d2f42eaaadae + - 50ecaf15-a6f0-444b-a8ef-dc06433e96c8 status: 200 OK code: 200 - duration: 54.308159ms + duration: 108.15927ms - id: 51 request: proto: HTTP/1.1 @@ -2566,7 +2566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -2585,11 +2585,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,12 +2597,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 110d0094-6845-48a1-8625-3543a3710c0b + - 953b0a1b-949b-4479-a95d-44960a2911e1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.275485ms + duration: 101.808058ms - id: 52 request: proto: HTTP/1.1 @@ -2619,7 +2619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2627,20 +2627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,10 +2648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57f4ac79-40ec-4e45-82e1-5b98b93d2358 + - a6aefcc1-2b77-4a2f-9cb9-1e12818fb89f status: 200 OK code: 200 - duration: 115.325256ms + duration: 147.701374ms - id: 53 request: proto: HTTP/1.1 @@ -2668,7 +2668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2676,20 +2676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2551 + content_length: 2552 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.64.118","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"manual","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2551" + - "2552" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2697,10 +2697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3deec4e9-0c1f-4a31-a912-6b909795e2fe + - c2920df8-e975-49ab-9b5a-d3901bc60e8d status: 200 OK code: 200 - duration: 140.152068ms + duration: 170.362391ms - id: 54 request: proto: HTTP/1.1 @@ -2719,7 +2719,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: PATCH response: proto: HTTP/2.0 @@ -2727,20 +2727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2748,10 +2748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91ee8a75-ea20-467a-97e5-a5d4cef799b0 + - 8cf1595c-aafe-4212-979d-c7add0e4b27c status: 200 OK code: 200 - duration: 330.084307ms + duration: 420.811674ms - id: 55 request: proto: HTTP/1.1 @@ -2768,7 +2768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2776,20 +2776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2282 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,10 +2797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52311f57-81d8-4e88-af87-1bc7ce6cadf6 + - a11c406e-8212-4f88-9271-d7fdf23fe65f status: 200 OK code: 200 - duration: 112.5263ms + duration: 162.579435ms - id: 56 request: proto: HTTP/1.1 @@ -2817,7 +2817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -2825,20 +2825,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2282 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2846,10 +2846,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13352b73-ac41-455b-922c-35c3a738f97b + - 31d04ad0-5094-45fa-968a-d233dd7160f8 status: 200 OK code: 200 - duration: 103.256668ms + duration: 142.319889ms - id: 57 request: proto: HTTP/1.1 @@ -2866,7 +2866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2876,7 +2876,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -2885,9 +2885,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2895,10 +2895,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3012258-9525-4d01-8e04-7f6c1b99a682 + - 9d62af50-cad0-452b-a6b5-fe05ebf53e9b status: 404 Not Found code: 404 - duration: 32.132578ms + duration: 41.806275ms - id: 58 request: proto: HTTP/1.1 @@ -2915,7 +2915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -2925,7 +2925,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2934,9 +2934,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2944,10 +2944,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 711f890c-e9fd-4bda-bbc6-24d027393810 + - c1fc0e03-60e2-4b45-9dc9-f7a0a06340ec status: 200 OK code: 200 - duration: 45.411917ms + duration: 78.365759ms - id: 59 request: proto: HTTP/1.1 @@ -2964,7 +2964,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -2983,9 +2983,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2993,10 +2993,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3888432-1b62-4bc6-a935-f4edc35d3138 + - 7a196706-8f55-4771-950a-3ee1e228c025 status: 200 OK code: 200 - duration: 69.660789ms + duration: 92.364894ms - id: 60 request: proto: HTTP/1.1 @@ -3013,7 +3013,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -3032,11 +3032,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3044,12 +3044,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e621ce4d-fa6f-4609-b88d-78f9a5b14b9f + - 9e6b00fa-0124-4181-8510-ddfe7da82cbe X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.58845ms + duration: 90.253006ms - id: 61 request: proto: HTTP/1.1 @@ -3066,7 +3066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -3085,11 +3085,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3097,12 +3097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb158e5c-4e80-4a9c-9a7f-22c2350b0cb8 + - fa360d34-5874-4ef6-8f99-d1728f2a5650 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.902469ms + duration: 105.202982ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +3119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -3127,20 +3127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 449 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"163.172.173.211","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"c124927e-5eac-4159-9f32-8d6b613e4a97","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "449" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,10 +3148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d3bbb80-97e7-4e9c-8673-2f4c54e59200 + - e82ca257-621e-4251-bf2e-a5b62cb8e2e8 status: 200 OK code: 200 - duration: 90.617934ms + duration: 118.535738ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +3168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -3176,20 +3176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 446 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"e2dcec63-118a-4f15-bd8f-3313840a46a1","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"76cb4b23-c7c1-481a-a70f-393135bcb980","name":"tf-tests-instance-server-ips"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "446" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3197,10 +3197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47c65b8b-950d-4ef5-845e-7a02383ac249 + - b8ead584-55b5-478e-a460-88753722b2c8 status: 200 OK code: 200 - duration: 90.620679ms + duration: 126.80259ms - id: 64 request: proto: HTTP/1.1 @@ -3217,7 +3217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3225,20 +3225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2282 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3246,10 +3246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9b965af-d2b8-4d58-9850-abb00acadb8c + - 377260d9-0e5c-4615-a237-aec2e59d8923 status: 200 OK code: 200 - duration: 81.898902ms + duration: 177.000172ms - id: 65 request: proto: HTTP/1.1 @@ -3266,7 +3266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -3276,7 +3276,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -3285,9 +3285,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,10 +3295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1515976d-d3b6-4341-881a-4e24cee24569 + - abfe5040-2e54-4870-a41c-43c23a5d8e3a status: 404 Not Found code: 404 - duration: 31.166557ms + duration: 28.853042ms - id: 66 request: proto: HTTP/1.1 @@ -3315,7 +3315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -3325,7 +3325,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3334,9 +3334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,10 +3344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1006554e-bed4-4444-8d20-21c71ed09354 + - 8779979e-e807-464e-be83-08bf48277a9b status: 200 OK code: 200 - duration: 50.05042ms + duration: 88.406146ms - id: 67 request: proto: HTTP/1.1 @@ -3364,7 +3364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/user_data method: GET response: proto: HTTP/2.0 @@ -3383,9 +3383,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3393,10 +3393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28853b3a-fff5-4128-894d-50aba948bd18 + - 20eaf5c9-8c35-47ea-a464-afd41f889d95 status: 200 OK code: 200 - duration: 52.024777ms + duration: 106.968832ms - id: 68 request: proto: HTTP/1.1 @@ -3413,7 +3413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/private_nics method: GET response: proto: HTTP/2.0 @@ -3432,11 +3432,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3444,12 +3444,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfe1efe8-d8af-4b22-97a0-440115c4b48f + - 9c0baaa3-4a18-48c7-877c-f1eebcd80dcc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.208318ms + duration: 98.208465ms - id: 69 request: proto: HTTP/1.1 @@ -3466,7 +3466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3474,20 +3474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2288 + content_length: 2282 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:27.917864+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2288" + - "2282" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3495,10 +3495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6c37e0f-4fec-4a08-8f39-a6ad7f7bcfc6 + - 252266dd-7053-4c73-b17e-28cf4f059f11 status: 200 OK code: 200 - duration: 93.784639ms + duration: 166.647392ms - id: 70 request: proto: HTTP/1.1 @@ -3515,7 +3515,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2282 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:03.093745+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2282" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39f12d3e-c132-403e-ba25-adfb18f49abc + status: 200 OK + code: 200 + duration: 149.089247ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -3525,7 +3574,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.031226Z","id":"76e50054-f5e5-4e0e-a23b-b71855446e6b","product_resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.031226Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:03.254804Z","id":"3f54b0a4-1ea4-4ffd-9708-990c3d35dbf9","product_resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:03.254804Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3534,9 +3583,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3544,11 +3593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5220fc9-d908-46d2-a501-0758016e6f41 + - 2f110c44-5511-4615-a58e-ca356d82f036 status: 200 OK code: 200 - duration: 42.607923ms - - id: 71 + duration: 89.065451ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3564,7 +3613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: DELETE response: proto: HTTP/2.0 @@ -3581,9 +3630,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3591,11 +3640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b05b0ce-5898-4ef5-a759-54f01c0280a9 + - 34053a79-ccc9-46fa-9f64-7b2686931ba0 status: 204 No Content code: 204 - duration: 281.490141ms - - id: 72 + duration: 454.650387ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3613,7 +3662,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/action method: POST response: proto: HTTP/2.0 @@ -3623,7 +3672,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action","href_result":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d","id":"380b5a3d-8ed3-4b0e-9357-8fd5642788ce","progress":0,"started_at":"2025-10-08T23:04:36.672083+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/action","href_result":"/servers/76cb4b23-c7c1-481a-a70f-393135bcb980","id":"cdc4bdbe-4664-4a40-a4eb-79960b77600d","progress":0,"started_at":"2025-10-15T15:03:14.150427+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -3632,11 +3681,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/380b5a3d-8ed3-4b0e-9357-8fd5642788ce + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cdc4bdbe-4664-4a40-a4eb-79960b77600d Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3644,11 +3693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 704c7019-6ecb-44cd-ade3-5081839f54a7 + - 7b13d4e7-e261-4e7d-8d9b-c1aa9adb96ab status: 202 Accepted code: 202 - duration: 165.654692ms - - id: 73 + duration: 271.514988ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3664,7 +3713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3672,20 +3721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2304 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:36.552642+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:13.939862+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2310" + - "2304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3693,11 +3742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b59818e4-484f-4581-a261-dd75e264aed4 + - ddabd991-80b3-43df-b73f-2bd373c29035 status: 200 OK code: 200 - duration: 157.188327ms - - id: 74 + duration: 149.949792ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3713,7 +3762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3721,20 +3770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2443 + content_length: 2439 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:38.477887+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"1001","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:16.657451+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2443" + - "2439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3742,11 +3791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbab9b6a-2022-47c6-90eb-2fe509a06435 + - c33bb3cb-b038-40a8-abbd-b62b54797c41 status: 200 OK code: 200 - duration: 116.767965ms - - id: 75 + duration: 158.44487ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3764,7 +3813,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/action method: POST response: proto: HTTP/2.0 @@ -3774,7 +3823,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d/action","href_result":"/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d","id":"90421ed7-1b7f-41c2-876c-7825657d6406","progress":0,"started_at":"2025-10-08T23:04:42.135707+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/76cb4b23-c7c1-481a-a70f-393135bcb980/action","href_result":"/servers/76cb4b23-c7c1-481a-a70f-393135bcb980","id":"84b1d3de-a213-4b39-bf2f-5990ec96ec8a","progress":0,"started_at":"2025-10-15T15:03:19.729886+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3783,11 +3832,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90421ed7-1b7f-41c2-876c-7825657d6406 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/84b1d3de-a213-4b39-bf2f-5990ec96ec8a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3795,11 +3844,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cc73f27-1e32-4687-9dae-06aa39e7a7b6 + - 5d9aa2f6-7cab-45e1-8ae1-e4b1c741c666 status: 202 Accepted code: 202 - duration: 186.583748ms - - id: 76 + duration: 259.153546ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3815,7 +3864,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3823,20 +3872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2406 + content_length: 2402 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.917864+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6b","maintenances":[],"modification_date":"2025-10-08T23:04:41.997562+00:00","name":"tf-tests-instance-server-ips","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"163.172.173.211","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"06ecd92d-b735-42a6-978a-30b0ecc8578c","ipam_id":"c87ea5ef-2e84-489e-894e-d2330e680c35","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"6daffaa4-f676-4953-b1c3-548c8b287939","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:03.093745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-server-ips","id":"76cb4b23-c7c1-481a-a70f-393135bcb980","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"1001","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:07","maintenances":[],"modification_date":"2025-10-15T15:03:19.518616+00:00","name":"tf-tests-instance-server-ips","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"59d6f4b7-f1cc-4328-beff-ec6dc9e04b95","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"46be0999-bf78-47f1-b749-b2c98626f7ba","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2406" + - "2402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3844,11 +3893,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a18363bd-fa65-475d-b229-3ac84c639103 + - 53a31d2f-21ae-42b5-b684-ba403a406d35 status: 200 OK code: 200 - duration: 106.711564ms - - id: 77 + duration: 164.548788ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3864,7 +3913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -3874,7 +3923,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","type":"not_found"}' headers: Content-Length: - "143" @@ -3883,9 +3932,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3893,11 +3942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9b105bb-d47e-4d54-b24a-742395e526dd + - 0f3a3678-06b1-42f5-8af5-c805c090cab6 status: 404 Not Found code: 404 - duration: 51.352159ms - - id: 78 + duration: 46.799058ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3913,7 +3962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -3923,7 +3972,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6daffaa4-f676-4953-b1c3-548c8b287939","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"46be0999-bf78-47f1-b749-b2c98626f7ba","type":"not_found"}' headers: Content-Length: - "143" @@ -3932,9 +3981,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3942,11 +3991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7deafb06-68ca-468a-9569-71ab111e5c15 + - 48f41f1e-2eab-4be3-a67f-74b94b79de4c status: 404 Not Found code: 404 - duration: 31.839241ms - - id: 79 + duration: 28.291111ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3962,7 +4011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: GET response: proto: HTTP/2.0 @@ -3972,7 +4021,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.031226Z","id":"6daffaa4-f676-4953-b1c3-548c8b287939","last_detached_at":"2025-10-08T23:04:43.458799Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.458799Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:03.254804Z","id":"46be0999-bf78-47f1-b749-b2c98626f7ba","last_detached_at":"2025-10-15T15:03:21.364980Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:21.364980Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -3981,9 +4030,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3991,11 +4040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c193fec-4bbf-4e24-bb43-6f9cc621e8d5 + - 30cd8d66-9d72-400d-a43f-85e37060dae6 status: 200 OK code: 200 - duration: 51.571515ms - - id: 80 + duration: 76.5049ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4011,7 +4060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6daffaa4-f676-4953-b1c3-548c8b287939 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/46be0999-bf78-47f1-b749-b2c98626f7ba method: DELETE response: proto: HTTP/2.0 @@ -4028,9 +4077,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4038,11 +4087,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eb2dd2f-793c-4178-8bf6-d9862cc321fe + - bfd9bca0-c4b8-4ff6-9c2e-0db8b3104401 status: 204 No Content code: 204 - duration: 87.270578ms - - id: 81 + duration: 171.848779ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4058,7 +4107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/06ecd92d-b735-42a6-978a-30b0ecc8578c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: DELETE response: proto: HTTP/2.0 @@ -4075,9 +4124,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4085,11 +4134,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99089cc4-9338-46ae-852d-e8d48b13cae1 + - 3b5b4825-f5dc-437b-ac08-faca88c84138 status: 204 No Content code: 204 - duration: 293.596984ms - - id: 82 + duration: 316.297315ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4105,7 +4154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b16d235b-ae02-4c0d-ad23-49d8e569190d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/76cb4b23-c7c1-481a-a70f-393135bcb980 method: GET response: proto: HTTP/2.0 @@ -4115,7 +4164,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b16d235b-ae02-4c0d-ad23-49d8e569190d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"76cb4b23-c7c1-481a-a70f-393135bcb980","type":"not_found"}' headers: Content-Length: - "143" @@ -4124,9 +4173,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:48 GMT + - Wed, 15 Oct 2025 15:03:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4134,7 +4183,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e9ab25c-d135-43eb-a047-cfb8f78abe35 + - a2a98c9a-3cd8-437d-9a44-db2db5bf9c9d status: 404 Not Found code: 404 - duration: 1.08302323s + duration: 72.445462ms diff --git a/internal/services/instance/testdata/server-ipv6.cassette.yaml b/internal/services/instance/testdata/server-ipv6.cassette.yaml index f6c3c15e3..0d534d824 100644 --- a/internal/services/instance/testdata/server-ipv6.cassette.yaml +++ b/internal/services/instance/testdata/server-ipv6.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","type":"routed_ipv6"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf","type":"routed_ipv6"}' form: {} headers: Content-Type: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -38,11 +38,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4390914-cfa4-407c-a25a-c04c7642c46e + - f59a32ee-3893-4e62-b7c1-66ca6f84cd80 status: 201 Created code: 201 - duration: 454.992838ms + duration: 610.897464ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 374 uncompressed: false - body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - "374" @@ -89,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b889466-1216-4e8f-a943-92c7d0e2d0da + - 325953b4-2036-4f73-9b3a-4125e85a4a4d status: 200 OK code: 200 - duration: 73.418974ms + duration: 114.32703ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea3bfa91-07c7-42f2-9c28-b46325ddb76b + - b65bc2a5-b1eb-4ac6-8401-1de00e36dea9 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 51.65228ms + duration: 37.198938ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21b24d10-4dad-49e5-bdb0-d4e6460cfd1a + - dff14c82-ba25-4664-b591-7f4ec7e6f14f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 52.939505ms + duration: 55.185508ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,22 +254,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e78f7a6-e6fd-4b9a-8882-282b61029fb7 + - 43bd59bc-2563-4279-941e-1b10df47c288 status: 200 OK code: 200 - duration: 49.943183ms + duration: 48.941876ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 298 + content_length: 293 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-dazzling-stonebraker","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["c8efb627-e95e-4803-b88a-9dc5775f35e4"],"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-festive-wescoff","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ips":["88201074-761e-4ed1-83b4-f7fc97b5599f"],"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -284,22 +284,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2354 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:31.363775+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2354" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 741d8f9d-c62e-4383-84e5-4963b0195fb1 + - ccf995c0-18c8-4df3-a8f1-e31644f4d6fa status: 201 Created code: 201 - duration: 1.193939045s + duration: 1.688914605s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -335,20 +335,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2354 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:31.363775+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2354" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3a07714-9c40-4ad3-b3b1-5a559d75fb62 + - 94253327-45b8-4765-89a3-ea708461649b status: 200 OK code: 200 - duration: 100.359633ms + duration: 164.594514ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2354 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:29.608006+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:31.363775+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2354" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a72c3349-6892-4286-852a-d8bc866c4748 + - 027e7b63-79ac-4a8a-bda2-d1cfb36111c0 status: 200 OK code: 200 - duration: 101.565567ms + duration: 141.224524ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3cce500-e1a8-4ebc-88aa-437ef4f7e3c9 + - febd384d-2468-4daa-95c2-a50a4a1a2cc3 status: 200 OK code: 200 - duration: 63.353336ms + duration: 88.723987ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action","href_result":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c","id":"3456ebbe-da40-464e-95f6-fb06a4544207","progress":0,"started_at":"2025-10-08T23:04:30.722849+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/action","href_result":"/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb","id":"fa0698a5-40f4-4668-86c6-158676942092","progress":0,"started_at":"2025-10-15T15:03:33.046970+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3456ebbe-da40-464e-95f6-fb06a4544207 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa0698a5-40f4-4668-86c6-158676942092 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3131d9d-65f8-4b98-b744-2584a91e42df + - 6aa313f9-9829-40c4-96c7-9c46182f5f7c status: 202 Accepted code: 202 - duration: 225.061651ms + duration: 263.811427ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -535,20 +535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 2366 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:30.550970+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:32.850950+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2376" + - "2366" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac517bb4-8a04-42a9-966c-e0a8e2862aa0 + - eea90c46-cea5-4f1c-8180-cb226bb0cfa6 status: 200 OK code: 200 - duration: 81.373289ms + duration: 170.164114ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -584,20 +584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2510 + content_length: 2499 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2510" + - "2499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73336b5-1740-447b-83a2-d2b530177047 + - 05b5ccf7-4ea2-41b0-8890-660cd5882d52 status: 200 OK code: 200 - duration: 96.924998ms + duration: 144.614615ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2510 + content_length: 2499 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2510" + - "2499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fce7f10-0869-4974-b34c-6a7a0b3e0421 + - 58b428a1-ae31-4879-aedb-2abc523ec9fa status: 200 OK code: 200 - duration: 99.946255ms + duration: 139.013137ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2629a35c-7f78-45a5-a5f9-ae9493641968 + - e62ebe8a-bc71-4b12-8869-0ff126ca67ab status: 404 Not Found code: 404 - duration: 33.62425ms + duration: 30.537375ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b952625-5805-4fa9-937e-3b91bca18bc3 + - d4c99ab8-af84-4e96-bf9d-7a78a3d201c0 status: 200 OK code: 200 - duration: 46.729027ms + duration: 68.327333ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049f0ff4-4bb8-4fa1-9ecf-2d63862adfc0 + - 04297a63-6fd1-4250-8610-8c789146abee status: 200 OK code: 200 - duration: 61.398853ms + duration: 88.006908ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f6c5352-e7f4-48a7-bbf7-f5a77a468a72 + - 18ec693a-19f7-4916-b1a5-670e5a57d6fd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 43.647328ms + duration: 81.92545ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2510 + content_length: 2499 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2510" + - "2499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9a1c545-ee69-4df2-abc6-c4d2be067fe7 + - a53cfe4e-9435-4af7-befc-f3c9f331e970 status: 200 OK code: 200 - duration: 96.198632ms + duration: 165.061097ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 450 uncompressed: false - body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","name":"tf-srv-dazzling-stonebraker"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","name":"tf-srv-festive-wescoff"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - - "455" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d20755d0-c02a-4231-aa33-b0e6ca5ef328 + - 038b769a-eb7a-4978-b322-0d0749b19fae status: 200 OK code: 200 - duration: 69.322883ms + duration: 120.309782ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2510 + content_length: 2499 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2510" + - "2499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a037171b-2784-4fcb-833d-12c62be0a487 + - 9b72f19e-0013-4667-9cd5-3a5f5b7587f5 status: 200 OK code: 200 - duration: 108.026012ms + duration: 136.537497ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b2abc4c-efa0-4c97-81e5-def5eb00e922 + - 10b5c7e3-f651-40e3-bd88-e39da47b1e4f status: 404 Not Found code: 404 - duration: 34.081427ms + duration: 23.312324ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6f590c6-783b-4f2f-b61f-6a8b789a55f5 + - 2ffef413-eded-4f9d-9a0b-7e5d1bc7a72c status: 200 OK code: 200 - duration: 52.116388ms + duration: 82.699151ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 951df9e3-c4a7-4b33-bb7d-ce43665a8f64 + - 3e3b5ffc-2ef8-4a29-a0b3-b1cf35394872 status: 200 OK code: 200 - duration: 66.214775ms + duration: 103.7683ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06b79581-e44c-41b1-8f4f-4a602929980d + - 63d02fbd-f677-4c5a-8fb6-82a452b65eaf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 65.069243ms + duration: 96.570619ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 455 + content_length: 450 uncompressed: false - body: '{"ip":{"address":null,"id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":"2001:bc8:710:c08f::/64","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","name":"tf-srv-dazzling-stonebraker"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' + body: '{"ip":{"address":null,"id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":"2001:bc8:710:404a::/64","project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","name":"tf-srv-festive-wescoff"},"state":"attached","tags":[],"type":"routed_ipv6","zone":"fr-par-1"}}' headers: Content-Length: - - "455" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3065d5c-dae4-4422-bb04-a246c5c61f95 + - b38da6b0-330b-4995-a94d-1857f1d4296b status: 200 OK code: 200 - duration: 70.655601ms + duration: 124.154719ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2510 + content_length: 2499 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:c08f:dc00:ff:fecc:767b","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecc:767c","id":"c8efb627-e95e-4803-b88a-9dc5775f35e4","ipam_id":"74f54eca-460c-4aac-b0b2-aeb0945225b7","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]},"public_ips":[{"address":"2001:bc8:710:404a:dc00:ff:fecd:b72d","dynamic":false,"family":"inet6","gateway":"fe80::dc00:ff:fecd:b72e","id":"88201074-761e-4ed1-83b4-f7fc97b5599f","ipam_id":"bd3edb31-b05b-4ef6-995d-bb05979599a9","netmask":"64","provisioning_mode":"slaac","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2510" + - "2499" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 198d8fc6-9c2d-478c-b936-5359a6e5d704 + - e9220082-3cf3-4506-a8c0-1fec32e06ab2 status: 200 OK code: 200 - duration: 95.116336ms + duration: 144.831614ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e950ba1-5911-438c-81b2-d82c0bd3174b + - 0c4894f6-adc7-48e4-bf78-5554843e519f status: 404 Not Found code: 404 - duration: 27.801624ms + duration: 28.53401ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 519f35ec-2474-48e7-9fef-ce1137bdb30d + - bbe84bfd-3568-44f2-9b5b-2e99b9e84879 status: 200 OK code: 200 - duration: 41.695663ms + duration: 85.395836ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec00bed8-302e-48c5-a169-81915a21fcdb + - 20e12bb2-bdfb-4cc8-aba9-3142c704c50d status: 200 OK code: 200 - duration: 53.668884ms + duration: 98.324688ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72183ab8-dd49-4459-8421-044bc2bf6c6d + - ff9c892f-5ffc-4ccd-a45d-ba332f43e54a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.930062ms + duration: 106.056619ms - id: 30 request: proto: HTTP/1.1 @@ -1519,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8efb627-e95e-4803-b88a-9dc5775f35e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/88201074-761e-4ed1-83b4-f7fc97b5599f method: DELETE response: proto: HTTP/2.0 @@ -1536,9 +1536,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8118235b-b519-4535-8f1d-1fa23f51625a + - b0d0d3d0-847d-46b6-8a02-006f03df87ea status: 204 No Content code: 204 - duration: 494.638012ms + duration: 610.282729ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cee06e2-dec5-423f-b8eb-3f60392f5712 + - 4da570d6-7bb1-46ce-a7fb-abdd05b655f0 status: 200 OK code: 200 - duration: 90.214133ms + duration: 162.505341ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1623,20 +1623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b0b9aa2-28b2-4509-86de-e4cc6be0c16d + - 25fa27cf-d4c9-43c4-95b3-e7ea299ca3b2 status: 200 OK code: 200 - duration: 113.991573ms + duration: 152.782478ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1672,20 +1672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef68fb6c-939b-4d5d-99ae-9b21ce905408 + - 5c9b2828-5a3e-4a56-b00a-f22e8e95afa6 status: 200 OK code: 200 - duration: 99.462917ms + duration: 149.794357ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1721,20 +1721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88939e5a-117c-421d-a922-86285c48f2b6 + - f89be135-578f-4a9d-b868-5c374582e34b status: 200 OK code: 200 - duration: 113.999997ms + duration: 152.248958ms - id: 35 request: proto: HTTP/1.1 @@ -1762,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1772,7 +1772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -1781,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e395256b-c171-4136-83b8-d06481dbce7c + - 73718c56-7ddf-4059-a03c-b3850b51f4a3 status: 404 Not Found code: 404 - duration: 42.301585ms + duration: 27.287314ms - id: 36 request: proto: HTTP/1.1 @@ -1811,7 +1811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -1821,7 +1821,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1830,9 +1830,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08009915-c2e8-4876-be24-d98017ba0f30 + - 50426a05-0b9b-4f89-9efb-2fceb8145299 status: 200 OK code: 200 - duration: 39.994631ms + duration: 87.037563ms - id: 37 request: proto: HTTP/1.1 @@ -1860,7 +1860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data method: GET response: proto: HTTP/2.0 @@ -1879,9 +1879,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1de85de3-fa82-49a6-aabc-4da52a79f5c2 + - f05fdc18-c3ec-4dc6-9b67-187120c743ba status: 200 OK code: 200 - duration: 59.770286ms + duration: 95.681153ms - id: 38 request: proto: HTTP/1.1 @@ -1909,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics method: GET response: proto: HTTP/2.0 @@ -1928,11 +1928,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,12 +1940,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 049f7e8d-e4f9-4081-994b-5916a6c970a6 + - cc886497-982a-4475-829f-8fe7bf9b59e5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.192436ms + duration: 102.851103ms - id: 39 request: proto: HTTP/1.1 @@ -1962,7 +1962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -1970,20 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d09fc84e-1579-4bb2-aa83-6342292874d6 + - b47bdcc7-4491-4b8a-bcc1-978f127d8fbe status: 200 OK code: 200 - duration: 103.22096ms + duration: 146.594021ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +2011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2019,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2040,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740ab788-8676-4ad8-ae9b-20ea69df7413 + - 46921ca0-fc1d-48f2-b56b-a074d2cd3d06 status: 200 OK code: 200 - duration: 111.838944ms + duration: 156.946834ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +2060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -2070,7 +2070,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -2079,9 +2079,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98762eb7-f815-4980-83ee-e5fb6007fff8 + - a2831dc3-d483-464d-bd05-bf5c4ab64be3 status: 404 Not Found code: 404 - duration: 26.235412ms + duration: 25.656929ms - id: 42 request: proto: HTTP/1.1 @@ -2109,7 +2109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -2119,7 +2119,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.714988Z","id":"c33281a0-0810-47aa-9163-9fe1a2f2b55f","product_resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.714988Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:31.512578Z","id":"cd8fe581-7ab1-4d6c-9e84-6da49da57472","product_resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:31.512578Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2128,9 +2128,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53b0fc3d-0ce1-44b2-bd38-9ef043329157 + - 2683fac5-c1c3-471c-8e2e-3a81bdf3c729 status: 200 OK code: 200 - duration: 44.401915ms + duration: 78.411216ms - id: 43 request: proto: HTTP/1.1 @@ -2158,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/user_data method: GET response: proto: HTTP/2.0 @@ -2177,9 +2177,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51dc9273-97ae-4951-9c59-080fa07a3c7d + - 29e63e57-c3ea-4a70-9527-cb471170764e status: 200 OK code: 200 - duration: 60.866717ms + duration: 97.011167ms - id: 44 request: proto: HTTP/1.1 @@ -2207,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/private_nics method: GET response: proto: HTTP/2.0 @@ -2226,11 +2226,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,12 +2238,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36b3470c-7f6f-49bd-9f05-a839c9618ea4 + - 0138d8a2-09a6-4ff9-bb4a-1d979786b5ba X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.225642ms + duration: 100.9023ms - id: 45 request: proto: HTTP/1.1 @@ -2260,7 +2260,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2268,20 +2268,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1899 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:32.959351+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1899" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2289,11 +2289,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce5acae-f2b4-440e-9d80-5de83c3e49f9 + - 19cc46ea-06a0-492f-a74f-909c258aa9f5 status: 200 OK code: 200 - duration: 115.378542ms + duration: 146.248804ms - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1899 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:35.089165+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1899" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8840ba71-6697-4831-a7eb-68a9191fcb8a + status: 200 OK + code: 200 + duration: 128.201368ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2311,7 +2360,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/action method: POST response: proto: HTTP/2.0 @@ -2321,7 +2370,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c/action","href_result":"/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c","id":"44bd5d5f-d152-481f-b75e-3b26834764c3","progress":0,"started_at":"2025-10-08T23:04:40.058191+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb/action","href_result":"/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb","id":"89495860-8816-4e43-96e1-cc43829050a9","progress":0,"started_at":"2025-10-15T15:03:43.611276+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2330,11 +2379,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/44bd5d5f-d152-481f-b75e-3b26834764c3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/89495860-8816-4e43-96e1-cc43829050a9 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2342,11 +2391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03d0c9f1-bb45-4211-8751-517462b21b3c + - 00e031af-19f8-49e5-9478-4d502822f18a status: 202 Accepted code: 202 - duration: 174.334729ms - - id: 47 + duration: 277.571693ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2362,7 +2411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2370,20 +2419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1873 + content_length: 1862 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:43.382698+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1873" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2391,11 +2440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 770b4016-0864-4810-88e5-81347036ce54 + - ebed0da6-e0d1-4621-b606-ffe8b8c2caec status: 200 OK code: 200 - duration: 110.383257ms - - id: 48 + duration: 167.776364ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2411,7 +2460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2419,20 +2468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1873 + content_length: 1862 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:43.382698+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1873" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2440,11 +2489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fdaaf9d-1c4e-4716-bb19-25e99260f8d3 + - 271cf6c4-98ba-4013-92bb-f27ecfd69396 status: 200 OK code: 200 - duration: 111.655812ms - - id: 49 + duration: 173.999806ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2460,7 +2509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2468,20 +2517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1873 + content_length: 1862 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.608006+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dazzling-stonebraker","id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"37","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7b","maintenances":[],"modification_date":"2025-10-08T23:04:39.924265+00:00","name":"tf-srv-dazzling-stonebraker","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"83aadcdd-b842-4098-b353-7cca269a5f27","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:43.382698+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1873" + - "1862" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2489,11 +2538,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97fa6a4f-4373-4eb7-ba44-09cf9589ea8f + - a5ab5a62-e35e-46a9-a144-dd8e681dfda4 status: 200 OK code: 200 - duration: 95.139994ms - - id: 50 + duration: 166.692779ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1862 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:31.363775+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-festive-wescoff","id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"801","node_id":"75","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:2d","maintenances":[],"modification_date":"2025-10-15T15:03:43.382698+00:00","name":"tf-srv-festive-wescoff","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1862" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39d9fbe6-0273-49cb-a912-270b363e9b0b + status: 200 OK + code: 200 + duration: 162.49087ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2509,7 +2607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2519,7 +2617,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","type":"not_found"}' headers: Content-Length: - "143" @@ -2528,9 +2626,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2538,11 +2636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c74923d-5c00-44aa-b628-e8db0f01a7f6 + - dcd3a93e-0528-4858-9078-99d54f1fd7ad status: 404 Not Found code: 404 - duration: 41.8261ms - - id: 51 + duration: 54.828175ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2558,7 +2656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -2568,7 +2666,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"83aadcdd-b842-4098-b353-7cca269a5f27","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","type":"not_found"}' headers: Content-Length: - "143" @@ -2577,9 +2675,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2587,11 +2685,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fccc2533-9e27-4e40-ad77-5e1e5ec9d4bc + - 0cee87c7-7cfc-42a1-bcef-f57b933d4710 status: 404 Not Found code: 404 - duration: 35.890325ms - - id: 52 + duration: 29.765935ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2607,7 +2705,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: GET response: proto: HTTP/2.0 @@ -2617,7 +2715,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.714988Z","id":"83aadcdd-b842-4098-b353-7cca269a5f27","last_detached_at":"2025-10-08T23:04:52.908376Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:52.908376Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:31.512578Z","id":"52f1a3ba-dc8f-4840-81dd-37c87fa341ae","last_detached_at":"2025-10-15T15:04:00.154722Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:00.154722Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2626,9 +2724,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2636,11 +2734,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41422517-96f0-4e54-96f4-dac7b2ef73f4 + - 220fc152-a971-4c7c-b536-0c5eb964ba2e status: 200 OK code: 200 - duration: 39.596751ms - - id: 53 + duration: 96.349426ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2656,7 +2754,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/83aadcdd-b842-4098-b353-7cca269a5f27 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/52f1a3ba-dc8f-4840-81dd-37c87fa341ae method: DELETE response: proto: HTTP/2.0 @@ -2673,9 +2771,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,11 +2781,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12d2cb7f-510c-4a25-a590-0d6d195fe2a9 + - 9b2efd78-b31a-4c62-bc09-03dee9e2e555 status: 204 No Content code: 204 - duration: 76.917726ms - - id: 54 + duration: 180.619578ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2703,7 +2801,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9e0e3998-f6c2-4197-946f-a0841a15c11c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ed235d1e-32e6-4ccf-86bd-2517060152bb method: GET response: proto: HTTP/2.0 @@ -2713,7 +2811,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9e0e3998-f6c2-4197-946f-a0841a15c11c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ed235d1e-32e6-4ccf-86bd-2517060152bb","type":"not_found"}' headers: Content-Length: - "143" @@ -2722,9 +2820,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,7 +2830,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb306cc5-f8a8-4a6c-b670-f22402d8e4ae + - b770fae5-8bbc-4d76-8c5c-8456071b14e7 status: 404 Not Found code: 404 - duration: 50.170008ms + duration: 48.041484ms diff --git a/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml b/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml index 0a155c1c9..c53c91a8c 100644 --- a/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate-invalid-local-volume-size.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1936205d-90ac-4582-9d0b-aac120e4d614 + - d3dbb43a-4cc8-48e9-b1a4-02bb2ab9d67b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.149342ms + duration: 34.64345ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ed0e9a-a2aa-4870-ab18-a5deef913b86 + - d990a666-f848-489c-a8de-fa52697f4650 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.016006ms + duration: 39.876596ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2a326c2-5845-46b1-964d-a9e58c766f24 + - 42991443-1338-46a9-bae3-333aaf068433 status: 200 OK code: 200 - duration: 56.418199ms + duration: 55.57291ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 274 + content_length: 280 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-vibrant-raman","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":80000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-condescending-payne","dynamic_ip_required":false,"commercial_type":"DEV1-L","image":"ec31d73d-ca36-4536-adf4-0feb76d30379","volumes":{"0":{"boot":false,"size":80000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2166 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:04.748085+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2166" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28c7b083-0d99-48d3-a989-8d0458a80ab4 + - 93d82061-3562-453e-aa8b-6eb1ca8e6043 status: 201 Created code: 201 - duration: 340.603525ms + duration: 861.941507ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2166 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:04.748085+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2166" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9904fc67-a573-4841-827c-edcbc40a95f0 + - 1f35f615-3a27-47a3-bee1-184211e0b5a7 status: 200 OK code: 200 - duration: 83.712043ms + duration: 130.91082ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2166 + content_length: 2184 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.359297+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:04.748085+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2166" + - "2184" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c7d1926-f5ad-4e47-9a81-8a0a29f0391f + - 8565975e-8ed6-4064-b73c-6408cf2348bd status: 200 OK code: 200 - duration: 77.833403ms + duration: 146.784567ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action","href_result":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca","id":"1d92b0fb-bf5e-4f02-bb36-ead34d115708","progress":0,"started_at":"2025-10-08T23:04:28.092700+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a394742a-d4d8-4172-a84d-702023a121bd/action","href_result":"/servers/a394742a-d4d8-4172-a84d-702023a121bd","id":"6a20fa11-e86e-412e-bef4-a1975b3ca717","progress":0,"started_at":"2025-10-15T15:03:05.490247+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1d92b0fb-bf5e-4f02-bb36-ead34d115708 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6a20fa11-e86e-412e-bef4-a1975b3ca717 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdfbd82d-ccf8-4166-a679-9783adcc509b + - d1ded273-35ec-4426-ba5d-3a460ec4cf46 status: 202 Accepted code: 202 - duration: 424.233296ms + duration: 262.121342ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2188 + content_length: 2206 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:05.290072+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2188" + - "2206" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb592db7-5782-4898-9dc5-0e24534eb318 + - 5eeea1a8-57bf-4ab8-a61f-2b489974e615 status: 200 OK code: 200 - duration: 84.333824ms + duration: 142.547226ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:05.290072+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2291" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2904a70d-734e-45ec-9454-4430e07fae30 + - 03746614-23f4-41c6-aa6a-f3e6d95de562 status: 200 OK code: 200 - duration: 83.040096ms + duration: 144.341355ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2291 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:27.717826+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:05.290072+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2291" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5458aef8-4e92-48df-abfe-4d4d7f77c6b1 + - 06a552a0-b5c0-4aea-8fa8-b7f793d56d07 status: 200 OK code: 200 - duration: 95.22132ms + duration: 112.203104ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:05.290072+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8224a58-d3cc-4f5e-90e7-2085624473d5 + - 3cb52e11-4c12-47a1-98ac-54885594f1e9 status: 200 OK code: 200 - duration: 101.485702ms + duration: 117.63562ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 909a4a71-f2a3-438d-b55b-4ada0d362a72 + - 1c1258f9-5e52-4874-ba4c-f13100a037e2 status: 200 OK code: 200 - duration: 94.1701ms + duration: 141.842584ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 2341 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "524" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 858db127-980e-4a66-929a-7da507188f66 + - ed64887a-4ca9-48db-b2e4-361c5f8164d8 status: 200 OK code: 200 - duration: 68.735002ms + duration: 170.413159ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 530 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "530" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3fb0fb40-99a8-4028-8951-3e385d5d7792 + status: 200 OK + code: 200 + duration: 108.894704ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,11 +748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70b1e8b-f0c9-483c-8d45-92ba15b37995 + - 603f6fce-fb9a-4d6b-b9be-1142044413d6 status: 200 OK code: 200 - duration: 56.984223ms - - id: 14 + duration: 93.277496ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -719,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +787,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,13 +799,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70be8578-5ff4-40bb-a594-4cfb5f4d7907 + - 6b8554f7-9121-4a1b-afc5-af546622691b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.033991ms - - id: 15 + duration: 92.087506ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -772,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/private_nics method: GET response: proto: HTTP/2.0 @@ -791,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,13 +852,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2e95668-4c12-4d6e-b278-88d97a2195c3 + - f24e67b4-49ba-4029-8005-09a9bf3e1328 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.432775ms - - id: 16 + duration: 87.996809ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -825,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -833,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,11 +903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef8a01b4-e8f6-4d65-9b17-bf0ee21152b2 + - 43c3267c-55c9-4d7a-bc4c-b3a69b34e546 status: 200 OK code: 200 - duration: 94.604625ms - - id: 17 + duration: 121.138452ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -874,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f method: GET response: proto: HTTP/2.0 @@ -882,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 530 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "524" + - "530" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,11 +952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9c4032b-8140-4b8d-a105-150b49fabcbf + - b0a58033-7c9b-4cbf-91b0-818db172e602 status: 200 OK code: 200 - duration: 53.548358ms - - id: 18 + duration: 124.974131ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -923,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/user_data method: GET response: proto: HTTP/2.0 @@ -942,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,11 +1001,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d9e7859-bbec-4141-b40e-57fe67fc95cd + - eaa65635-dcbf-40d1-8ab2-8647e4e4d846 status: 200 OK code: 200 - duration: 63.781525ms - - id: 19 + duration: 108.114784ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -972,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/private_nics method: GET response: proto: HTTP/2.0 @@ -991,11 +1040,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,13 +1052,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8913d2d7-ae18-457c-baa8-55c1f2b275b4 + - 0b103f47-b30b-42e6-9d59-8d2511fdd950 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 71.156167ms - - id: 20 + duration: 89.650298ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1025,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -1033,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,11 +1103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfbfd799-2bfc-4028-b003-a19fad6c34ff + - 3afebee5-84ef-4de6-9869-43c0ecac94c3 status: 200 OK code: 200 - duration: 74.290673ms - - id: 21 + duration: 143.502326ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1082,22 +1131,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1105,13 +1154,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8a66502-730f-4215-ade5-2f22cb7769e9 + - 235257f3-a97e-4529-8fb6-f4d6df53483b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.553729ms - - id: 22 + duration: 42.763155ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1135,22 +1184,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1158,13 +1207,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8804ac3-1047-47fa-b31c-37e5f1d12a99 + - 2d2e7df7-f324-4311-945d-e21f67b99ad3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 40.778753ms - - id: 23 + duration: 48.370444ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1180,7 +1229,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -1188,20 +1237,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2322 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:41.537038+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2322" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1209,11 +1258,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 757809f8-adba-4889-8196-3f1c0e95a192 + - 780c2da5-f9c3-4978-b429-176925a2b65a status: 200 OK code: 200 - duration: 86.625193ms - - id: 24 + duration: 122.084967ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2341 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:22.749073+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2341" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d160b66d-e2e2-4afe-b64c-3f7aaa339004 + status: 200 OK + code: 200 + duration: 143.379657ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1231,7 +1329,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd/action method: POST response: proto: HTTP/2.0 @@ -1241,7 +1339,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca/action","href_result":"/servers/287e94f8-cae8-40f3-bd81-8687b148ffca","id":"a2b0e947-4590-4dc8-9bc5-ca4112099fa0","progress":0,"started_at":"2025-10-08T23:04:45.178876+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/a394742a-d4d8-4172-a84d-702023a121bd/action","href_result":"/servers/a394742a-d4d8-4172-a84d-702023a121bd","id":"10bb0ebe-71b4-497d-bc05-9ae60e1f4d56","progress":0,"started_at":"2025-10-15T15:03:28.461715+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1250,11 +1348,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a2b0e947-4590-4dc8-9bc5-ca4112099fa0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10bb0ebe-71b4-497d-bc05-9ae60e1f4d56 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1262,11 +1360,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91a801f1-bd3a-4124-bf72-a0b1300cef5b + - 5cc04f54-33d0-4352-8fd3-f0b64225f6c8 status: 202 Accepted code: 202 - duration: 171.158029ms - - id: 25 + duration: 296.253188ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1282,7 +1380,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -1290,20 +1388,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2285 + content_length: 2304 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-08T23:04:27.359297+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vibrant-raman","id":"287e94f8-cae8-40f3-bd81-8687b148ffca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"93","hypervisor_id":"504","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:5b","maintenances":[],"modification_date":"2025-10-08T23:04:45.046279+00:00","name":"tf-srv-vibrant-raman","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:27.359297+00:00","export_uri":null,"id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","modification_date":"2025-10-08T23:04:27.359297+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"287e94f8-cae8-40f3-bd81-8687b148ffca","name":"tf-srv-vibrant-raman"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:28.219134+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2285" + - "2304" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1311,11 +1409,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d08db91-89ae-4e40-9dd0-c0f302fd0f57 + - a80a4ff1-8948-44d9-8a37-2e66067bb78e status: 200 OK code: 200 - duration: 79.962851ms - - id: 26 + duration: 122.659455ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2304 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:28.219134+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2304" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7a7d9c64-7393-4fc0-8634-4a7f07918909 + status: 200 OK + code: 200 + duration: 141.630485ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2304 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-L","creation_date":"2025-10-15T15:03:04.748085+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-payne","id":"a394742a-d4d8-4172-a84d-702023a121bd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:46.109401+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"ec31d73d-ca36-4536-adf4-0feb76d30379","modification_date":"2025-09-12T09:11:46.109401+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"1973043b-32c4-4d52-baf4-5c99b42b4e39","name":"Ubuntu 22.04 Jammy Jellyfish","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1701","node_id":"17","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0d","maintenances":[],"modification_date":"2025-10-15T15:03:28.219134+00:00","name":"tf-srv-condescending-payne","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:04.748085+00:00","export_uri":null,"id":"fcdf807d-f73b-4961-845e-fefc8006d34f","modification_date":"2025-10-15T15:03:04.748085+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"a394742a-d4d8-4172-a84d-702023a121bd","name":"tf-srv-condescending-payne"},"size":80000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2304" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dcc8d80a-5a3d-43c4-a654-ea539fe7b867 + status: 200 OK + code: 200 + duration: 171.149768ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1331,7 +1527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -1341,7 +1537,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"287e94f8-cae8-40f3-bd81-8687b148ffca","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a394742a-d4d8-4172-a84d-702023a121bd","type":"not_found"}' headers: Content-Length: - "143" @@ -1350,9 +1546,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1360,11 +1556,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6df40c18-d75d-4fe0-b4e7-94c1e8d5d0cb + - b6f5c198-129a-45a5-812e-b91b00423f4b status: 404 Not Found code: 404 - duration: 50.153918ms - - id: 27 + duration: 53.435535ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1380,7 +1576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f method: GET response: proto: HTTP/2.0 @@ -1390,7 +1586,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fcdf807d-f73b-4961-845e-fefc8006d34f","type":"not_found"}' headers: Content-Length: - "143" @@ -1399,9 +1595,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1409,11 +1605,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26258726-55cd-4379-9063-e361c7947164 + - f90e644d-7f10-4f44-b186-f541bcc0a88b status: 404 Not Found code: 404 - duration: 34.700091ms - - id: 28 + duration: 30.381674ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1429,7 +1625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7ae3bd38-c476-465e-9c0f-fec9c794fd36 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fcdf807d-f73b-4961-845e-fefc8006d34f method: GET response: proto: HTTP/2.0 @@ -1439,7 +1635,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"7ae3bd38-c476-465e-9c0f-fec9c794fd36","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"fcdf807d-f73b-4961-845e-fefc8006d34f","type":"not_found"}' headers: Content-Length: - "127" @@ -1448,9 +1644,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1458,11 +1654,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 837f29c9-1303-4363-a098-d64f54262b49 + - 7e9c792b-8167-4126-957a-5dc599ef7f87 status: 404 Not Found code: 404 - duration: 18.63988ms - - id: 29 + duration: 20.10888ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1478,7 +1674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/287e94f8-cae8-40f3-bd81-8687b148ffca + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a394742a-d4d8-4172-a84d-702023a121bd method: GET response: proto: HTTP/2.0 @@ -1488,7 +1684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"287e94f8-cae8-40f3-bd81-8687b148ffca","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a394742a-d4d8-4172-a84d-702023a121bd","type":"not_found"}' headers: Content-Length: - "143" @@ -1497,9 +1693,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1507,7 +1703,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 766ab877-6c5e-4fcc-881f-e25eeb7ca1f7 + - 5a2c5d30-648d-43b5-b456-da6289b10487 status: 404 Not Found code: 404 - duration: 39.269005ms + duration: 48.913008ms diff --git a/internal/services/instance/testdata/server-migrate.cassette.yaml b/internal/services/instance/testdata/server-migrate.cassette.yaml index 04ba0c6b8..be053510e 100644 --- a/internal/services/instance/testdata/server-migrate.cassette.yaml +++ b/internal/services/instance/testdata/server-migrate.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49900446-95ec-4ff8-aad3-24607f2496a2 + - a52516d7-fe3b-4acb-abd1-2ac1e40239d1 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.916118ms + duration: 35.704448ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39763fc6-8c39-461b-b34c-aae2aeb91fe7 + - ad94e6f7-e76a-4d0c-b57a-13e25c0f52ae X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.112265ms + duration: 40.313835ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ae934d9-dce4-4010-9937-3f25bb724751 + - 45b014ee-c726-44a3-98fd-5ca15ed988fd status: 200 OK code: 200 - duration: 72.947601ms + duration: 48.713927ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 235 + content_length: 242 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-fervent-noyce","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-romantic-ardinghelli","dynamic_ip_required":false,"commercial_type":"PRO2-XXS","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:04.915813+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a803fbb1-82ea-4f4e-b29f-7d38ce81f73b + - 9c9faf03-992b-4847-a2ce-4784c1d390d1 status: 201 Created code: 201 - duration: 652.94855ms + duration: 2.678185328s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:04.915813+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06e60187-d671-455e-8cda-78c50a6725f0 + - 9be51cad-ebaf-4aa1-9208-3a6fa0457063 status: 200 OK code: 200 - duration: 109.033624ms + duration: 138.749261ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:27.319140+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:04.915813+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7897e872-db27-4f1d-82f2-09a35d8e3e66 + - 6e59676e-f774-4db1-b789-9a694e1a1431 status: 200 OK code: 200 - duration: 90.991148ms + duration: 165.542632ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16625419-1407-49a7-a02b-c8c0ce84dca2 + - ecc53b4d-979e-4a2b-9f0e-7a09a9f64ecf status: 200 OK code: 200 - duration: 46.747443ms + duration: 1.31377485s - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"7e384088-2603-42a6-bf45-073519b9a6c0","progress":0,"started_at":"2025-10-08T23:04:28.263588+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"aab4edd0-2083-4501-a194-eaf105197f83","progress":0,"started_at":"2025-10-15T15:03:08.656424+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7e384088-2603-42a6-bf45-073519b9a6c0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aab4edd0-2083-4501-a194-eaf105197f83 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3b196e4-8b3e-4bad-a2a2-973c7ebc7618 + - 06c33f06-c0e2-44e9-bf59-3b65861e2738 status: 202 Accepted code: 202 - duration: 209.496699ms + duration: 229.02103ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1764 + content_length: 1778 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:28.104121+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:08.481200+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1764" + - "1778" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc9c3186-8c35-4257-a1fc-42825339da1f + - 10372b55-6537-4ec2-a503-d639c78b0f90 status: 200 OK code: 200 - duration: 107.333934ms + duration: 172.434509ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d9f4a2f-c7eb-4f75-bedc-1fe7515ffc15 + - b43fa98d-9338-4f5d-b99a-fcd5210a5ef3 status: 200 OK code: 200 - duration: 117.057755ms + duration: 157.703321ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1e775b-affd-4f62-b672-48d2599605a3 + - c3aacddb-a699-409d-a632-04ead971fcbe status: 200 OK code: 200 - duration: 112.468443ms + duration: 154.056477ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68eb3617-5c9f-4426-9fbc-921790f6a33a + - 8af59901-d049-4403-ba46-a95a6fb81679 status: 404 Not Found code: 404 - duration: 45.539915ms + duration: 27.152175ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 771323a9-c6c9-4957-9414-8cd63ca41e59 + - 373caeb5-d91e-4973-850c-e18571c0b9c4 status: 200 OK code: 200 - duration: 47.364515ms + duration: 92.333957ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78b42d90-d913-4602-bbb6-1828d978b77d + - 564f8aa1-6236-42ca-abb4-ae9bc5adf722 status: 200 OK code: 200 - duration: 56.085992ms + duration: 105.834898ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 263ecef9-34b8-4538-b0d4-e6be4efd5933 + - a705b19a-2dca-40ad-bb37-e5ccc996490b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 50.612332ms + duration: 111.506919ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -791,11 +791,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,12 +803,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 862473bd-b07f-4dd6-80aa-85dfa88bded3 + - b9c85bc7-e4a9-43ad-9a75-1f3f328b5072 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.115627ms + duration: 88.262898ms - id: 16 request: proto: HTTP/1.1 @@ -825,7 +825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -833,20 +833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02e6341a-ff0c-4ff1-84a5-520e0226318f + - 8f65d600-a02c-45ab-8dfb-f93c36c643eb status: 200 OK code: 200 - duration: 113.814036ms + duration: 176.916308ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3a87039-8c7d-46d1-8683-77164078b122 + - 7ff705b9-9de9-43a0-9e9b-3037c164b580 status: 404 Not Found code: 404 - duration: 26.716744ms + duration: 25.662743ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78414028-71ed-4a24-91ba-e98af8643291 + - a243d7d4-2e55-472f-a2a8-cd887ef20ed2 status: 200 OK code: 200 - duration: 50.324278ms + duration: 89.380753ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -991,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c088bd5-5eab-48aa-8cc1-d97f8eb6c95a + - b5d9207c-130f-453d-80c8-a1de60296e98 status: 200 OK code: 200 - duration: 56.326417ms + duration: 105.554825ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -1040,11 +1040,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,12 +1052,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f1ba5c7-c9b8-4cca-82cc-26567c85ff56 + - 9d476bd1-b81d-4d88-8ee7-144eee295da9 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.948244ms + duration: 120.030332ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1082,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f6a31e8-5c1f-41ae-9933-1fc9e2edc776 + - 3dedd920-4184-4409-b757-ede3ce4a0f61 status: 200 OK code: 200 - duration: 91.131776ms + duration: 150.978982ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -1133,7 +1133,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -1142,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81833ad-9907-4710-a32d-c35858f1e6d6 + - 493a3137-c9e1-4369-a18f-d67e23fa1819 status: 404 Not Found code: 404 - duration: 24.991959ms + duration: 25.150363ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -1182,7 +1182,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1191,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad45e7d3-0a3a-4a8a-95fd-23802691aae7 + - 81514dc3-ff31-467e-bfee-6502206eb809 status: 200 OK code: 200 - duration: 37.030331ms + duration: 83.202115ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a01c5e38-7ef6-4b7e-bc13-b4961e09e662 + - e5d90f21-5a7e-4f5b-bfd7-2c9f4b21c2a0 status: 200 OK code: 200 - duration: 52.023275ms + duration: 96.220923ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -1289,11 +1289,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,12 +1301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aa7a010-5834-4428-8476-0299deceb29d + - 44990fb9-6d1f-4de3-a7a3-d2c72c73c3b3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 47.987829ms + duration: 102.573738ms - id: 26 request: proto: HTTP/1.1 @@ -1323,7 +1323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1331,20 +1331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0144bb57-f638-45ac-9b9a-47f3736d9578 + - 4ca7bb90-5b96-468d-a073-f5eea04b94ba status: 200 OK code: 200 - duration: 103.331426ms + duration: 161.915488ms - id: 27 request: proto: HTTP/1.1 @@ -1380,22 +1380,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,12 +1403,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 339fe75a-61dd-410a-8dcd-88e61671d771 + - 665ec3cc-ea52-490c-b4de-237beed1e592 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 44.076073ms + duration: 133.340998ms - id: 28 request: proto: HTTP/1.1 @@ -1433,22 +1433,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1456,12 +1456,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8995c68b-ee11-4f78-8ae3-d8675d628355 + - 49089980-ddb4-4f67-83de-75fb03670c0e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 114.967413ms + duration: 42.665468ms - id: 29 request: proto: HTTP/1.1 @@ -1478,7 +1478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1486,20 +1486,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1507,10 +1507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc7c8305-d08f-462e-8c3d-96adab78a9c5 + - 5df1e7db-53ee-4620-98b7-266cef63456a status: 200 OK code: 200 - duration: 106.055812ms + duration: 137.132244ms - id: 30 request: proto: HTTP/1.1 @@ -1535,22 +1535,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1558,12 +1558,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0cf2f56-24e1-4af5-bd50-4e26d9c74304 + - b6ac2f85-70ce-48ff-910d-245e457bfd36 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.319456ms + duration: 154.188818ms - id: 31 request: proto: HTTP/1.1 @@ -1588,22 +1588,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1611,12 +1611,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c2eee99-691d-47ad-a7e1-9cae73774b8c + - 83876779-06d0-426e-a4d0-cf1f163b7f5b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.248164ms + duration: 47.342573ms - id: 32 request: proto: HTTP/1.1 @@ -1633,7 +1633,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1641,20 +1641,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1662,10 +1662,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 388fb781-7b32-403f-b0e9-4cf6ec4fd667 + - a327a078-f054-49d0-b3f9-d157fd6692ff status: 200 OK code: 200 - duration: 129.851114ms + duration: 139.626808ms - id: 33 request: proto: HTTP/1.1 @@ -1682,7 +1682,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1690,20 +1690,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1711,10 +1711,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 456dc7b9-8776-4680-bea6-ea02d620a848 + - 99ca8ddc-9af4-45d0-adfb-a408bf0ba4f1 status: 200 OK code: 200 - duration: 102.242338ms + duration: 134.346944ms - id: 34 request: proto: HTTP/1.1 @@ -1731,7 +1731,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1739,20 +1739,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1760,10 +1760,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41282bb2-dd18-4811-bbad-50aa61c7c6f5 + - 032a7af1-3fb6-46f5-807c-b91020982398 status: 200 OK code: 200 - duration: 103.427684ms + duration: 145.79526ms - id: 35 request: proto: HTTP/1.1 @@ -1780,7 +1780,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1788,20 +1788,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1899 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:31.012059+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:10.859408+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1899" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,10 +1809,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7ab6d82-160a-49d4-aa9e-0b881087a5ae + - c18d9def-b92e-4c1f-96bb-95945e79ff12 status: 200 OK code: 200 - duration: 90.50298ms + duration: 168.945975ms - id: 36 request: proto: HTTP/1.1 @@ -1829,7 +1829,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -1839,7 +1839,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1848,9 +1848,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1858,10 +1858,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404956a3-442c-4838-b236-d5eeee8ad849 + - 09d95289-9e6c-4448-8cc8-215bf27c464d status: 200 OK code: 200 - duration: 49.801529ms + duration: 79.694502ms - id: 37 request: proto: HTTP/1.1 @@ -1880,7 +1880,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -1890,7 +1890,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"f1797688-7d48-4737-b298-871f073bf0a2","progress":0,"started_at":"2025-10-08T23:04:36.227956+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"1113d751-8b07-4e61-bee8-253cc76af5d8","progress":0,"started_at":"2025-10-15T15:03:17.635629+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -1899,11 +1899,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f1797688-7d48-4737-b298-871f073bf0a2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1113d751-8b07-4e61-bee8-253cc76af5d8 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1911,10 +1911,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11cd23bb-ed76-4bae-a586-c9d1102dfac6 + - 5662dc70-6d07-4615-93db-622da80d1342 status: 202 Accepted code: 202 - duration: 178.737047ms + duration: 266.258977ms - id: 38 request: proto: HTTP/1.1 @@ -1931,7 +1931,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1939,20 +1939,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1960,10 +1960,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d5d2867-3cc3-4e72-8641-deac38d65997 + - 7a02d59f-af4f-4ce9-9dcf-a176f7f444ff status: 200 OK code: 200 - duration: 89.364301ms + duration: 140.126846ms - id: 39 request: proto: HTTP/1.1 @@ -1980,7 +1980,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -1988,20 +1988,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2009,10 +2009,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8d14331-0f7f-4f2e-8f02-844e589666f7 + - fcef3821-b4fd-4cb4-879e-12b915fe8662 status: 200 OK code: 200 - duration: 106.140887ms + duration: 113.495523ms - id: 40 request: proto: HTTP/1.1 @@ -2029,7 +2029,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2037,20 +2037,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2058,10 +2058,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8616b6d-36b0-4144-bc0e-54af4c484849 + - 6acf582b-dcc6-4e63-bd95-1d69b4f060b2 status: 200 OK code: 200 - duration: 98.99637ms + duration: 226.634169ms - id: 41 request: proto: HTTP/1.1 @@ -2078,7 +2078,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2086,20 +2086,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2107,10 +2107,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 807a5bac-4362-433b-82bc-b882202f2140 + - 57ede5f8-99b7-44af-b267-65d5248df44e status: 200 OK code: 200 - duration: 105.976548ms + duration: 196.420734ms - id: 42 request: proto: HTTP/1.1 @@ -2127,7 +2127,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2135,20 +2135,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2156,10 +2156,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7466cac4-0675-42d8-a2cf-748eb8c53f2a + - e0a1e810-0f35-4115-9389-377554c5403f status: 200 OK code: 200 - duration: 94.837882ms + duration: 145.903301ms - id: 43 request: proto: HTTP/1.1 @@ -2176,7 +2176,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2184,20 +2184,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2205,10 +2205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d23b7f7-00f1-473e-ba6a-71c8865d0cfd + - ca6e9205-b624-4926-a3cf-76f01a9ab466 status: 200 OK code: 200 - duration: 105.72123ms + duration: 143.247008ms - id: 44 request: proto: HTTP/1.1 @@ -2225,7 +2225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2233,20 +2233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1872 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"14","hypervisor_id":"301","node_id":"31","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:17.434369+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:03:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2254,10 +2254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e82ea3e-269f-41ce-bb77-ab7bce76bbdd + - 0631deca-85c8-4c6b-8d1c-4b3d0d2832ee status: 200 OK code: 200 - duration: 121.37752ms + duration: 190.022117ms - id: 45 request: proto: HTTP/1.1 @@ -2274,7 +2274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2282,20 +2282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1859 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:50.521090+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1859" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2303,109 +2303,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ce361f9-770e-49c5-92f9-0a43b5d6976d + - def4c2e8-0c5d-4648-8042-2512677571da status: 200 OK code: 200 - duration: 105.673496ms + duration: 166.261449ms - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1859 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"28","hypervisor_id":"1001","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:04:36.097987+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1859" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 564850f5-e7f1-4db2-a37d-7db73eeb34da - status: 200 OK - code: 200 - duration: 97.026367ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1742 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:19.140994+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1742" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e8444217-f76a-4d36-9d8c-091602884fa4 - status: 200 OK - code: 200 - duration: 115.169381ms - - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2423,7 +2325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: PATCH response: proto: HTTP/2.0 @@ -2431,20 +2333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1741 + content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.393086+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:54.076384+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1741" + - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2452,11 +2354,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9acf56a5-bd79-4fa4-8300-8a70c6f24de4 + - a4efe132-bcfe-47b1-a85a-f3d3c58234e4 status: 200 OK code: 200 - duration: 269.863906ms - - id: 49 + duration: 273.929854ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2472,7 +2374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2480,20 +2382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1741 + content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.393086+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:54.076384+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1741" + - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2501,11 +2403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 171991a8-244a-4be2-aff5-687d2a02efee + - d02047b7-e53b-4489-ad86-aec9c48a768c status: 200 OK code: 200 - duration: 109.466948ms - - id: 50 + duration: 144.139575ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2521,7 +2423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -2531,7 +2433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2540,9 +2442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2550,11 +2452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6dde849-e12b-4174-981e-4d6b727d2d26 + - 68c4bee1-75c6-48e9-bd51-85ec72b37160 status: 200 OK code: 200 - duration: 43.397727ms - - id: 51 + duration: 91.534312ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2572,7 +2474,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -2582,7 +2484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"3b17283d-567b-461a-9561-4d0e2f228f74","progress":0,"started_at":"2025-10-08T23:05:22.906167+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"772a1dfd-8d86-4f04-b979-23e351113382","progress":0,"started_at":"2025-10-15T15:03:54.726381+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2591,11 +2493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:22 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3b17283d-567b-461a-9561-4d0e2f228f74 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/772a1dfd-8d86-4f04-b979-23e351113382 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2603,11 +2505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 877fc7e9-0e22-4544-9996-7471a0493c6f + - 3af7e64b-a66d-44f3-bcb5-d31fbcf087c6 status: 202 Accepted code: 202 - duration: 193.569794ms - - id: 52 + duration: 235.970843ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2623,7 +2525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2631,20 +2533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1763 + content_length: 1777 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:22.752971+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:54.539568+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1763" + - "1777" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2652,11 +2554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb687257-1cd7-4558-b3bf-d840aa27faa7 + - 61b1fe9e-c8a6-47de-b478-be9837798b03 status: 200 OK code: 200 - duration: 362.22126ms - - id: 53 + duration: 171.382238ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2672,7 +2574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2680,20 +2582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2701,11 +2603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 228e6200-4882-4422-b7eb-2c477b751d5c + - 76a7be9c-f033-46a6-ad2f-102cb36fd39b status: 200 OK code: 200 - duration: 104.555067ms - - id: 54 + duration: 169.556395ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2721,7 +2623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -2729,20 +2631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2750,11 +2652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d5f9903-52cf-404e-ac51-6913da6c306f + - a8af0f5c-8f74-4657-9c8b-ba8b7b0eac41 status: 200 OK code: 200 - duration: 101.726167ms - - id: 55 + duration: 150.53501ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2770,7 +2672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -2780,7 +2682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -2789,9 +2691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2799,11 +2701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2e61df1-3682-41ce-8787-c4b05960fe21 + - 94c1504e-a31c-4a30-841a-69d42d714a7d status: 404 Not Found code: 404 - duration: 24.63977ms - - id: 56 + duration: 21.191072ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2819,7 +2721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -2829,7 +2731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2838,9 +2740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2848,11 +2750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77287378-d8f0-410f-b8e2-2a0ae9472b04 + - f3cc3847-ec44-4e6c-a07b-20e7ce18695e status: 200 OK code: 200 - duration: 42.393545ms - - id: 57 + duration: 103.1664ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2868,7 +2770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -2887,9 +2789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2897,11 +2799,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b50df0b-2415-4874-b823-23cf6473b212 + - 0853a765-9d49-4301-9625-2b1a5a37b41b status: 200 OK code: 200 - duration: 58.964971ms - - id: 58 + duration: 147.673066ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2917,7 +2819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -2936,11 +2838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2948,13 +2850,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 170de70f-f018-4709-abc9-7d4525544ee1 + - 9015227d-0abd-474a-98f9-ef60678feda4 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.214825ms - - id: 59 + duration: 89.815835ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2970,7 +2872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -2989,11 +2891,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3001,13 +2903,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6fd4eaf-bbed-4beb-882d-a40d8283e7c5 + - d7ade191-dafb-4af9-99f0-8ae38adf270e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.754831ms - - id: 60 + duration: 97.724109ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3023,7 +2925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3031,20 +2933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3052,11 +2954,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99afaf24-9170-4d75-a874-489986e17651 + - 4f1346ad-b310-426c-a236-53106a42aa6e status: 200 OK code: 200 - duration: 117.654961ms - - id: 61 + duration: 153.347453ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3072,7 +2974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -3082,7 +2984,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -3091,9 +2993,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3101,11 +3003,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dde2876-2a8e-4b66-97e5-01236acde5b7 + - af1fa623-0198-4fe9-abbc-9251b69c965e status: 404 Not Found code: 404 - duration: 31.547315ms - - id: 62 + duration: 28.782231ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3121,7 +3023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -3131,7 +3033,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3140,9 +3042,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3150,11 +3052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb5dba70-9a05-4a40-bc2b-6286f8eecea9 + - 071eeb53-8c23-438d-a32b-276a92b8a119 status: 200 OK code: 200 - duration: 51.861673ms - - id: 63 + duration: 88.149362ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3170,7 +3072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -3189,9 +3091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3199,11 +3101,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16f87e91-912d-454e-a0c2-b62692438a82 + - 3fb839bb-e341-4037-8a11-dacad51fb086 status: 200 OK code: 200 - duration: 56.980594ms - - id: 64 + duration: 115.993785ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3219,7 +3121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -3238,11 +3140,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3250,13 +3152,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb8779b-9e64-4c14-89e9-b812a971224a + - 50c3a55c-8717-4f53-a7d2-9c31ab1b30e7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.992428ms - - id: 65 + duration: 101.856987ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3272,7 +3174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3280,20 +3182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3301,11 +3203,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0237d1e4-b1a7-4bc9-8f89-6829dc7a9f16 + - fe39904a-bd64-48fa-b53d-bef6095d2fd0 status: 200 OK code: 200 - duration: 97.31711ms - - id: 66 + duration: 183.008752ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3321,7 +3223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -3331,7 +3233,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -3340,9 +3242,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3350,11 +3252,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62f7a8a0-fdbd-4c57-9024-40252cc6601a + - 56754e6e-c1bc-44d8-ae5a-3b4a3007e306 status: 404 Not Found code: 404 - duration: 29.897469ms - - id: 67 + duration: 28.373906ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3370,7 +3272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -3380,7 +3282,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -3389,9 +3291,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3399,11 +3301,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b04d422-d3f2-46d2-aade-397fe76418a9 + - 2fd21e6c-031c-410b-81fd-2f5cb3029d2b status: 200 OK code: 200 - duration: 48.333758ms - - id: 68 + duration: 100.0558ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3419,7 +3321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -3438,9 +3340,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3448,11 +3350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd0dc80b-2a1a-4278-b9da-279ded9a1a79 + - a5e24e14-6a71-47ab-92e1-2eb4033e45e6 status: 200 OK code: 200 - duration: 50.939285ms - - id: 69 + duration: 112.069631ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3468,7 +3370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -3487,11 +3389,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3499,13 +3401,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a405911-c349-4753-bc8c-ecd53c19cf38 + - a8e0e01c-850b-4a7f-8155-1a487858ad6b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.075562ms - - id: 70 + duration: 93.94137ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3521,7 +3423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3529,20 +3431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3550,11 +3452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5ba958b-d1bb-4993-b4f7-1e444b980aca + - 65c7aa37-5a9a-477c-b78a-a7dbbd12c9f2 status: 200 OK code: 200 - duration: 111.852834ms - - id: 71 + duration: 152.398897ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3578,22 +3480,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3601,13 +3503,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb21551d-de05-4b89-8ad9-d5a53afdae15 + - 96e485d5-daa3-4070-900f-94f6765b84cc X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.082925ms - - id: 72 + duration: 37.388644ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3631,22 +3533,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3654,13 +3556,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a8daf4e-fdda-4fa8-a57a-120be0ae979f + - d5db6f1b-363a-4d35-bc73-c951aa0b50c9 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 75.857129ms - - id: 73 + duration: 47.267151ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3676,7 +3578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3684,20 +3586,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3705,11 +3607,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74dc511a-ccf1-4348-b0e5-09a77e453dda + - 346f499b-38e5-44e0-9251-c85b7559a52c status: 200 OK code: 200 - duration: 95.20609ms - - id: 74 + duration: 136.528829ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3733,22 +3635,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3756,13 +3658,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b627776-466f-4064-b7fe-873cd3bd8dbd + - e743ce19-0037-434f-9ed3-670084c0a4e3 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 48.383581ms - - id: 75 + duration: 56.022272ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3786,22 +3688,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3809,13 +3711,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 525fdd74-294a-447d-abda-5d23ac7b29ff + - 0fcabbfd-8d42-4add-bf0f-30df5d9dacf8 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 51.393365ms - - id: 76 + duration: 69.682728ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3831,7 +3733,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3839,20 +3741,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3860,11 +3762,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ca40408-9f6e-4df7-bf78-ff843d4bab10 + - 2c67bd16-ed03-4b04-b5ba-326830b42a9a status: 200 OK code: 200 - duration: 109.228052ms - - id: 77 + duration: 157.122912ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3880,7 +3782,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3888,20 +3790,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3909,11 +3811,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e66ab28a-7e61-4bae-800e-95323ea5815c + - 201fe863-dc72-4799-b4a0-277eb3afbbda status: 200 OK code: 200 - duration: 97.04236ms - - id: 78 + duration: 163.140782ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3929,7 +3831,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3937,20 +3839,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3958,11 +3860,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 259691c4-bb1f-4a3b-acfc-5a0ed2ccb312 + - 8f6c4c93-7f22-43bd-bcf7-fc5195d6c506 status: 200 OK code: 200 - duration: 99.961738ms - - id: 79 + duration: 150.84749ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3978,7 +3880,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -3986,20 +3888,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1896 + content_length: 1910 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:24.687095+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:03:57.220694+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1896" + - "1910" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4007,11 +3909,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e14ee96-c975-4a23-ab00-0f78a8ea73cc + - 2e8bff11-ff34-4a6c-95c7-d36d296209dd status: 200 OK code: 200 - duration: 132.174055ms - - id: 80 + duration: 127.142977ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4027,7 +3929,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -4037,7 +3939,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4046,9 +3948,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4056,11 +3958,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e51b1b1-aa32-4ca5-b1e9-c0c8998499c3 + - 4623d589-41e1-472f-903f-fd933457431c status: 200 OK code: 200 - duration: 50.257852ms - - id: 81 + duration: 92.931318ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4078,7 +3980,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -4088,7 +3990,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"0b00b9cc-625c-4f57-9136-942049786030","progress":0,"started_at":"2025-10-08T23:05:31.054501+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"fccbaddb-bb9d-48e8-b36b-ecedab38e04c","progress":0,"started_at":"2025-10-15T15:04:03.635855+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -4097,11 +3999,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b00b9cc-625c-4f57-9136-942049786030 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fccbaddb-bb9d-48e8-b36b-ecedab38e04c Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4109,109 +4011,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f959aeb-8bd7-415d-a85b-1cdeb4d1b6d8 + - afe20a74-3d8d-45ed-be55-1a64e162fae1 status: 202 Accepted code: 202 - duration: 165.458918ms - - id: 82 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1856 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1856" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 320eeeda-d583-4d25-a442-8cbe8d40c2a1 - status: 200 OK - code: 200 - duration: 102.441011ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1856 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1856" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d79ae277-a882-49d5-9f72-0fc46fbc1222 - status: 200 OK - code: 200 - duration: 109.761808ms - - id: 84 + duration: 272.119902ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4227,7 +4031,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4235,20 +4039,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4256,11 +4060,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41769b17-ed47-460d-8fdb-e52f8020bb62 + - b38e30aa-f621-49f7-ad93-ad42e82b04f1 status: 200 OK code: 200 - duration: 127.870376ms - - id: 85 + duration: 139.686329ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4276,7 +4080,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4284,20 +4088,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4305,11 +4109,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d34b356-a770-471c-b1a2-fdf28ce42b34 + - 832c7a1c-ee2f-450d-9b76-b46778cf3b88 status: 200 OK code: 200 - duration: 93.807873ms - - id: 86 + duration: 175.129845ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4325,7 +4129,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4333,20 +4137,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4354,11 +4158,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18486393-91af-40a1-9b38-5fe264eb51d9 + - 37f3c36d-6937-4574-82a3-b3df28f8878f status: 200 OK code: 200 - duration: 97.876137ms - - id: 87 + duration: 150.52542ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4374,7 +4178,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4382,20 +4186,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4403,11 +4207,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 370c6eb4-11f2-41a8-b3e0-36a0ab83c072 + - 20f822a3-14fc-48d9-aade-ad7a5aa50a40 status: 200 OK code: 200 - duration: 104.086577ms - - id: 88 + duration: 157.381148ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4423,7 +4227,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4431,20 +4235,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4452,11 +4256,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9aae7007-a628-46cb-8a88-693dfad18f30 + - 22e0f07e-e79e-45d4-a293-17358b35104a status: 200 OK code: 200 - duration: 134.241066ms - - id: 89 + duration: 112.723046ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4472,7 +4276,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4480,20 +4284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4501,11 +4305,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 170454df-c8ac-4b73-972b-145daed5004a + - 71f074b1-8792-4a23-8cad-52acccbf7840 status: 200 OK code: 200 - duration: 101.379068ms - - id: 90 + duration: 154.063792ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4521,7 +4325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4529,20 +4333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1870 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"95","hypervisor_id":"201","node_id":"4","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:05:30.925237+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"601","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:03.423698+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1870" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4550,11 +4354,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9ab7e80-9a67-42cb-b0a6-5c4dad034ac0 + - d645b84a-841d-418f-bf16-2702cdfaee1c status: 200 OK code: 200 - duration: 112.194818ms - - id: 91 + duration: 136.220096ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4570,7 +4374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4578,20 +4382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1741 + content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:13.858887+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:36.698308+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1741" + - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4599,11 +4403,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfa25f99-bd36-4d5d-b3f0-5ec7c9f71790 + - a68ffd89-3b19-47e9-a159-811b991bc810 status: 200 OK code: 200 - duration: 108.001619ms - - id: 92 + duration: 179.53619ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4621,7 +4425,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: PATCH response: proto: HTTP/2.0 @@ -4629,20 +4433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.254751+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:39.942802+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4650,11 +4454,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25ae38aa-636d-4dee-b896-fc13050eb77f + - f4090454-3619-4479-9333-7151d23352df status: 200 OK code: 200 - duration: 240.175518ms - - id: 93 + duration: 330.989362ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4670,7 +4474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4678,20 +4482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1742 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.254751+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:39.942802+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1742" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4699,11 +4503,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 563feb39-d7cc-4890-93ad-e8dcda6f285d + - 52b02aaf-5ccd-451c-a099-4325e8fde38b status: 200 OK code: 200 - duration: 93.130005ms - - id: 94 + duration: 138.186269ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4719,7 +4523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -4729,7 +4533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4738,9 +4542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4748,11 +4552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9312880-6b78-46c4-94f5-f5b0a2a62817 + - f4d708e0-970e-457e-aee4-7e711ee0d1f3 status: 200 OK code: 200 - duration: 58.803469ms - - id: 95 + duration: 79.643634ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4770,7 +4574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -4780,7 +4584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"c66cd492-d7fe-4307-b219-3ccf86649c11","progress":0,"started_at":"2025-10-08T23:06:17.728302+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"262fde8a-0f19-41cb-a74b-1dcb69640e0e","progress":0,"started_at":"2025-10-15T15:04:40.644588+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -4789,11 +4593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c66cd492-d7fe-4307-b219-3ccf86649c11 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/262fde8a-0f19-41cb-a74b-1dcb69640e0e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4801,11 +4605,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2001155-a1c9-417e-9420-3992d7d68561 + - 0990d249-d99e-440c-afa4-c5f8412de873 status: 202 Accepted code: 202 - duration: 174.965733ms - - id: 96 + duration: 244.71633ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4821,7 +4625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4829,20 +4633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1764 + content_length: 1778 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:17.593158+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:40.460999+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1764" + - "1778" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4850,11 +4654,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2dd5754-1752-43f8-908b-d91d9ce4f188 + - b33f75bf-9d0d-4fca-9434-922f8ac9d51a status: 200 OK code: 200 - duration: 103.233929ms - - id: 97 + duration: 129.893823ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4870,7 +4674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4878,20 +4682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:42.961593+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1898" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:22 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4899,11 +4703,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8eb60e0-842d-442a-8a5c-13a0b004ce27 + - 6b065f95-3ccb-4832-b347-55553b696d18 status: 200 OK code: 200 - duration: 114.463705ms - - id: 98 + duration: 144.590442ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4919,7 +4723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -4927,20 +4731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:42.961593+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1898" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4948,11 +4752,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccd5bbc9-884b-4c8d-ad7e-da009d3933dc + - 178e20da-2d9e-45c1-a36f-7bf4597757f0 status: 200 OK code: 200 - duration: 81.577898ms - - id: 99 + duration: 160.620015ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4968,7 +4772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -4978,7 +4782,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -4987,9 +4791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4997,11 +4801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 972cd4c6-e4ff-4c3b-afff-189ba7f779f9 + - 17b946e8-196b-40e8-83c4-63ae128fdba0 status: 404 Not Found code: 404 - duration: 25.390756ms - - id: 100 + duration: 31.359013ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5017,7 +4821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -5027,7 +4831,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -5036,9 +4840,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5046,11 +4850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8d3e99f-82c4-49ee-ad4c-7924fba2621b + - 3ccd2131-ccf4-4d16-baf2-8c35009db640 status: 200 OK code: 200 - duration: 45.308615ms - - id: 101 + duration: 76.582339ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5066,7 +4870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -5085,9 +4889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5095,11 +4899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3f78b6-66c8-44be-b858-1e6758acac4f + - 30de1db6-f156-4bf9-9d16-739e2b8bf2f1 status: 200 OK code: 200 - duration: 67.082071ms - - id: 102 + duration: 120.306654ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5115,7 +4919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -5134,11 +4938,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5146,13 +4950,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b792114a-1ec9-4655-a4ec-22e428e22474 + - e59446a2-dae0-4441-811f-1b675f6b47d7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.802835ms - - id: 103 + duration: 100.243019ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5168,7 +4972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -5187,11 +4991,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5199,13 +5003,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a3d951e-5372-4b4d-a475-8f6d80c460b8 + - 6e09c619-5043-4864-a9f5-1d2c488ff58e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.705064ms - - id: 104 + duration: 95.183002ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5221,7 +5025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -5229,20 +5033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:42.961593+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1898" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5250,11 +5054,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b687cfec-2916-4f1e-a2ad-94b20c7c071f + - 48706a52-f368-4dd4-bf13-c2b55fc233ae status: 200 OK code: 200 - duration: 74.925727ms - - id: 105 + duration: 146.815765ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5270,7 +5074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -5280,7 +5084,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -5289,9 +5093,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5299,11 +5103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c89a0c0-3bec-4cf8-a224-bff8542ee16e + - a34c4119-0704-4865-bf6e-526a76f38f04 status: 404 Not Found code: 404 - duration: 23.050461ms - - id: 106 + duration: 22.442616ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5319,7 +5123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -5329,7 +5133,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.413504Z","id":"ed690027-df60-4d2f-a3de-5444b25c1688","product_resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.413504Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:05.072617Z","id":"286cb256-0f03-43ce-bd73-b97bb8383107","product_resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:05.072617Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -5338,9 +5142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5348,11 +5152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e18822c1-5adc-44f8-b2e6-d2e034f39920 + - ee1d2bb8-7cf8-4805-ba8f-86d2c9e7e3da status: 200 OK code: 200 - duration: 40.852972ms - - id: 107 + duration: 93.412613ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5368,7 +5172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/user_data method: GET response: proto: HTTP/2.0 @@ -5387,9 +5191,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5397,11 +5201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6daee41f-c17d-4a66-bdb3-33d2462be8c6 + - b9010014-df4f-4d8d-b2d5-d0fcd2622976 status: 200 OK code: 200 - duration: 52.60022ms - - id: 108 + duration: 82.724204ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5417,7 +5221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/private_nics method: GET response: proto: HTTP/2.0 @@ -5436,11 +5240,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:23 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5448,13 +5252,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77a1416f-336a-4ee8-94eb-7dae33cade32 + - 9e4dcc80-652f-4c04-a192-0183ca07530a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.725666ms - - id: 109 + duration: 113.218586ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5470,7 +5274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -5478,20 +5282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1898 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:20.250531+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:42.961593+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1898" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:24 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5499,11 +5303,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91958a15-eeaa-460c-97f0-e14eff381191 + - beaa34c2-228e-420d-a32f-8d5a9ca12bdc status: 200 OK code: 200 - duration: 108.855618ms - - id: 110 + duration: 144.133768ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1911 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:42.961593+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1911" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e89ca1f-960a-414e-8cdd-6d298816db84 + status: 200 OK + code: 200 + duration: 149.232637ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5521,7 +5374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42/action method: POST response: proto: HTTP/2.0 @@ -5531,7 +5384,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d/action","href_result":"/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","id":"2351f836-2f0e-4525-9a11-460f8b0bc19e","progress":0,"started_at":"2025-10-08T23:06:24.278180+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/703abb35-966f-46cf-ad17-6665000c9e42/action","href_result":"/servers/703abb35-966f-46cf-ad17-6665000c9e42","id":"08a7e538-9b82-494c-a8e6-393d37411dea","progress":0,"started_at":"2025-10-15T15:04:48.007805+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -5540,11 +5393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:24 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2351f836-2f0e-4525-9a11-460f8b0bc19e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/08a7e538-9b82-494c-a8e6-393d37411dea Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5552,11 +5405,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a817516-2d8d-4af7-8d06-42a633375c1e + - d6bba910-2a21-4cac-8f3f-9a4253b9a0d8 status: 202 Accepted code: 202 - duration: 179.798599ms - - id: 111 + duration: 361.835574ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5572,7 +5425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -5580,20 +5433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1861 + content_length: 1874 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-08T23:04:27.319140+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-noyce","id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"11","hypervisor_id":"701","node_id":"20","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:61","maintenances":[],"modification_date":"2025-10-08T23:06:24.139781+00:00","name":"tf-srv-fervent-noyce","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PRO2-XXS","creation_date":"2025-10-15T15:03:04.915813+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-ardinghelli","id":"703abb35-966f-46cf-ad17-6665000c9e42","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"58","hypervisor_id":"301","node_id":"3","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:0f","maintenances":[],"modification_date":"2025-10-15T15:04:47.730173+00:00","name":"tf-srv-romantic-ardinghelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"9872e5c5-662d-498e-9605-a7e49261eb99","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1861" + - "1874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:24 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5601,11 +5454,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5e3ff80-772e-46e7-938b-fb0384476631 + - a9467175-b4d9-4858-aef5-70fcb3b9cb17 status: 200 OK code: 200 - duration: 112.524433ms - - id: 112 + duration: 154.203328ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5621,7 +5474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -5631,7 +5484,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","type":"not_found"}' headers: Content-Length: - "143" @@ -5640,9 +5493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5650,11 +5503,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f97962b-54f8-4468-bd5f-4ac6bdb95ce9 + - 8f6f02e2-8be9-4e7c-b658-5aae5a7ae5a0 status: 404 Not Found code: 404 - duration: 48.33588ms - - id: 113 + duration: 49.492924ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5670,7 +5523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -5680,7 +5533,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9872e5c5-662d-498e-9605-a7e49261eb99","type":"not_found"}' headers: Content-Length: - "143" @@ -5689,9 +5542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5699,11 +5552,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d345aa6-b248-47fc-8a9c-a28803530a65 + - d5f36902-3969-46b8-86f7-cd4b51fd1ee1 status: 404 Not Found code: 404 - duration: 39.169434ms - - id: 114 + duration: 26.810266ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5719,7 +5572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: GET response: proto: HTTP/2.0 @@ -5729,7 +5582,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.413504Z","id":"d6f645c4-d953-4187-ba9e-8292ddfd6cd0","last_detached_at":"2025-10-08T23:06:25.487706Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:06:25.487706Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:05.072617Z","id":"9872e5c5-662d-498e-9605-a7e49261eb99","last_detached_at":"2025-10-15T15:04:49.597929Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:49.597929Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -5738,9 +5591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5748,11 +5601,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 088d42b2-7f05-4779-b8fa-6e740ca6d7ef + - 424a607a-06a4-4413-a3dc-0e9e1949d3ec status: 200 OK code: 200 - duration: 46.676036ms - - id: 115 + duration: 100.392815ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5768,7 +5621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d6f645c4-d953-4187-ba9e-8292ddfd6cd0 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9872e5c5-662d-498e-9605-a7e49261eb99 method: DELETE response: proto: HTTP/2.0 @@ -5785,9 +5638,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5795,11 +5648,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 717578fa-0faf-48e3-a651-d822f0de9a56 + - 7d95549e-4bff-42f1-9be7-7de7a6918798 status: 204 No Content code: 204 - duration: 92.418744ms - - id: 116 + duration: 204.91392ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5815,7 +5668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/703abb35-966f-46cf-ad17-6665000c9e42 method: GET response: proto: HTTP/2.0 @@ -5825,7 +5678,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4b36ffce-8fd7-4fb1-aea6-5821e8b8a47d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"703abb35-966f-46cf-ad17-6665000c9e42","type":"not_found"}' headers: Content-Length: - "143" @@ -5834,9 +5687,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:29 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5844,7 +5697,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96833c07-69fe-48fc-bcf4-282112b277be + - da36d48c-385a-4fc7-a5bc-866b910cdd89 status: 404 Not Found code: 404 - duration: 52.200287ms + duration: 35.622338ms diff --git a/internal/services/instance/testdata/server-minimal1.cassette.yaml b/internal/services/instance/testdata/server-minimal1.cassette.yaml index 11893e6ba..a926f5872 100644 --- a/internal/services/instance/testdata/server-minimal1.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal1.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed89a647-f380-4a7e-96d0-170c3314e119 + - a240365f-627f-474a-b655-1252714bff30 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.789618ms + duration: 45.65775ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c10f3817-50ad-48e7-895c-9ec1dc35f696 + - 6dc4decb-b81e-4e02-9e36-11e0418028e4 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 137.789067ms + duration: 51.780848ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2e45e62-c54c-4346-834f-1b5f219f23c7 + - c561a50a-4f75-4f6c-9995-501c9b5105a2 status: 200 OK code: 200 - duration: 49.395933ms + duration: 62.515802ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 296 + content_length: 300 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-bold-rosalind","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","minimal"]}' + body: '{"name":"tf-srv-dreamy-lichterman","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","minimal"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1791 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:18.060037+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1791" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4789354-9186-47ab-96e3-37cd51fed4d4 + - e7acd8f3-ddef-4b35-9a12-ad7a882a034e status: 201 Created code: 201 - duration: 523.994971ms + duration: 2.353196341s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1791 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:18.060037+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1791" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ffb6cb1-b1b3-4b93-be9d-71061118824e + - d1d09c66-3371-46ee-952e-aa64f34fae4a status: 200 OK code: 200 - duration: 95.996678ms + duration: 136.854689ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1791 + content_length: 1799 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.332238+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:18.060037+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1791" + - "1799" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81fd11b0-1cfc-450b-9225-9900eaf5501e + - 8995f08b-4904-4b8e-92a0-031e59787362 status: 200 OK code: 200 - duration: 102.595111ms + duration: 148.618572ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:18.181146Z","id":"b026cf0a-b3a0-46b8-a1d1-44a3a6b52a48","product_resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.181146Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98badb56-77b8-4b50-8d43-ec8454d76fd3 + - 27af3304-caaf-4dc4-8c8d-cfc5e40d3dd3 status: 200 OK code: 200 - duration: 47.561235ms + duration: 76.734488ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action","href_result":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4","id":"6410ccab-4c5d-43f0-ae55-5e26ec2b0177","progress":0,"started_at":"2025-10-08T23:04:57.079513+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action","href_result":"/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046","id":"bb73b5b7-4732-48b2-82ca-90025e455bce","progress":0,"started_at":"2025-10-15T15:04:20.308147+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6410ccab-4c5d-43f0-ae55-5e26ec2b0177 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb73b5b7-4732-48b2-82ca-90025e455bce Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82f3b01d-7dbe-419e-be20-5e7d45514bae + - 74f5b13f-958a-4450-9198-8d10208d326f status: 202 Accepted code: 202 - duration: 190.307433ms + duration: 232.939954ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1813 + content_length: 1821 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:56.940236+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:20.128031+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1813" + - "1821" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb8ff4d-c8d4-4a43-94f2-bdfc8f050489 + - 5e4a7818-acba-4804-851f-bb8afd3fed70 status: 200 OK code: 200 - duration: 110.529549ms + duration: 140.841154ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6be858e6-f140-4e6f-85aa-2869af0719d2 + - 2dcb40c4-b852-46d4-802e-4fcd55d8d8ae status: 200 OK code: 200 - duration: 100.556032ms + duration: 135.456125ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c1372a8-cf39-4755-9721-44184ce48d40 + - eafd0121-6859-4ce8-9de2-07ac6fa8faba status: 200 OK code: 200 - duration: 96.639106ms + duration: 150.283852ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12bc7b89-3266-4dba-b43f-763a1d4ec656 + - 192beb68-0ef1-48a2-9843-ef75ff57d673 status: 404 Not Found code: 404 - duration: 28.12011ms + duration: 21.647431ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:18.181146Z","id":"b026cf0a-b3a0-46b8-a1d1-44a3a6b52a48","product_resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.181146Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddd6e0f2-e916-4f5f-ad44-e0c1ab861dbe + - bcffe464-ce9a-4213-8923-86f8521e869a status: 200 OK code: 200 - duration: 35.953681ms + duration: 92.48035ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10a5b19e-512f-4c53-ae52-18e5f57194e2 + - c8120ad2-4909-4d7a-b1ab-3f3e8d6734c1 status: 200 OK code: 200 - duration: 46.891313ms + duration: 92.549239ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fe2ee75-b5a5-4ad3-bf76-a219cf769066 + - 0c8728da-d279-4fe9-a626-55c6d723ff67 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.741152ms + duration: 100.493843ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5498ca5f-0cb9-4c50-9b55-c69a93233427 + - 3c0c0da6-ebd3-4679-8bbd-9742a721c66f status: 200 OK code: 200 - duration: 102.554573ms + duration: 144.988054ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54d66706-19f3-4592-9049-477149dbb939 + - 389988c0-a140-424c-900c-579f476d6e8a status: 200 OK code: 200 - duration: 126.877589ms + duration: 154.890369ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adbddc7f-48cd-4cc8-b13d-ca7d02ca27ea + - bb9f50af-22cc-4f39-af65-83b7d1673f82 status: 404 Not Found code: 404 - duration: 31.353209ms + duration: 27.617755ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:18.181146Z","id":"b026cf0a-b3a0-46b8-a1d1-44a3a6b52a48","product_resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.181146Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40ad5186-2eba-4c95-8cff-c21946b40118 + - c5126a7a-fe53-489a-9b45-844eb6f111f8 status: 200 OK code: 200 - duration: 40.914911ms + duration: 90.006623ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15cfda30-4c8d-41c9-9770-19793804841a + - 7855db4f-0788-4bfa-9033-b775335ed4f3 status: 200 OK code: 200 - duration: 63.351483ms + duration: 90.320181ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f779410-7e3a-4652-8dac-3e79c97e59a5 + - 8d76dde6-3d16-4b08-96b3-f4a31e2eb43d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.447551ms + duration: 103.861396ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba138856-5789-4356-a24d-de10123d1999 + - e0fd3934-2956-434c-a571-c9bae29b2da3 status: 200 OK code: 200 - duration: 122.33799ms + duration: 151.609989ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e86aaf4b-6cf2-4b41-b180-d451b7a06d50 + - f4584c18-2d99-4591-a4ff-7d2d77210440 status: 404 Not Found code: 404 - duration: 36.578779ms + duration: 29.628434ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:18.181146Z","id":"b026cf0a-b3a0-46b8-a1d1-44a3a6b52a48","product_resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.181146Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eac0362-2280-405c-aa09-aa391c5a1a09 + - de8ad5c7-c8d4-4648-beb7-f7abfa952518 status: 200 OK code: 200 - duration: 52.830443ms + duration: 82.200169ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a58c575d-4327-48ef-a387-b53a8407103f + - 288373ac-b937-4b1c-94f4-c2d99be09315 status: 200 OK code: 200 - duration: 54.24825ms + duration: 85.095197ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dee6e6ae-6825-4703-8758-646c5c657e7d + - d3154339-35ec-4c4c-9398-8e6ff6e5f479 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.924441ms + duration: 91.600221ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec45b11-85c5-4341-8b3d-72e6dbfa25b3 + - ac78d3b2-fe56-493c-a956-494442bebe95 status: 200 OK code: 200 - duration: 106.103748ms + duration: 132.224248ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e324c53-777a-4e4a-a10e-73c14c902dfd + - 544c4ca7-5bfb-4c9f-971c-f4b81291945b status: 200 OK code: 200 - duration: 98.118415ms + duration: 143.86436ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1427,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' headers: Content-Length: - "143" @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 097e144c-e1b1-4c05-9d3c-03f47cb96d42 + - 9c6a4f6e-683c-45f8-94d0-0698a0194fbf status: 404 Not Found code: 404 - duration: 30.298395ms + duration: 26.993936ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1476,7 +1476,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:56.425495Z","id":"a2de9ad6-7b56-4d2a-93c7-42251fa6c92e","product_resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:56.425495Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:18.181146Z","id":"b026cf0a-b3a0-46b8-a1d1-44a3a6b52a48","product_resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.181146Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1485,9 +1485,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,10 +1495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c8b1fe1-3678-41e9-b02c-9ece01ab9860 + - 27d9e60a-7a04-41dd-ab91-3d47c8336bb1 status: 200 OK code: 200 - duration: 41.565967ms + duration: 97.225226ms - id: 30 request: proto: HTTP/1.1 @@ -1515,7 +1515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/user_data method: GET response: proto: HTTP/2.0 @@ -1534,9 +1534,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,10 +1544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2115e084-7195-4a31-a67e-3c3dbff3305a + - 16a15cd0-5ece-4908-bd35-d25c8dc1f7b3 status: 200 OK code: 200 - duration: 48.223229ms + duration: 91.478343ms - id: 31 request: proto: HTTP/1.1 @@ -1564,7 +1564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/private_nics method: GET response: proto: HTTP/2.0 @@ -1583,11 +1583,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,12 +1595,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fca66236-1744-4546-8d7a-3130593bf4c3 + - 8dd89ee7-46cd-4369-9569-0b837cf81fe8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.205954ms + duration: 101.030491ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1948 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:04:59.647218+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1948" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,11 +1646,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22aba94f-8af2-41ec-953b-fd5cbe7f535a + - e40d4990-7c13-467b-b3de-28455f058b6a status: 200 OK code: 200 - duration: 108.034353ms + duration: 161.788473ms - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1955 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:24.289373+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1955" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9c325582-8ac7-4b84-9a0e-3db4c8f73c50 + status: 200 OK + code: 200 + duration: 135.311506ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1668,7 +1717,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action method: POST response: proto: HTTP/2.0 @@ -1678,7 +1727,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4/action","href_result":"/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4","id":"e783f360-b21f-4c01-875e-b9a1ba245cca","progress":0,"started_at":"2025-10-08T23:05:05.013919+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046/action","href_result":"/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046","id":"9ce9a199-eead-4119-8a55-e74f89bcbecd","progress":0,"started_at":"2025-10-15T15:04:29.145527+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1687,11 +1736,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e783f360-b21f-4c01-875e-b9a1ba245cca + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9ce9a199-eead-4119-8a55-e74f89bcbecd Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,11 +1748,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64c3fd10-ae73-4d04-b578-0041dde6350e + - 9aed1b18-4a29-41e2-bbbb-830876dab0f4 status: 202 Accepted code: 202 - duration: 142.721808ms - - id: 34 + duration: 281.269163ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1719,7 +1768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1727,20 +1776,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1911 + content_length: 1918 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:56.332238+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-bold-rosalind","id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"1501","node_id":"50","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:93","maintenances":[],"modification_date":"2025-10-08T23:05:04.908964+00:00","name":"tf-srv-bold-rosalind","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:18.060037+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-lichterman","id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"702","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:5b","maintenances":[],"modification_date":"2025-10-15T15:04:28.928769+00:00","name":"tf-srv-dreamy-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","minimal"],"volumes":{"0":{"boot":false,"id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1911" + - "1918" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,11 +1797,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 207c1c5a-081e-4910-a786-a691423a0fc3 + - 5d9744fd-7f13-45b6-acdd-160bbedeaf4b status: 200 OK code: 200 - duration: 109.027112ms - - id: 35 + duration: 151.674994ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1768,7 +1817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1778,7 +1827,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","type":"not_found"}' headers: Content-Length: - "143" @@ -1787,9 +1836,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,11 +1846,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd88929f-3bb0-440e-b73b-ac30211925aa + - dd23dc9a-1f3d-4544-b540-58de90b9b9aa status: 404 Not Found code: 404 - duration: 51.34495ms - - id: 36 + duration: 61.597349ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1817,7 +1866,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1827,7 +1876,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","type":"not_found"}' headers: Content-Length: - "143" @@ -1836,9 +1885,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1846,11 +1895,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03520bb9-d0ab-440c-a7dc-927de5951728 + - 00754b6d-29d1-456a-a78e-0d89fb41847f status: 404 Not Found code: 404 - duration: 30.451107ms - - id: 37 + duration: 24.416524ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1866,7 +1915,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: GET response: proto: HTTP/2.0 @@ -1876,7 +1925,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:56.425495Z","id":"1fa51cde-007b-4e62-a1eb-8ea5c29bf399","last_detached_at":"2025-10-08T23:05:06.266086Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:06.266086Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:18.181146Z","id":"03c2ac06-e533-4210-85aa-a6e164ea97f2","last_detached_at":"2025-10-15T15:04:30.630722Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:30.630722Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -1885,9 +1934,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1895,11 +1944,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b954e82-0a08-4347-991e-b001fe799bc2 + - b9b804ec-7053-463d-8717-ceb026f39f8c status: 200 OK code: 200 - duration: 39.770971ms - - id: 38 + duration: 94.473803ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1915,7 +1964,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1fa51cde-007b-4e62-a1eb-8ea5c29bf399 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/03c2ac06-e533-4210-85aa-a6e164ea97f2 method: DELETE response: proto: HTTP/2.0 @@ -1932,9 +1981,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,11 +1991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb8e7539-30bf-4445-a458-3ca3d4cc1aca + - 42fb1c10-2f89-4eeb-a629-52625ecbf652 status: 204 No Content code: 204 - duration: 85.793112ms - - id: 39 + duration: 162.30567ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1962,7 +2011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e2c17d92-adcf-45ec-a5c6-11b29b357fe4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/bca6ec8e-c58d-4d32-873c-88a3a5f3d046 method: GET response: proto: HTTP/2.0 @@ -1972,7 +2021,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e2c17d92-adcf-45ec-a5c6-11b29b357fe4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"bca6ec8e-c58d-4d32-873c-88a3a5f3d046","type":"not_found"}' headers: Content-Length: - "143" @@ -1981,9 +2030,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,7 +2040,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 30b21784-b4db-47e5-957d-7249bc7ebfb5 + - cadb02d8-af6b-4ecf-8e9c-a29e1bdc32d6 status: 404 Not Found code: 404 - duration: 43.944842ms + duration: 45.601981ms diff --git a/internal/services/instance/testdata/server-minimal2.cassette.yaml b/internal/services/instance/testdata/server-minimal2.cassette.yaml index 400075af1..792334119 100644 --- a/internal/services/instance/testdata/server-minimal2.cassette.yaml +++ b/internal/services/instance/testdata/server-minimal2.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65a69aca-9145-4013-b539-4663501110e0 + - 570fb166-0a1e-4cac-802a-dc9881ce156e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 66.951775ms + duration: 39.16151ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 708b61be-283b-41dc-a2bd-d1dba37cf340 + - aff936d5-fedf-4aa2-957b-51284404f72e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 49.048921ms + duration: 41.500024ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43078ba2-fa66-49d9-b670-ca10d52b7914 + - 582dd3b4-f150-4beb-ac19-18c78d1688ce status: 200 OK code: 200 - duration: 60.961398ms + duration: 112.093286ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 232 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-gallant-black","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-great-beaver","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:14.317657+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96f40173-5401-4135-88cc-51cd3b6d2ccb + - 87844526-970b-4821-bf91-42660437a63a status: 201 Created code: 201 - duration: 662.618182ms + duration: 3.909326277s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:14.317657+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d03996b9-338f-4546-b238-24fc004bbc0e + - 8a485589-e3cf-4f26-8f84-0d39c885f4d0 status: 200 OK code: 200 - duration: 104.475416ms + duration: 152.889326ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1736 + content_length: 1734 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:53.217546+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:14.317657+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1736" + - "1734" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d106354-4a63-4c69-adcd-f4eabf13847f + - 343a73d3-8c98-41f2-aeef-0498f9297f8a status: 200 OK code: 200 - duration: 94.71748ms + duration: 142.596772ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:14.445140Z","id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:14.445140Z","id":"f5356369-3f9c-4f35-8bd1-63a806b59053","product_resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:14.445140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45299452-b690-4d71-a724-d7de0f92de4d + - cfb886f5-9740-4756-b0b4-33d96c769895 status: 200 OK code: 200 - duration: 46.544502ms + duration: 93.012832ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action","href_result":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae","id":"49adc8ad-4f96-487f-8a15-d138e2182559","progress":0,"started_at":"2025-10-08T23:04:54.135951+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action","href_result":"/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","id":"bcbdc895-202c-4d83-a8e7-79ad6b85a4b0","progress":0,"started_at":"2025-10-15T15:04:18.315634+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:54 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/49adc8ad-4f96-487f-8a15-d138e2182559 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcbdc895-202c-4d83-a8e7-79ad6b85a4b0 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8880c583-8143-4471-9fb2-58864da048ad + - dd03a06c-c238-4187-ae9a-83bfa6318616 status: 202 Accepted code: 202 - duration: 179.0329ms + duration: 259.36724ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1758 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:54.000469+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:18.110621+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1758" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:54 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed050938-b7d7-49f6-86cf-9cf969a086c9 + - 98636995-09ac-4632-a17c-9e1dc7c1fb04 status: 200 OK code: 200 - duration: 106.824127ms + duration: 142.48848ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1890 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1892" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b336cf5e-b67c-48fa-b8e6-6349a2ab0bc9 + - e69b0c57-defd-4dd5-abb8-3e45a815a418 status: 200 OK code: 200 - duration: 124.313842ms + duration: 139.496607ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1890 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1892" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8693c8e-df04-488b-856a-baa25747cf56 + - b3e5c17c-8254-4031-b28e-4e0c6d6ddaaf status: 200 OK code: 200 - duration: 107.194741ms + duration: 159.945311ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8593fafa-822a-4e45-9166-ae8b23963e54 + - 67dc37de-0a03-4827-acdc-cdb8b0f8466c status: 404 Not Found code: 404 - duration: 34.593131ms + duration: 25.35415ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:14.445140Z","id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:14.445140Z","id":"f5356369-3f9c-4f35-8bd1-63a806b59053","product_resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:14.445140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c09c9abd-8b7e-4920-9c7a-6084205da8b2 + - 12e2d694-a80c-4262-af5c-37bff68a3c19 status: 200 OK code: 200 - duration: 38.936417ms + duration: 86.630071ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c02becfa-38b4-4c6f-a129-6f7f58f8be1a + - 76406ca7-cb49-4fc8-a693-c81eccae24d2 status: 200 OK code: 200 - duration: 53.104733ms + duration: 108.741652ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00427e1f-5915-41be-a0c6-10cddaf49b9e + - 7b912bf7-5e3d-4fd9-aab6-fa2e103ef639 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.635366ms + duration: 108.167626ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1890 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1892" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08993a4f-cf55-429d-a0a5-34bf31af89c2 + - da5a9c94-e3be-4578-a9ac-16c77cbe56c9 status: 200 OK code: 200 - duration: 89.812662ms + duration: 141.110022ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1890 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1892" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec59c9f0-6f8d-4fd4-8d83-5ab9b3098d0d + - 7b2aec28-cd37-440d-a0c4-6466c8d05824 status: 200 OK code: 200 - duration: 101.21862ms + duration: 143.0184ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 367486ed-411f-40f9-abc9-33c748674244 + - c5dd0a36-84c3-4d2e-96dd-e0b05b1fede6 status: 404 Not Found code: 404 - duration: 34.912924ms + duration: 27.846783ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:14.445140Z","id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:14.445140Z","id":"f5356369-3f9c-4f35-8bd1-63a806b59053","product_resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:14.445140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 538a0f80-16cd-4ea5-b337-b76f82cf659e + - 7778909e-510f-45a7-9740-ce3fde5dd555 status: 200 OK code: 200 - duration: 45.576176ms + duration: 87.156658ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 958bb3dd-0db8-4efe-a754-d052c5dfc59b + - c9e95a7f-c439-47f7-8f98-493a11426be8 status: 200 OK code: 200 - duration: 71.309676ms + duration: 127.392798ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e2441ad-c32f-4601-bad8-e0cf2bec770d + - c0744dd8-4f65-4b05-a8b6-b8c159c68afc X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.965214ms + duration: 92.881221ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 1890 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1892" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f04143-ba9a-48ef-b4af-6c6d3531b7be + - 88027907-ecd6-4076-8800-2a7d11895197 status: 200 OK code: 200 - duration: 104.669682ms + duration: 154.777455ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f110e7a1-6707-457d-b9c3-7edb38e65d70 + - 27d83ed6-381b-4a35-b04d-9a13b56db8f4 status: 404 Not Found code: 404 - duration: 30.542086ms + duration: 25.602245ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:53.496753Z","id":"9d20f8dc-8ef3-47b2-aaa4-7fbe2a8cf337","product_resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:53.496753Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:14.445140Z","id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:14.445140Z","id":"f5356369-3f9c-4f35-8bd1-63a806b59053","product_resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:14.445140Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d07f27f4-d24f-441d-bbf5-b4d8ad807cb0 + - 77430a46-0648-4339-a419-0473966e7849 status: 200 OK code: 200 - duration: 64.295963ms + duration: 87.473593ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0927ddf0-2c45-4ff5-a126-2e9e4fd06591 + - 8d0c927f-784e-4774-b90c-46f87f13f968 status: 200 OK code: 200 - duration: 53.990744ms + duration: 97.79928ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c4696d-fc06-458e-9f2c-13b268e043f0 + - 980d71a0-26e5-49a7-b0f3-cdee2d685942 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.320059ms + duration: 104.924518ms - id: 26 request: proto: HTTP/1.1 @@ -1327,22 +1327,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,12 +1350,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c1e1e2c-9bf5-40a7-8520-9c671f13e6de + - 3b72eec3-9b6a-4969-81f9-ea9085e23281 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 52.909761ms + duration: 42.329784ms - id: 27 request: proto: HTTP/1.1 @@ -1372,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1892 + content_length: 14295 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:04:56.104091+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1892" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:25 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1403,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41e503ea-f3fa-4d51-a69f-7ca144e1478d + - ef93733a-a3d4-4c45-b700-c1b62f3c78b1 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 117.027313ms + duration: 45.864961ms - id: 28 request: proto: HTTP/1.1 @@ -1421,7 +1425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -1429,22 +1433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1890 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "1890" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,12 +1454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7f8a66e-6a51-4276-b7dd-2f7ec6197d74 - X-Total-Count: - - "75" + - 14a96fae-ce3a-46be-9327-c85537720b5b status: 200 OK code: 200 - duration: 62.941594ms + duration: 145.597486ms - id: 29 request: proto: HTTP/1.1 @@ -1493,9 +1493,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1503,11 +1503,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7135f2b1-936c-4174-8769-3126947769ab + - bfd1597b-4671-43fb-86e7-186f22dd3889 status: 200 OK code: 200 - duration: 50.878638ms + duration: 66.288789ms - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1890 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:21.284682+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1890" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0089951-606e-4279-91fc-25a524b253fd + status: 200 OK + code: 200 + duration: 140.119146ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1525,7 +1574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action method: POST response: proto: HTTP/2.0 @@ -1535,7 +1584,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae/action","href_result":"/servers/fefddb8c-689e-4155-af23-c36bc83024ae","id":"0722d994-32ee-4f47-94fb-fe64e239f592","progress":0,"started_at":"2025-10-08T23:05:01.331908+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6/action","href_result":"/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","id":"d6a5f912-0164-4882-8ed7-c69558956ea1","progress":0,"started_at":"2025-10-15T15:04:26.346864+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1544,11 +1593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0722d994-32ee-4f47-94fb-fe64e239f592 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d6a5f912-0164-4882-8ed7-c69558956ea1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1556,11 +1605,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20465fa0-e6d5-499c-906a-9ec68ae7040e + - 82c44570-4c78-4ae5-8311-d4f475efaadb status: 202 Accepted code: 202 - duration: 194.825899ms - - id: 31 + duration: 293.798946ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1576,7 +1625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -1584,20 +1633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1855 + content_length: 1853 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:53.217546+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-gallant-black","id":"fefddb8c-689e-4155-af23-c36bc83024ae","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"94","hypervisor_id":"304","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:91","maintenances":[],"modification_date":"2025-10-08T23:05:01.190105+00:00","name":"tf-srv-gallant-black","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:14.317657+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-great-beaver","id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"902","node_id":"32","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:53","maintenances":[],"modification_date":"2025-10-15T15:04:26.114967+00:00","name":"tf-srv-great-beaver","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1855" + - "1853" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1605,22 +1654,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b0867e6-42f0-4524-b6d9-9ffe88e76511 + - 88604087-6f83-42ab-9906-8d2f5a3a6897 status: 200 OK code: 200 - duration: 106.342591ms - - id: 32 + duration: 128.779319ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 276 + content_length: 274 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-fervent-solomon","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-amazing-ellis","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -1635,22 +1684,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.534348+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1658,11 +1707,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ba0290d-c169-4402-b9b5-fa6fcd4f8cb0 + - e14de258-fb05-4193-ab90-a8be97813c12 status: 201 Created code: 201 - duration: 361.409672ms - - id: 33 + duration: 741.456055ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1678,7 +1727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -1686,20 +1735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.534348+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1707,11 +1756,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac6157a1-197c-4653-8aef-20a3bf4b16e0 + - 577514e2-18a3-4a0f-be1c-aeab1a719774 status: 200 OK code: 200 - duration: 105.720619ms - - id: 34 + duration: 125.926811ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1727,7 +1776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -1735,20 +1784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2160 + content_length: 2154 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.410567+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.534348+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2160" + - "2154" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1756,11 +1805,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 052c1724-bf2a-4503-8dc2-d2af30cb385a + - 01f8a870-6736-438c-9166-edba9f9d7414 status: 200 OK code: 200 - duration: 99.375375ms - - id: 35 + duration: 136.460929ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1778,7 +1827,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/action method: POST response: proto: HTTP/2.0 @@ -1788,7 +1837,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action","href_result":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","id":"9bcb6555-7b01-451f-95fb-f5bfc316a99f","progress":0,"started_at":"2025-10-08T23:05:01.979412+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/64e60bc0-d167-48ff-b844-fd752209ed28/action","href_result":"/servers/64e60bc0-d167-48ff-b844-fd752209ed28","id":"65920e3e-1948-4eb2-8c6f-107bb8cae8f3","progress":0,"started_at":"2025-10-15T15:04:27.181494+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1797,11 +1846,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9bcb6555-7b01-451f-95fb-f5bfc316a99f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/65920e3e-1948-4eb2-8c6f-107bb8cae8f3 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1809,11 +1858,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b379bc7b-1443-4681-b866-c3b0f799aaa4 + - d314d933-d52f-4c4e-9080-6db58f466cb8 status: 202 Accepted code: 202 - duration: 212.104957ms - - id: 36 + duration: 236.74481ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1829,7 +1878,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -1837,20 +1886,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2182 + content_length: 2176 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.810351+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.993696+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2182" + - "2176" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1858,11 +1907,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97a36343-9267-4d7c-88c0-a2224b27cf5a + - a17ae30b-5b61-4170-a6b9-75f774cc33d1 status: 200 OK code: 200 - duration: 115.547162ms - - id: 37 + duration: 119.733431ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1878,7 +1927,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fefddb8c-689e-4155-af23-c36bc83024ae + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/78c89fb5-0d44-42e4-adae-ca52bf5b2dc6 method: GET response: proto: HTTP/2.0 @@ -1888,7 +1937,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fefddb8c-689e-4155-af23-c36bc83024ae","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"78c89fb5-0d44-42e4-adae-ca52bf5b2dc6","type":"not_found"}' headers: Content-Length: - "143" @@ -1897,9 +1946,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1907,11 +1956,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27e95a3f-34f3-40b4-8dfa-ae639254b8f9 + - b1474151-539f-4f24-8d0c-7c8ca6ae1285 status: 404 Not Found code: 404 - duration: 40.698069ms - - id: 38 + duration: 60.307249ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1927,7 +1976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -1937,7 +1986,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","type":"not_found"}' headers: Content-Length: - "143" @@ -1946,9 +1995,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1956,11 +2005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6613625-0ebf-4467-b27e-0a54a49db504 + - c2f3879f-7f3c-4506-aa0b-c50e40038a4f status: 404 Not Found code: 404 - duration: 26.282986ms - - id: 39 + duration: 25.439031ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1976,7 +2025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: GET response: proto: HTTP/2.0 @@ -1986,7 +2035,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:53.496753Z","id":"c83f3920-3359-4dd9-9ef3-000c87f83c14","last_detached_at":"2025-10-08T23:05:02.505125Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:02.505125Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:14.445140Z","id":"c2ad408e-8d9c-4429-ac7a-337d2788a2e6","last_detached_at":"2025-10-15T15:04:27.952162Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:27.952162Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -1995,9 +2044,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2005,11 +2054,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bd9dd5e-5afd-442d-bc92-ca36f0d49706 + - 67acecfd-e36e-4f88-b598-4de91474f250 status: 200 OK code: 200 - duration: 40.976335ms - - id: 40 + duration: 87.655739ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2025,7 +2074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c83f3920-3359-4dd9-9ef3-000c87f83c14 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c2ad408e-8d9c-4429-ac7a-337d2788a2e6 method: DELETE response: proto: HTTP/2.0 @@ -2042,9 +2091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2052,59 +2101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61c74c2b-c169-4369-aa1e-4f3cf5b4d9d0 + - a5884e9d-e009-4a9f-a0c3-ccf00c6661de status: 204 No Content code: 204 - duration: 86.758861ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2285 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:01.810351+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2285" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d74ee2b9-796a-4453-a9dc-89f7ecc4f726 - status: 200 OK - code: 200 - duration: 104.948025ms + duration: 166.566644ms - id: 42 request: proto: HTTP/1.1 @@ -2121,7 +2121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2129,20 +2129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.993696+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2150,10 +2150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 895f60c0-97b8-4ddf-92a3-db17d65b9ba1 + - 8fa76df7-4f65-4c35-9bfd-c8bb43894e96 status: 200 OK code: 200 - duration: 88.17924ms + duration: 120.293346ms - id: 43 request: proto: HTTP/1.1 @@ -2170,7 +2170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2178,20 +2178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 2279 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.993696+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2199,10 +2199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7a571ec-565c-49f9-a4e9-4d9263501baf + - 2c9e9f6c-6456-4f89-8442-d86ac06c4eed status: 200 OK code: 200 - duration: 86.194484ms + duration: 147.264185ms - id: 44 request: proto: HTTP/1.1 @@ -2219,7 +2219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2227,20 +2227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 2279 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:26.993696+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "2279" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2248,10 +2248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d37fefe6-ca30-4fe6-a90d-4473109ef2c7 + - 8a256fc4-abbd-4238-b6b9-df1249b15750 status: 200 OK code: 200 - duration: 60.691483ms + duration: 116.243212ms - id: 45 request: proto: HTTP/1.1 @@ -2268,7 +2268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2276,20 +2276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2310 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,10 +2297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd8f6ecf-79d0-460c-ab38-84f33da359d7 + - c351a6fb-f66b-4677-9c41-091cc56a6b15 status: 200 OK code: 200 - duration: 49.423601ms + duration: 162.442844ms - id: 46 request: proto: HTTP/1.1 @@ -2317,7 +2317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2325,22 +2325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2310 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2348,12 +2346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ee4bbd2-3b21-42a7-8c7a-d844a967cf6f - X-Total-Count: - - "0" + - 6a3213ed-7139-4a4d-af67-c2ab80f25e3f status: 200 OK code: 200 - duration: 58.556819ms + duration: 140.883484ms - id: 47 request: proto: HTTP/1.1 @@ -2370,7 +2366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 method: GET response: proto: HTTP/2.0 @@ -2378,20 +2374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:12 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2399,10 +2395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34707816-bd58-4798-b7b3-00918490185a + - 42f57c46-ae3d-47c8-833b-b9818462b6a8 status: 200 OK code: 200 - duration: 79.126001ms + duration: 97.465122ms - id: 48 request: proto: HTTP/1.1 @@ -2419,7 +2415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/user_data method: GET response: proto: HTTP/2.0 @@ -2427,20 +2423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2316" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2448,10 +2444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4517a1b0-1735-40f7-9bb3-fe722a801e6b + - 3a70f984-d172-4057-b751-a735a2e03c24 status: 200 OK code: 200 - duration: 95.471899ms + duration: 94.900644ms - id: 49 request: proto: HTTP/1.1 @@ -2468,7 +2464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics method: GET response: proto: HTTP/2.0 @@ -2476,20 +2472,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "522" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:48 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,10 +2495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f257990-fc52-4778-84a4-63b2442e65fa + - 9acbd1ee-24d6-4438-98ea-da4368655280 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 69.454575ms + duration: 101.171251ms - id: 50 request: proto: HTTP/1.1 @@ -2517,7 +2517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2525,20 +2525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2310 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,10 +2546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45784920-df35-4714-97c5-ade633e60a6e + - 1dad0286-ab32-4c82-85cd-18b3069289a5 status: 200 OK code: 200 - duration: 50.233742ms + duration: 142.682648ms - id: 51 request: proto: HTTP/1.1 @@ -2566,7 +2566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2574,22 +2574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2310 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2597,12 +2595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4699e247-7aa1-4555-bab2-a387ceab030c - X-Total-Count: - - "0" + - 59aa4cb8-93e9-46ca-b565-24f611a202f1 status: 200 OK code: 200 - duration: 54.025686ms + duration: 133.214697ms - id: 52 request: proto: HTTP/1.1 @@ -2619,7 +2615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 method: GET response: proto: HTTP/2.0 @@ -2627,20 +2623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 520 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2316" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2648,10 +2644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d26d3714-6e71-4759-abe0-e1f9cc4ed5d0 + - 61f37fb3-9b7a-405e-9e73-c0b11009e221 status: 200 OK code: 200 - duration: 91.953161ms + duration: 90.233865ms - id: 53 request: proto: HTTP/1.1 @@ -2668,7 +2664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/user_data method: GET response: proto: HTTP/2.0 @@ -2676,20 +2672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "522" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2697,10 +2693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41f09dd2-f8c7-478a-b79d-8a0fefd184bc + - da40ca6b-e1b6-4f03-85cb-f0b9e54f90bb status: 200 OK code: 200 - duration: 51.316888ms + duration: 114.878971ms - id: 54 request: proto: HTTP/1.1 @@ -2717,7 +2713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics method: GET response: proto: HTTP/2.0 @@ -2725,20 +2721,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:49 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2746,10 +2744,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5fcedea-4d46-45e4-a3ef-11604877ee8c + - fe17f086-35e0-4e25-91bb-14c5c50a5dc3 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 53.018629ms + duration: 104.574181ms - id: 55 request: proto: HTTP/1.1 @@ -2766,7 +2766,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -2774,22 +2774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2310 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2797,12 +2795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c610214-ce82-4f22-b1f2-a5e1d4823de4 - X-Total-Count: - - "0" + - 4e92e04e-5633-427b-885a-141c83ebcf0e status: 200 OK code: 200 - duration: 55.521927ms + duration: 159.526208ms - id: 56 request: proto: HTTP/1.1 @@ -2819,7 +2815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 method: GET response: proto: HTTP/2.0 @@ -2827,22 +2823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 520 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "39208" + - "520" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT - Link: - - ; rel="next",; rel="last" + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2850,12 +2844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84bae9e4-1fe6-472d-9376-54e884c2b36b - X-Total-Count: - - "75" + - 3d0d7493-8564-467c-946f-1226c30b4725 status: 200 OK code: 200 - duration: 45.470498ms + duration: 100.008161ms - id: 57 request: proto: HTTP/1.1 @@ -2872,7 +2864,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/user_data method: GET response: proto: HTTP/2.0 @@ -2880,20 +2872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2316 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:10.892505+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2316" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2901,10 +2893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fcc6919-50be-4ac1-baf1-29588b2eb2c6 + - d0765722-9adf-49fc-8033-36d1a32c73e2 status: 200 OK code: 200 - duration: 90.64062ms + duration: 96.200241ms - id: 58 request: proto: HTTP/1.1 @@ -2921,7 +2913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/private_nics method: GET response: proto: HTTP/2.0 @@ -2929,22 +2921,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 20 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "19730" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2952,12 +2944,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acaefe7e-a18d-4f96-b74f-547c9086474e + - a36fe252-3058-4b34-b199-35946d8c778a X-Total-Count: - - "75" + - "0" status: 200 OK code: 200 - duration: 43.029937ms + duration: 112.879332ms - id: 59 request: proto: HTTP/1.1 @@ -2974,7 +2966,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -2982,20 +2974,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 39263 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "423" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:49 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3003,52 +2997,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec10730d-5b5c-4e45-b665-0055cfab0aa8 + - 2dbca64e-e221-4407-be34-434c4b737265 + X-Total-Count: + - "68" status: 200 OK code: 200 - duration: 46.904664ms + duration: 41.418874ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 14295 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448/action","href_result":"/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","id":"33944d65-be0a-4432-9530-db92dac97074","progress":0,"started_at":"2025-10-08T23:05:14.012537+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "353" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/33944d65-be0a-4432-9530-db92dac97074 + - Wed, 15 Oct 2025 15:04:49 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3056,10 +3050,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1c488d6-8ce3-42c7-802c-74413a3b38bd - status: 202 Accepted - code: 202 - duration: 210.896627ms + - 0ce89326-ad7c-42ff-8e17-2bf53c546fe4 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 47.431497ms - id: 61 request: proto: HTTP/1.1 @@ -3076,7 +3072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -3084,20 +3080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3105,52 +3101,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d63fb5cd-eb07-4a3a-992a-aeee0d23065c + - 02282bb4-bbe8-4371-a9e0-3f71d23194c4 status: 200 OK code: 200 - duration: 81.266956ms + duration: 123.484025ms - id: 62 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 274 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-happy-pasteur","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2154" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3158,10 +3150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4f6bbcb-29f1-4a87-88d6-ddf721199565 - status: 201 Created - code: 201 - duration: 359.466742ms + - d2d1ff64-34ff-4654-99ae-f1aa28ad512d + status: 200 OK + code: 200 + duration: 45.446505ms - id: 63 request: proto: HTTP/1.1 @@ -3178,7 +3170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -3186,20 +3178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 2310 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:42.644803+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2154" + - "2310" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3207,48 +3199,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c1d0b66-1a24-4173-96a0-b14d6c16598a + - a175a3e2-4adb-4033-85a3-ad0dd9a92280 status: 200 OK code: 200 - duration: 86.929254ms + duration: 135.778896ms - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2154 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.093457+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/64e60bc0-d167-48ff-b844-fd752209ed28/action","href_result":"/servers/64e60bc0-d167-48ff-b844-fd752209ed28","id":"10d74b27-3eec-4d67-977d-995207650f26","progress":0,"started_at":"2025-10-15T15:04:50.359773+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2154" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:04:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10d74b27-3eec-4d67-977d-995207650f26 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3256,52 +3252,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87bf0637-2ba9-4dcb-b7d3-ce22b2d1c539 - status: 200 OK - code: 200 - duration: 85.765108ms + - bb23ffdb-7a30-4c2b-aa42-3b66e7a459d1 + status: 202 Accepted + code: 202 + duration: 266.829228ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2273 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action","href_result":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163","id":"8b6ae006-47b6-426b-800a-6fe22951fd2a","progress":0,"started_at":"2025-10-08T23:05:14.585628+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:26.534348+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-ellis","id":"64e60bc0-d167-48ff-b844-fd752209ed28","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"19","hypervisor_id":"1001","node_id":"2","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:61","maintenances":[],"modification_date":"2025-10-15T15:04:50.150711+00:00","name":"tf-srv-amazing-ellis","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:26.534348+00:00","export_uri":null,"id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","modification_date":"2025-10-15T15:04:26.534348+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"64e60bc0-d167-48ff-b844-fd752209ed28","name":"tf-srv-amazing-ellis"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8b6ae006-47b6-426b-800a-6fe22951fd2a + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3309,48 +3301,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b98c7a0f-93ef-41f1-891f-92692e8f1bda - status: 202 Accepted - code: 202 - duration: 193.003853ms + - 805ccd82-e7d4-4c98-afc3-da5cc8cdc7d1 + status: 200 OK + code: 200 + duration: 162.911346ms - id: 66 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 279 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-srv-eloquent-engelbart","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2176 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.433474+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:50.583007+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2176" + - "2169" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:04:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3358,10 +3354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f0f769b-1c0d-4ed3-ae92-1c3a5487b9dd - status: 200 OK - code: 200 - duration: 90.323121ms + - 4234f56d-664b-4bb1-930b-a8037a2be959 + status: 201 Created + code: 201 + duration: 761.898474ms - id: 67 request: proto: HTTP/1.1 @@ -3378,7 +3374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3386,20 +3382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:50.583007+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2169" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3407,10 +3403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd10de90-4372-4f6d-a915-bb5d3ae93c20 + - 36bbafd5-094e-47be-8dd3-0256736cd48a status: 200 OK code: 200 - duration: 106.480749ms + duration: 130.198454ms - id: 68 request: proto: HTTP/1.1 @@ -3427,7 +3423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3435,20 +3431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2169 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:14.433474+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:50.583007+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2169" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3456,48 +3452,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59b8f46e-0119-4030-a3d6-2d88cf04e699 + - 27c90763-92a8-4658-b1eb-e3a7c9658eed status: 200 OK code: 200 - duration: 104.134963ms + duration: 133.932345ms - id: 69 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/action","href_result":"/servers/77d3151d-f486-4b6c-9d50-5352d89dee08","id":"87707060-8daa-4116-aa80-7b964bd8c3a4","progress":0,"started_at":"2025-10-15T15:04:51.269031+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:51 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/87707060-8daa-4116-aa80-7b964bd8c3a4 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3505,10 +3505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61af74ec-2568-4fbd-bcde-f5254cf1aa46 - status: 200 OK - code: 200 - duration: 90.683565ms + - 03d71703-e8c5-4b5d-b5bf-025af4129820 + status: 202 Accepted + code: 202 + duration: 260.282165ms - id: 70 request: proto: HTTP/1.1 @@ -3525,7 +3525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3533,20 +3533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 2191 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:51.061738+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2310" + - "2191" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3554,10 +3554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 891d93da-d1da-400a-af80-72c62dfbec12 + - d12b18fd-7656-4ee0-855a-3dce65d0d757 status: 200 OK code: 200 - duration: 109.541736ms + duration: 131.274082ms - id: 71 request: proto: HTTP/1.1 @@ -3574,7 +3574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/64e60bc0-d167-48ff-b844-fd752209ed28 method: GET response: proto: HTTP/2.0 @@ -3582,20 +3582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"64e60bc0-d167-48ff-b844-fd752209ed28","type":"not_found"}' headers: Content-Length: - - "2310" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3603,10 +3603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ac519c5-2256-46e6-a999-0f81fff58547 - status: 200 OK - code: 200 - duration: 105.170188ms + - d73b5af0-95ea-4918-b818-83062cf27b46 + status: 404 Not Found + code: 404 + duration: 56.006687ms - id: 72 request: proto: HTTP/1.1 @@ -3623,7 +3623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 method: GET response: proto: HTTP/2.0 @@ -3631,20 +3631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 520 + content_length: 143 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","type":"not_found"}' headers: Content-Length: - - "520" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3652,10 +3652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 463290cc-ef01-4984-91ab-3c11c5e3e42d - status: 200 OK - code: 200 - duration: 59.691017ms + - cac420a1-22f5-408f-a6cc-ebb447120fb3 + status: 404 Not Found + code: 404 + duration: 26.307093ms - id: 73 request: proto: HTTP/1.1 @@ -3672,7 +3672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441 method: GET response: proto: HTTP/2.0 @@ -3680,20 +3680,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 127 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"8b9a4ccf-2b5e-4a1f-baa8-c92d7b8d1441","type":"not_found"}' headers: Content-Length: - - "17" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3701,10 +3701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3771c299-d6c2-4f0c-94af-150d63bddd4e - status: 200 OK - code: 200 - duration: 46.287018ms + - a5cd2bdc-54e4-446d-9bbe-161e034b0a99 + status: 404 Not Found + code: 404 + duration: 16.447698ms - id: 74 request: proto: HTTP/1.1 @@ -3721,7 +3721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3729,22 +3729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2294 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:51.061738+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3752,12 +3750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a2b456d-66a0-44c6-b0b2-bf73651d3ace - X-Total-Count: - - "0" + - 68140e19-c17d-4815-844b-e22ecb8ea843 status: 200 OK code: 200 - duration: 53.53322ms + duration: 127.221538ms - id: 75 request: proto: HTTP/1.1 @@ -3774,7 +3770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3782,20 +3778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2294 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:04:51.061738+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2294" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3803,10 +3799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a916b4b-b2b6-4204-9292-b0124010a27a + - cf15b0cc-3845-4b43-af45-6c1595c73655 status: 200 OK code: 200 - duration: 92.140311ms + duration: 138.957698ms - id: 76 request: proto: HTTP/1.1 @@ -3823,7 +3819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3831,20 +3827,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:34 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3852,10 +3848,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acf0539e-6999-4f66-9a71-2011857cf281 + - 0991dcf6-ccc5-40d5-a2d9-2fc3a9d5915e status: 200 OK code: 200 - duration: 91.545487ms + duration: 135.314101ms - id: 77 request: proto: HTTP/1.1 @@ -3872,7 +3868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -3880,20 +3876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:39 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3901,10 +3897,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7545402-3e2f-480c-aaa0-9a49c43e4b73 + - ea175dba-d7fa-41f0-97d6-1277bc35a794 status: 200 OK code: 200 - duration: 89.703574ms + duration: 122.503172ms - id: 78 request: proto: HTTP/1.1 @@ -3921,7 +3917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 method: GET response: proto: HTTP/2.0 @@ -3929,20 +3925,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 525 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3950,10 +3946,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc6b3d06-4690-4458-8ea4-c2100cd4baed + - e8e909ff-3e4f-4223-b13e-e9cc98cbd79e status: 200 OK code: 200 - duration: 93.158039ms + duration: 109.947621ms - id: 79 request: proto: HTTP/1.1 @@ -3970,7 +3966,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/user_data method: GET response: proto: HTTP/2.0 @@ -3978,20 +3974,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2279" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3999,10 +3995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c13a398-0ad3-4a04-944c-325644ec7f57 + - 94863dd1-c0b3-4ccd-8383-d2f31527c948 status: 200 OK code: 200 - duration: 90.635065ms + duration: 100.375844ms - id: 80 request: proto: HTTP/1.1 @@ -4019,7 +4015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/private_nics method: GET response: proto: HTTP/2.0 @@ -4027,20 +4023,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2279" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4048,10 +4046,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 266013f6-61a9-4990-a1e9-11e727aa51a6 + - 1d636f57-1f62-42fa-b19c-ab47307e973d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 87.112198ms + duration: 93.967468ms - id: 81 request: proto: HTTP/1.1 @@ -4068,7 +4068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4076,20 +4076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:59 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4097,10 +4097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 905ca34e-5d92-4f97-91d5-3fd15f062e7f + - af0a3ce2-8977-44f3-93b0-a541603b424e status: 200 OK code: 200 - duration: 103.910711ms + duration: 128.37931ms - id: 82 request: proto: HTTP/1.1 @@ -4117,7 +4117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4125,20 +4125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4146,10 +4146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac485443-98b5-4952-a0a1-61a95c248c87 + - bee43c4e-3f71-4b74-bd15-741c4f0b8edf status: 200 OK code: 200 - duration: 102.900025ms + duration: 119.845189ms - id: 83 request: proto: HTTP/1.1 @@ -4166,7 +4166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 method: GET response: proto: HTTP/2.0 @@ -4174,20 +4174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 525 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "525" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:10 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4195,10 +4195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01771920-4d0c-47c8-b506-e353d1b1aedd + - 4b9ac97c-ed8a-4313-87b4-4930f8fd2d10 status: 200 OK code: 200 - duration: 97.583386ms + duration: 99.716408ms - id: 84 request: proto: HTTP/1.1 @@ -4215,7 +4215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/user_data method: GET response: proto: HTTP/2.0 @@ -4223,20 +4223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2279" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4244,10 +4244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be9f725-64ba-432e-b6ee-dfd87ddca129 + - b7a9c698-ea06-4ac4-bb12-14c17c41dc3a status: 200 OK code: 200 - duration: 90.912399ms + duration: 100.30967ms - id: 85 request: proto: HTTP/1.1 @@ -4264,7 +4264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/private_nics method: GET response: proto: HTTP/2.0 @@ -4272,20 +4272,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2279" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4293,10 +4295,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4be9ed6-1fdc-4495-9179-540eb71e009d + - 898234a5-3d11-49e8-ac60-059a67656c0e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 115.452807ms + duration: 99.204839ms - id: 86 request: proto: HTTP/1.1 @@ -4313,7 +4317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4321,20 +4325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4342,10 +4346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2c6508a-07d9-49ad-aed9-dd3ade618e22 + - e5b997a1-7f8c-443e-91f9-f5230fdd6779 status: 200 OK code: 200 - duration: 91.331181ms + duration: 174.4105ms - id: 87 request: proto: HTTP/1.1 @@ -4362,7 +4366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4370,20 +4374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2325 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:04.766171+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4391,48 +4395,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4284637-a19f-4f68-9544-8c980a9ee9f9 + - d7af4e9f-d846-465c-88f2-5ccc39589e6b status: 200 OK code: 200 - duration: 92.642197ms + duration: 164.892103ms - id: 88 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/77d3151d-f486-4b6c-9d50-5352d89dee08/action","href_result":"/servers/77d3151d-f486-4b6c-9d50-5352d89dee08","id":"6005cf5b-cd90-44b8-87c4-0964e0ba5f2a","progress":0,"started_at":"2025-10-15T15:05:08.848633+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:35 GMT + - Wed, 15 Oct 2025 15:05:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6005cf5b-cd90-44b8-87c4-0964e0ba5f2a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4440,10 +4448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c601e23-0507-4214-9080-161bd71ccdbc - status: 200 OK - code: 200 - duration: 97.570954ms + - 8c74a504-e1ac-4b49-9225-c4b695affa34 + status: 202 Accepted + code: 202 + duration: 322.962094ms - id: 89 request: proto: HTTP/1.1 @@ -4460,7 +4468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4468,20 +4476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2279 + content_length: 2288 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:01.410567+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-fervent-solomon","id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1002","node_id":"9","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:97","maintenances":[],"modification_date":"2025-10-08T23:05:13.851560+00:00","name":"tf-srv-fervent-solomon","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:01.410567+00:00","export_uri":null,"id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","modification_date":"2025-10-08T23:05:01.410567+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","name":"tf-srv-fervent-solomon"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:08.620056+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2279" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:40 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4489,10 +4497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5445b5c7-e130-4239-a9df-e34539d4b96e + - 76b7b3e3-e695-4aea-b9c7-7d7429505a8e status: 200 OK code: 200 - duration: 73.717626ms + duration: 152.391244ms - id: 90 request: proto: HTTP/1.1 @@ -4509,7 +4517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/dd7c4e0c-0a00-44f5-84e6-96e79c5ed448 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4517,20 +4525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2288 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"dd7c4e0c-0a00-44f5-84e6-96e79c5ed448","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:08.620056+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4538,10 +4546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9c1d4f0-b1e8-46da-9185-244b92029ef3 - status: 404 Not Found - code: 404 - duration: 44.663075ms + - ad45ab3a-11dd-4efc-a248-2887ad696893 + status: 200 OK + code: 200 + duration: 151.302549ms - id: 91 request: proto: HTTP/1.1 @@ -4558,7 +4566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4566,20 +4574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2288 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:50.583007+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-engelbart","id":"77d3151d-f486-4b6c-9d50-5352d89dee08","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"704","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7f","maintenances":[],"modification_date":"2025-10-15T15:05:08.620056+00:00","name":"tf-srv-eloquent-engelbart","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:50.583007+00:00","export_uri":null,"id":"3601837c-781a-4f54-bf27-31d74983d926","modification_date":"2025-10-15T15:04:50.583007+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"77d3151d-f486-4b6c-9d50-5352d89dee08","name":"tf-srv-eloquent-engelbart"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4587,10 +4595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 196497c3-af9b-4631-bacf-95d4212f751a - status: 404 Not Found - code: 404 - duration: 32.119606ms + - 1b6c0b30-1be5-4846-b2fb-c03290b8ace1 + status: 200 OK + code: 200 + duration: 147.176899ms - id: 92 request: proto: HTTP/1.1 @@ -4607,7 +4615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e2d0eb73-ea67-4f4e-913b-a2b968cef69d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -4615,20 +4623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 127 + content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"e2d0eb73-ea67-4f4e-913b-a2b968cef69d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77d3151d-f486-4b6c-9d50-5352d89dee08","type":"not_found"}' headers: Content-Length: - - "127" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:45 GMT + - Wed, 15 Oct 2025 15:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4636,10 +4644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca9478ff-756f-48e6-91de-8f17d988c5f5 + - bad71d2d-7c3a-467a-b2e2-dd12a460c685 status: 404 Not Found code: 404 - duration: 18.74162ms + duration: 44.650125ms - id: 93 request: proto: HTTP/1.1 @@ -4656,7 +4664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 method: GET response: proto: HTTP/2.0 @@ -4664,20 +4672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"3601837c-781a-4f54-bf27-31d74983d926","type":"not_found"}' headers: Content-Length: - - "2310" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4685,10 +4693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee9b6035-ec59-41ed-aea2-752416db0978 - status: 200 OK - code: 200 - duration: 90.811381ms + - c9ab2060-0060-4ae8-8244-3145f6f31802 + status: 404 Not Found + code: 404 + duration: 25.739154ms - id: 94 request: proto: HTTP/1.1 @@ -4705,7 +4713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/3601837c-781a-4f54-bf27-31d74983d926 method: GET response: proto: HTTP/2.0 @@ -4713,20 +4721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2310 + content_length: 127 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"3601837c-781a-4f54-bf27-31d74983d926","type":"not_found"}' headers: Content-Length: - - "2310" + - "127" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:46 GMT + - Wed, 15 Oct 2025 15:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4734,10 +4742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287380ab-a1fe-46d0-8778-9280f64bb50a - status: 200 OK - code: 200 - duration: 89.008833ms + - 851f2355-172d-433a-b586-32d52dc6debb + status: 404 Not Found + code: 404 + duration: 29.369462ms - id: 95 request: proto: HTTP/1.1 @@ -4754,456 +4762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 520 - uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' - headers: - Content-Length: - - "520" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eb062f4a-fea7-4185-a7f3-81f2df3fadd3 - status: 200 OK - code: 200 - duration: 50.904063ms - - id: 96 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 13a51012-b50d-44d1-b2a3-28b70356d7e3 - status: 200 OK - code: 200 - duration: 47.769348ms - - id: 97 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67bb3a98-efb4-4ed6-b58d-ac801ca1393f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 50.793108ms - - id: 98 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2310 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:05:24.116301+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2310" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c841f432-a10b-4646-97b8-b12c34228404 - status: 200 OK - code: 200 - duration: 92.370518ms - - id: 99 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 353 - uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163/action","href_result":"/servers/2176b007-c466-46a2-a8e9-04a4ca40f163","id":"9e71099d-74b5-4504-9538-ed24a152833c","progress":0,"started_at":"2025-10-08T23:06:46.897945+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:46 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e71099d-74b5-4504-9538-ed24a152833c - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 81c45f9b-1a16-45a2-81b3-5c8d4aa26907 - status: 202 Accepted - code: 202 - duration: 190.823842ms - - id: 100 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2273 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.093457+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-pasteur","id":"2176b007-c466-46a2-a8e9-04a4ca40f163","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"601","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9d","maintenances":[],"modification_date":"2025-10-08T23:06:46.747920+00:00","name":"tf-srv-happy-pasteur","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.093457+00:00","export_uri":null,"id":"e8e8771d-6c18-433f-9752-b5752d83b02a","modification_date":"2025-10-08T23:05:14.093457+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"2176b007-c466-46a2-a8e9-04a4ca40f163","name":"tf-srv-happy-pasteur"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2273" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c03ade26-5221-4124-a9e3-c2e771701389 - status: 200 OK - code: 200 - duration: 111.191655ms - - id: 101 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2176b007-c466-46a2-a8e9-04a4ca40f163","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b33767e7-b7ea-409c-aafc-10e116f46761 - status: 404 Not Found - code: 404 - duration: 48.851311ms - - id: 102 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e8e8771d-6c18-433f-9752-b5752d83b02a","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9caf5e96-299f-4862-8f33-c4055b49e313 - status: 404 Not Found - code: 404 - duration: 38.158217ms - - id: 103 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e8e8771d-6c18-433f-9752-b5752d83b02a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 127 - uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"e8e8771d-6c18-433f-9752-b5752d83b02a","type":"not_found"}' - headers: - Content-Length: - - "127" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:06:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 28d51a31-853b-4cd8-9fb9-426a1928e3b0 - status: 404 Not Found - code: 404 - duration: 24.802794ms - - id: 104 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2176b007-c466-46a2-a8e9-04a4ca40f163 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77d3151d-f486-4b6c-9d50-5352d89dee08 method: GET response: proto: HTTP/2.0 @@ -5213,7 +4772,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2176b007-c466-46a2-a8e9-04a4ca40f163","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77d3151d-f486-4b6c-9d50-5352d89dee08","type":"not_found"}' headers: Content-Length: - "143" @@ -5222,9 +4781,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:52 GMT + - Wed, 15 Oct 2025 15:05:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5232,7 +4791,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94d071a-cef1-4777-8df0-be5038dbf797 + - fb8200a3-285e-41ff-b509-868e4af570e6 status: 404 Not Found code: 404 - duration: 44.302547ms + duration: 47.006292ms diff --git a/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml b/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml index da49a7d94..d23c2e018 100644 --- a/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network-missing-pnic.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServer_PrivateNetworkMissingPNIC","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' + body: '{"name":"TestAccServer_PrivateNetworkMissingPNIC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - "437" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a2d27c4-dcee-40e8-bdfc-a8490aff2153 + - 9b745fca-a720-4585-919d-03bc07351049 status: 200 OK code: 200 - duration: 73.427571ms + duration: 98.764283ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - "437" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,22 +97,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 718c9882-02cc-41a3-90d5-10bd957d51c0 + - 30618de3-4096-4400-b562-ba183a5cbb01 status: 200 OK code: 200 - duration: 28.324413ms + duration: 26.301773ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 208 + content_length: 197 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-condescending-mcclintock","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-silly-ptolemy","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "1100" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03996ec7-d5ac-4cde-8ad3-c5310a101601 + - 658cd0f3-e672-4bc7-8729-819aca950be9 status: 200 OK code: 200 - duration: 1.285917463s + duration: 658.583972ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "1100" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d09758-2657-4f17-926e-1943e415e747 + - 15208201-dfc2-4bd2-829b-d971c9febe39 status: 200 OK code: 200 - duration: 24.526637ms + duration: 29.401442ms - id: 4 request: proto: HTTP/1.1 @@ -225,22 +225,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,12 +248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f16bb838-d558-4924-a542-a7f6490968d1 + - 73467257-2849-4e05-833a-8eb0dd5c5d91 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.029ms + duration: 54.245253ms - id: 5 request: proto: HTTP/1.1 @@ -278,22 +278,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,12 +301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6670cec-b01c-4da0-be0b-e4abb528a12a + - 6706ed03-ddcd-46d6-a7a0-f6f5d5cd9648 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 44.165119ms + duration: 66.154917ms - id: 6 request: proto: HTTP/1.1 @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,22 +352,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce367684-7515-4a36-b59d-775237a00c98 + - 22271365-c642-48a1-bdaa-3f701b29ff74 status: 200 OK code: 200 - duration: 53.20724ms + duration: 51.081441ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 240 + content_length: 243 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-naughty-dubinsky","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-eloquent-lichterman","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -382,22 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:06.625698+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8c6b04a-a34b-4449-a83d-ce212418423d + - 492f6bd7-709c-4188-9313-d07e8dcee34a status: 201 Created code: 201 - duration: 575.904916ms + duration: 1.452906031s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:06.625698+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41ffef7f-50ac-40af-bc0d-9c0224ab0368 + - 39b6a59f-241a-4023-89d1-068ba3ca4343 status: 200 OK code: 200 - duration: 101.941804ms + duration: 145.596403ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1750 + content_length: 1756 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:28.783078+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:06.625698+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1750" + - "1756" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8757e6c6-6f35-496c-be25-f21529f61500 + - f6f6e53f-1ad5-4fc4-b40a-0f24421e2c4e status: 200 OK code: 200 - duration: 102.326346ms + duration: 124.957253ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c41e2594-5966-4bbc-b8f1-27bedba0017b + - 56936efe-9db4-4e56-beee-161f995970fc status: 200 OK code: 200 - duration: 40.33344ms + duration: 104.780062ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c02766f9-760f-4697-9d67-41886c8285db/action","href_result":"/servers/c02766f9-760f-4697-9d67-41886c8285db","id":"b41a8182-5397-44ff-8a0e-c245528633dd","progress":0,"started_at":"2025-10-08T23:04:29.590778+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/b8233a74-4468-4118-b43f-d51e99bd5056/action","href_result":"/servers/b8233a74-4468-4118-b43f-d51e99bd5056","id":"9e613d13-d809-49b4-9118-788b8e269047","progress":0,"started_at":"2025-10-15T15:04:08.073761+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b41a8182-5397-44ff-8a0e-c245528633dd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e613d13-d809-49b4-9118-788b8e269047 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 103af33b-febf-408e-a470-06bb387c0b05 + - eedfce7c-9f9e-473f-acdc-b61e333a8eaf status: 202 Accepted code: 202 - duration: 183.44769ms + duration: 267.789695ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1772 + content_length: 1778 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:29.447693+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:07.860491+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1772" + - "1778" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db593e95-978f-46d7-b31a-89a85d352079 + - a00d693f-de7d-472c-8a67-628c6d497dbc status: 200 OK code: 200 - duration: 83.735426ms + duration: 123.460339ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d179b1cc-e630-4f0c-aa40-eefcd1bfefbd + - c4e06e75-4575-4506-a6b7-e5a5ea730664 status: 200 OK code: 200 - duration: 123.183934ms + duration: 140.941874ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "1100" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3febf456-1414-4cb4-b196-d4ac340ac0c2 + - c3595c8c-0181-4ecc-8aa2-a8dd4e793127 status: 200 OK code: 200 - duration: 42.814115ms + duration: 20.091663ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d97ad87-6d80-4f34-985b-f139923bca16 + - f7df9d94-8be9-4da6-bbce-a433dc9ed725 status: 200 OK code: 200 - duration: 94.38891ms + duration: 147.283572ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a"}' + body: '{"private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8768ca0-9e4a-4344-b4f2-d2edbb776119 + - 55afd2d0-fc74-4ee7-8aa8-10a979e02fd6 status: 201 Created code: 201 - duration: 536.666197ms + duration: 575.642769ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3817ebcc-fd9f-4690-abf1-defc7203ceb0 + - 81590585-3105-4f8d-8ada-3ef1f9b71194 status: 200 OK code: 200 - duration: 62.080768ms + duration: 108.51026ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b18cee-abab-4886-b1db-e67e0b0f0752 + - 7483fdc5-4638-4418-bb7e-f3495192d83d status: 200 OK code: 200 - duration: 47.325041ms + duration: 103.385057ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72dccf92-8ddd-4342-a984-6ae6b17a0e65 + - ab693a81-8910-45e7-8ddb-e11f6f4f5d7a status: 200 OK code: 200 - duration: 46.074793ms + duration: 102.380788ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1029,7 +1029,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81e9d08a-ef6e-43a9-8d95-d43545628f5c + - 431599b4-d812-425e-89b9-63e48fc253bc status: 200 OK code: 200 - duration: 61.66343ms + duration: 95.029572ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:55 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31e22093-73a2-4ef1-b087-9c8539957a27 + - bc329887-b61f-427f-b8df-13a7309d0c3a status: 200 OK code: 200 - duration: 66.822655ms + duration: 106.296608ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1127,7 +1127,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1136,9 +1136,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:00 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9055c293-fb80-41e0-8798-397e6240762a + - 64f5fa2a-020b-4679-b997-8eca99a9e235 status: 200 OK code: 200 - duration: 75.45788ms + duration: 81.352488ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1176,7 +1176,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1185,9 +1185,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:05 GMT + - Wed, 15 Oct 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1905e1b-802e-42f1-af74-9c8c757b7800 + - 5da12fb4-2506-41a6-b747-82949e6716bd status: 200 OK code: 200 - duration: 55.859124ms + duration: 85.142627ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1225,7 +1225,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1234,9 +1234,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:10 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d64db2b4-d465-47f5-8037-c48b975e3cbc + - ea6605ef-6e44-4287-a04a-d6d8e57033d1 status: 200 OK code: 200 - duration: 59.41553ms + duration: 90.883684ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1274,7 +1274,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1283,9 +1283,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:16 GMT + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99e53d88-b85f-4fe4-b1a1-a18b718ecfc5 + - b0e14be9-7de9-46a7-bfcb-9c6184f69bd6 status: 200 OK code: 200 - duration: 55.08648ms + duration: 97.079354ms - id: 26 request: proto: HTTP/1.1 @@ -1313,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1323,7 +1323,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:04:13.770796+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1332,9 +1332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c0c5a61-7e69-4bf9-8310-a71df56f82da + - 03bc15a6-162d-45ee-bb77-8d0172b58b35 status: 200 OK code: 200 - duration: 66.478871ms + duration: 116.889591ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1370,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2025205-3cb9-48c9-8bfc-68246a1e7ce7 + - 0509c2f8-bc9b-49fd-aee3-ddf8781586c0 status: 200 OK code: 200 - duration: 55.743444ms + duration: 84.402362ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -1419,20 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,10 +1440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b318d16-7c92-4b74-8c28-a6749796bd67 + - 43df240d-0aa6-4dd8-8d33-206ec6e8c72c status: 200 OK code: 200 - duration: 63.759671ms + duration: 104.805498ms - id: 29 request: proto: HTTP/1.1 @@ -1460,7 +1460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -1468,20 +1468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 2370 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1489,10 +1489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79ec418c-5950-4938-8d50-58d232b11f43 + - fa68233a-fc01-4ff0-9aa4-9ad594fdb3fa status: 200 OK code: 200 - duration: 52.958743ms + duration: 127.760618ms - id: 30 request: proto: HTTP/1.1 @@ -1509,7 +1509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -1517,20 +1517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "473" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:41 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1538,10 +1538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73692a67-86d8-4756-b04e-02a598b87aff - status: 200 OK - code: 200 - duration: 83.109478ms + - 999213ba-e31b-46dc-80b0-3d208abaf436 + status: 404 Not Found + code: 404 + duration: 26.993412ms - id: 31 request: proto: HTTP/1.1 @@ -1558,7 +1558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -1566,20 +1566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:46 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1587,10 +1587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d287a8b-0f1f-4354-960c-7ee2e576700d + - 7395c2bb-2f04-4e89-80f1-5f120cf8a489 status: 200 OK code: 200 - duration: 54.517098ms + duration: 79.050659ms - id: 32 request: proto: HTTP/1.1 @@ -1607,7 +1607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -1615,20 +1615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:51 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1636,10 +1636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5445d2ba-2aaa-4ac3-bc8e-847f091886c7 + - 81c0d92a-36b8-4da6-8c62-d4ebce05913c status: 200 OK code: 200 - duration: 57.178426ms + duration: 113.103426ms - id: 33 request: proto: HTTP/1.1 @@ -1656,7 +1656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -1664,20 +1664,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 478 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:04:35.100528+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "473" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:05 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1685,10 +1687,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b6dfde-7ccf-42ab-b51d-5d6a6afd7daa + - 1861769a-ea7c-4907-8e19-9f24295a54c4 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 55.918641ms + duration: 99.524206ms - id: 34 request: proto: HTTP/1.1 @@ -1705,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1713,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1082 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1734,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be889b60-3797-4219-8082-b4babe2f623a + - 343b785a-9aa6-442d-98a2-7540be4cec05 status: 200 OK code: 200 - duration: 64.44944ms + duration: 33.441702ms - id: 35 request: proto: HTTP/1.1 @@ -1754,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -1762,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 437 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "475" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1783,10 +1787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab90a798-0f18-4e53-86f6-4e953258af61 + - 72888366-7b1b-465c-ad2b-b3459bc73cd7 status: 200 OK code: 200 - duration: 52.176189ms + duration: 31.442063ms - id: 36 request: proto: HTTP/1.1 @@ -1803,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -1811,20 +1815,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 1089 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "2364" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1832,10 +1836,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e82a3575-251b-4677-b025-9810c565212c + - ba54482c-20c6-490f-8cfe-0354983b0402 status: 200 OK code: 200 - duration: 102.873027ms + duration: 22.989906ms - id: 37 request: proto: HTTP/1.1 @@ -1852,7 +1856,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -1860,20 +1864,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2370 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1881,10 +1885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 892be242-866f-473a-9817-09d664a4f62d - status: 404 Not Found - code: 404 - duration: 44.351265ms + - d0921e23-9f50-42dd-b68d-f9749f045185 + status: 200 OK + code: 200 + duration: 156.658672ms - id: 38 request: proto: HTTP/1.1 @@ -1901,7 +1905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -1909,20 +1913,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "705" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1930,10 +1934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c78a378c-50b0-486e-ab7e-7ceaff6e15f6 - status: 200 OK - code: 200 - duration: 40.469195ms + - bda3dd65-040c-4011-bcc2-3b914ee26340 + status: 404 Not Found + code: 404 + duration: 28.817933ms - id: 39 request: proto: HTTP/1.1 @@ -1950,7 +1954,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -1958,20 +1962,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1979,10 +1983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a128a78-d85c-4347-8380-d5568adcdf11 + - b8026934-b3b4-4fe1-990b-6874bb7cf821 status: 200 OK code: 200 - duration: 73.761028ms + duration: 75.424409ms - id: 40 request: proto: HTTP/1.1 @@ -1999,7 +2003,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -2007,22 +2011,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2030,12 +2032,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abb72c17-731a-4619-874e-f4bff058873f - X-Total-Count: - - "1" + - c8e395fc-4b15-405f-b6d5-4be21c487f7e status: 200 OK code: 200 - duration: 67.927793ms + duration: 101.466287ms - id: 41 request: proto: HTTP/1.1 @@ -2052,7 +2052,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -2060,20 +2060,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1075" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,10 +2083,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd46a73d-0afa-4bb8-8078-892bcc2be294 + - f7cc7ef4-c2c5-4874-b763-8a5f043e7514 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 34.542298ms + duration: 117.416544ms - id: 42 request: proto: HTTP/1.1 @@ -2101,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2109,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1082 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2130,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7d91a95-e15f-445d-bd80-a341fca551ba + - 5e0e2656-090a-49d5-83b7-0cb0db42424d status: 200 OK code: 200 - duration: 27.789901ms + duration: 34.499686ms - id: 43 request: proto: HTTP/1.1 @@ -2150,7 +2154,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -2158,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1100" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2179,10 +2183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44d2bdc3-25ef-402c-9de0-7294fc9ca8dc + - 55c9536c-8af1-4d69-8a99-bb21d620a59c status: 200 OK code: 200 - duration: 23.910506ms + duration: 88.422541ms - id: 44 request: proto: HTTP/1.1 @@ -2199,7 +2203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -2207,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2228,10 +2232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f919e8f-238a-4068-974e-996e79ad7eb8 + - 0b56f590-36e5-4489-94d7-68071488453c status: 200 OK code: 200 - duration: 111.123278ms + duration: 139.6865ms - id: 45 request: proto: HTTP/1.1 @@ -2248,7 +2252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2256,20 +2260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1082 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2277,10 +2281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbdb04d9-dd1e-4b2c-8aad-b9db77fafcd9 - status: 404 Not Found - code: 404 - duration: 32.107318ms + - 527a2df1-2304-4711-913a-ae8d08ed31dd + status: 200 OK + code: 200 + duration: 48.066835ms - id: 46 request: proto: HTTP/1.1 @@ -2297,7 +2301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -2305,20 +2309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "705" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2326,10 +2330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4033535c-e2bb-43c2-8b3f-27bf8729529b + - c64865b9-f8d7-40f2-9e3b-049057ba9426 status: 200 OK code: 200 - duration: 63.56387ms + duration: 35.380228ms - id: 47 request: proto: HTTP/1.1 @@ -2346,7 +2350,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -2354,20 +2358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1089 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "17" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2375,10 +2379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b16870fc-b961-483a-b44b-af01017d6bcd + - dfd8b8e3-1111-4b87-b8a5-29028de8bbb0 status: 200 OK code: 200 - duration: 53.840701ms + duration: 24.516127ms - id: 48 request: proto: HTTP/1.1 @@ -2395,7 +2399,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -2403,22 +2407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2370 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2426,12 +2428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db42236d-5db7-47d7-b3ed-1efb16a93732 - X-Total-Count: - - "1" + - a22c40c9-0683-4539-a00a-2e39841ddeb9 status: 200 OK code: 200 - duration: 50.11472ms + duration: 186.425115ms - id: 49 request: proto: HTTP/1.1 @@ -2448,7 +2448,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -2456,20 +2456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "1075" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2477,10 +2477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae7a2ff7-0582-4d56-8e91-38fe3c9e5b4b - status: 200 OK - code: 200 - duration: 25.273421ms + - cdafd10a-bc59-448b-9a1b-e15f904e64a6 + status: 404 Not Found + code: 404 + duration: 34.984386ms - id: 50 request: proto: HTTP/1.1 @@ -2497,7 +2497,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -2505,20 +2505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2526,10 +2526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acbd5a52-9fcc-4740-95b8-ee8c51f887c0 + - 9cd94af5-fe33-44eb-8df6-2003969e04cc status: 200 OK code: 200 - duration: 104.213549ms + duration: 92.291145ms - id: 51 request: proto: HTTP/1.1 @@ -2546,7 +2546,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -2554,20 +2554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2364" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2575,10 +2575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25d87409-f953-42db-8a88-162475fe173b + - 7f90338c-3255-45b7-ae71-e1a036154569 status: 200 OK code: 200 - duration: 96.425735ms + duration: 154.30442ms - id: 52 request: proto: HTTP/1.1 @@ -2595,7 +2595,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -2603,20 +2603,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1075" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2624,10 +2626,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4066c45a-5cd9-4917-9a5d-1a9b7a6f57b7 + - 6d84f7fd-fb97-43d1-8303-73ad8c4ba72c + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 46.559355ms + duration: 112.592289ms - id: 53 request: proto: HTTP/1.1 @@ -2644,7 +2648,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2652,20 +2656,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1082 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2673,10 +2677,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37c34b6d-ac2d-43b1-909c-3a5065843e85 + - 8042b3d4-868b-4272-931f-a320ae746882 status: 200 OK code: 200 - duration: 26.495574ms + duration: 30.134011ms - id: 54 request: proto: HTTP/1.1 @@ -2693,7 +2697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -2701,20 +2705,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1100" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2722,10 +2726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bf05d9a-50e2-4448-9ee6-297f9ea86fba + - 067161e8-54f1-4e7a-b822-9d80e573fbdb status: 200 OK code: 200 - duration: 22.723918ms + duration: 101.626038ms - id: 55 request: proto: HTTP/1.1 @@ -2742,7 +2746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -2750,20 +2754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2771,10 +2775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d14b97f9-9280-4194-aebd-b59783c33db9 + - 98a26409-86e9-4320-a70e-1987aeefa93b status: 200 OK code: 200 - duration: 77.300582ms + duration: 156.12793ms - id: 56 request: proto: HTTP/1.1 @@ -2791,7 +2795,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2799,20 +2803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1082 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2820,10 +2824,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f80bfdc-d675-4d38-81ef-534ecd24d5dd - status: 404 Not Found - code: 404 - duration: 33.609519ms + - fb73bb65-0f10-417c-9e02-997732995773 + status: 200 OK + code: 200 + duration: 38.099306ms - id: 57 request: proto: HTTP/1.1 @@ -2840,7 +2844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -2848,20 +2852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "705" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2869,10 +2873,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 758eac5a-c952-4430-85aa-5bac7917f479 + - 932ccf7e-acb7-4db7-b262-c4dd142e17a9 status: 200 OK code: 200 - duration: 79.495879ms + duration: 27.608286ms - id: 58 request: proto: HTTP/1.1 @@ -2889,7 +2893,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -2897,20 +2901,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1089 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "17" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2918,10 +2922,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fda86a45-bb69-458a-b693-7d6a57b38578 + - a5bd5174-525b-4376-8737-1a6557a47291 status: 200 OK code: 200 - duration: 54.064506ms + duration: 20.414267ms - id: 59 request: proto: HTTP/1.1 @@ -2938,7 +2942,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -2946,22 +2950,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 2370 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2969,12 +2971,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c65b0cf-b900-454b-a50c-b9d8c604af55 - X-Total-Count: - - "1" + - 04647472-a590-427a-b2a6-8da9d27f44cd status: 200 OK code: 200 - duration: 61.391878ms + duration: 138.395461ms - id: 60 request: proto: HTTP/1.1 @@ -2991,7 +2991,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -2999,20 +2999,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "1075" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:03 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3020,10 +3020,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88253407-47bd-4c8d-a639-99bbab829219 - status: 200 OK - code: 200 - duration: 26.40161ms + - ee83e66c-a117-4bf0-92e3-1ea7df96c7a4 + status: 404 Not Found + code: 404 + duration: 29.05079ms - id: 61 request: proto: HTTP/1.1 @@ -3040,7 +3040,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -3048,20 +3048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3069,10 +3069,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a7c156e-7d53-4bab-b4a5-477d17643357 + - 6bedc6b6-a489-4a23-b4a8-b6b1f0b53c87 status: 200 OK code: 200 - duration: 52.595184ms + duration: 79.00284ms - id: 62 request: proto: HTTP/1.1 @@ -3089,7 +3089,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -3097,20 +3097,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2364" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3118,10 +3118,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a73aea4c-3cec-4cae-a2c5-8feab8526fc6 + - 89a43679-4236-43ee-903d-627f3b462969 status: 200 OK code: 200 - duration: 97.266372ms + duration: 100.255258ms - id: 63 request: proto: HTTP/1.1 @@ -3138,7 +3138,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -3146,20 +3146,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1075" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3167,10 +3169,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fc6a02b-7b7b-4321-8cd6-11b5c39da5e8 + - e208f927-44bb-4aad-ab79-cc41048e8887 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 66.004049ms + duration: 108.792937ms - id: 64 request: proto: HTTP/1.1 @@ -3187,7 +3191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3195,20 +3199,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1082 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3216,10 +3220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b00456b2-e2f3-44b4-a79d-99524bf9e4ce + - 117fe7bd-3d08-4c83-8aa0-769d9f40c77e status: 200 OK code: 200 - duration: 32.582899ms + duration: 30.448381ms - id: 65 request: proto: HTTP/1.1 @@ -3236,7 +3240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -3244,20 +3248,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1100" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3265,10 +3269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b7d70c2-dbed-4f53-ac30-dd936205dc84 + - 278a7f75-654d-4fd6-9305-fd79bd7b3ff4 status: 200 OK code: 200 - duration: 23.274979ms + duration: 102.000171ms - id: 66 request: proto: HTTP/1.1 @@ -3285,7 +3289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -3293,20 +3297,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3314,10 +3318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16e335b4-a2a6-4f6c-affa-3ee0dd3d7213 + - 7896c20e-97ac-45e1-835a-2a1fe1ff3ba3 status: 200 OK code: 200 - duration: 87.37456ms + duration: 174.635563ms - id: 67 request: proto: HTTP/1.1 @@ -3334,7 +3338,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3342,20 +3346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1082 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3363,10 +3367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efa89772-bb6c-4747-b60e-66513a2b0c8c - status: 404 Not Found - code: 404 - duration: 32.13055ms + - 63019990-cd10-4bca-b70d-f7bbed4e98d7 + status: 200 OK + code: 200 + duration: 54.819176ms - id: 68 request: proto: HTTP/1.1 @@ -3383,7 +3387,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -3391,20 +3395,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "705" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3412,10 +3416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a94b3f77-4fe6-40a5-b40a-ef567ef1f340 + - 0dc6d74d-bb4f-4672-a8f5-ef3766c65ac8 status: 200 OK code: 200 - duration: 52.505087ms + duration: 24.501881ms - id: 69 request: proto: HTTP/1.1 @@ -3432,7 +3436,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -3440,20 +3444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1089 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "17" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3461,10 +3465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e37534e0-3bb3-4551-8b3e-c0c3d9b62352 + - f1967ade-f956-4424-aef4-1925b8fed8e0 status: 200 OK code: 200 - duration: 56.02695ms + duration: 20.028303ms - id: 70 request: proto: HTTP/1.1 @@ -3481,7 +3485,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -3489,22 +3493,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 475 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3512,12 +3514,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4c6d27-176f-46f9-a62a-0541cfc186cd - X-Total-Count: - - "1" + - 49a0b3a4-1c7f-4914-aede-d91f82e06579 status: 200 OK code: 200 - duration: 62.692035ms + duration: 115.2741ms - id: 71 request: proto: HTTP/1.1 @@ -3534,7 +3534,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -3542,20 +3542,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 2370 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1075" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3563,10 +3563,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12ca5050-aff8-4696-afbc-81b55485c7c7 + - 6687c585-9040-4ca9-a2c8-3590f1e7372f status: 200 OK code: 200 - duration: 28.330713ms + duration: 142.483117ms - id: 72 request: proto: HTTP/1.1 @@ -3583,7 +3583,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -3591,20 +3591,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "475" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3612,10 +3612,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2aec899-9fe8-4f19-afbf-a797ffaae465 - status: 200 OK - code: 200 - duration: 51.24358ms + - 9ff6da70-4f15-4428-b6d2-20edec944ed6 + status: 404 Not Found + code: 404 + duration: 33.140368ms - id: 73 request: proto: HTTP/1.1 @@ -3632,7 +3632,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -3640,20 +3640,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3661,10 +3661,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b65880a-f6f0-42ac-b31e-304579833030 + - 0eb9ca2e-13d5-4f44-9eab-c6cbd9efc82f status: 200 OK code: 200 - duration: 137.843206ms + duration: 140.299994ms - id: 74 request: proto: HTTP/1.1 @@ -3681,7 +3681,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=e3fa1df0-5343-4b5b-b803-df025d422fab&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3689,20 +3689,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 1082 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1075" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3710,10 +3710,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af38afb5-7993-4d47-9736-e3f89261cb44 + - 8f51a213-18ef-4acf-9227-0bb03666c29a status: 200 OK code: 200 - duration: 43.400323ms + duration: 65.376972ms - id: 75 request: proto: HTTP/1.1 @@ -3730,7 +3730,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -3738,20 +3738,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "437" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3759,10 +3759,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aab1f50-2bbd-4e4b-ae38-25cfcfcc1385 + - 07842424-b645-4728-8a5f-e23701180bdb status: 200 OK code: 200 - duration: 36.208394ms + duration: 89.445781ms - id: 76 request: proto: HTTP/1.1 @@ -3779,7 +3779,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -3787,20 +3787,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "475" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3808,10 +3808,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de2369e3-5243-4126-af9f-f4c29f73be7a + - ac1dacb7-3ece-4f35-903c-7eb323f4b38d status: 200 OK code: 200 - duration: 54.70424ms + duration: 132.089379ms - id: 77 request: proto: HTTP/1.1 @@ -3828,7 +3828,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -3836,20 +3836,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1100" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3857,10 +3859,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22b9c93c-e911-482e-8109-f486463153d3 + - 786a7b5c-3601-4ab8-a38e-cf09cdd3f909 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 22.416599ms + duration: 119.932966ms - id: 78 request: proto: HTTP/1.1 @@ -3877,7 +3881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=75de89bb-c6ac-41c1-8d61-627733f30815&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3885,20 +3889,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 1082 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:4995:e6ce:401f:1116/64","created_at":"2025-10-15T15:04:13.953584Z","id":"b5f5c1e2-7d3c-4237-9c6b-fe97faed0744","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:04:13.953584Z","zone":null},{"address":"172.17.16.2/22","created_at":"2025-10-15T15:04:13.836642Z","id":"da624068-d268-4bea-9769-bbe36a539a7f","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"75de89bb-c6ac-41c1-8d61-627733f30815","mac_address":"02:00:00:15:D8:29","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:04:13.836642Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2364" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3906,10 +3910,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b11509-b931-4421-88f1-dd0a8862671f + - d130b56f-453b-4981-b8ac-78a2880f9788 status: 200 OK code: 200 - duration: 98.009508ms + duration: 27.949145ms - id: 79 request: proto: HTTP/1.1 @@ -3926,7 +3930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -3934,20 +3938,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 475 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:13.557241+00:00","id":"75de89bb-c6ac-41c1-8d61-627733f30815","ipam_ip_ids":["da624068-d268-4bea-9769-bbe36a539a7f","b5f5c1e2-7d3c-4237-9c6b-fe97faed0744"],"mac_address":"02:00:00:15:d8:29","modification_date":"2025-10-15T15:05:01.249497+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3955,10 +3959,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d1d3b63-4541-4594-8d9e-88efde4f1826 + - 1ec92b1c-85e2-45a1-bbc3-129f3e079e44 status: 200 OK code: 200 - duration: 106.682181ms + duration: 146.12109ms - id: 80 request: proto: HTTP/1.1 @@ -3975,28 +3979,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d6c3e600-cbf4-4ab6-9be2-587e316f202a&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 0 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: "" headers: - Content-Length: - - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4004,10 +4006,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f9196b-0dd9-4a4c-9892-a93e794657f2 - status: 200 OK - code: 200 - duration: 43.310558ms + - 1a754b31-4a64-4c57-8122-0d4939bdd5e8 + status: 204 No Content + code: 204 + duration: 417.688121ms - id: 81 request: proto: HTTP/1.1 @@ -4024,7 +4026,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/75de89bb-c6ac-41c1-8d61-627733f30815 method: GET response: proto: HTTP/2.0 @@ -4032,20 +4034,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"75de89bb-c6ac-41c1-8d61-627733f30815","type":"not_found"}' headers: Content-Length: - - "143" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4053,10 +4055,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf146f9-e8b7-4747-8f3c-d22751ebec95 + - 84674810-c9b8-4cd0-ac71-63bf5a77c506 status: 404 Not Found code: 404 - duration: 32.767931ms + duration: 91.15143ms - id: 82 request: proto: HTTP/1.1 @@ -4073,7 +4075,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -4081,20 +4083,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "705" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4102,10 +4104,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76c21a06-d5d5-4c69-b0f9-9d88cbcad84d + - 8b4bbe89-3d91-40ce-a5f4-849f0ea6f978 status: 200 OK code: 200 - duration: 44.004272ms + duration: 28.968116ms - id: 83 request: proto: HTTP/1.1 @@ -4122,7 +4124,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -4130,20 +4132,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1089 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "17" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4151,10 +4153,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9cf6ad5d-034c-4921-8a32-e87bec983b28 + - 99f0c2cb-06af-49f7-9441-3e39772e94d6 status: 200 OK code: 200 - duration: 68.182323ms + duration: 26.760025ms - id: 84 request: proto: HTTP/1.1 @@ -4171,7 +4173,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -4179,22 +4181,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1912 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4202,12 +4202,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46a481ca-ef48-48da-bf68-230fab8ca329 - X-Total-Count: - - "1" + - e7f92c9d-bb25-4976-83b7-79e0d4b15956 status: 200 OK code: 200 - duration: 54.777726ms + duration: 163.4277ms - id: 85 request: proto: HTTP/1.1 @@ -4224,7 +4222,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=2790e95f-52e6-472f-84a6-6692194b49dc&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -4232,20 +4230,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1075 + content_length: 143 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:da5a:f38:31bd:1a69/64","created_at":"2025-10-08T23:04:35.356261Z","id":"39d47300-edf8-4c7d-b642-895d4c723c8c","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:04:35.356261Z","zone":null},{"address":"172.16.16.2/22","created_at":"2025-10-08T23:04:35.235088Z","id":"a7c8147d-23f9-43d9-9102-b161a44fe379","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"2790e95f-52e6-472f-84a6-6692194b49dc","mac_address":"02:00:00:11:9F:F7","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:04:35.235088Z","zone":null}],"total_count":2}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "1075" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:05 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4253,10 +4251,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f76aaf9-276a-4893-8d78-4ca59b67c475 - status: 200 OK - code: 200 - duration: 27.054749ms + - a41ffe91-23bf-4f55-bba9-6bc960b2229c + status: 404 Not Found + code: 404 + duration: 23.33818ms - id: 86 request: proto: HTTP/1.1 @@ -4273,7 +4271,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -4281,20 +4279,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:34.979849+00:00","id":"2790e95f-52e6-472f-84a6-6692194b49dc","ipam_ip_ids":["a7c8147d-23f9-43d9-9102-b161a44fe379","39d47300-edf8-4c7d-b642-895d4c723c8c"],"mac_address":"02:00:00:11:9f:f7","modification_date":"2025-10-08T23:06:00.443147+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "475" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4302,10 +4300,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dda4ae96-1427-4ae5-b1e7-e439b9618d14 + - b8d9d1c1-7940-403d-88da-abe748233d6c status: 200 OK code: 200 - duration: 62.033565ms + duration: 98.143331ms - id: 87 request: proto: HTTP/1.1 @@ -4322,26 +4320,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 17 uncompressed: false - body: "" + body: '{"user_data":[]}' headers: + Content-Length: + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4349,10 +4349,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac3576a9-2e58-4e28-bd47-5e3a03d6a439 - status: 204 No Content - code: 204 - duration: 302.776654ms + - c73a91b6-7f09-496c-895c-3adcac1bbde5 + status: 200 OK + code: 200 + duration: 155.601796ms - id: 88 request: proto: HTTP/1.1 @@ -4369,7 +4369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/2790e95f-52e6-472f-84a6-6692194b49dc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -4377,20 +4377,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 20 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"2790e95f-52e6-472f-84a6-6692194b49dc","type":"not_found"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "148" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:11 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4398,11 +4400,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27444c11-6b4c-4916-9dae-7232957bc7da - status: 404 Not Found - code: 404 - duration: 63.030752ms - - id: 89 + - 0439e016-5c96-473d-aaaf-7dc6ddf42837 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 124.275819ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4418,7 +4422,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -4428,7 +4432,7 @@ interactions: trailer: {} content_length: 437 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - "437" @@ -4437,9 +4441,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4447,10 +4451,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2734a7d2-44cf-4cc2-9cfb-470ec348466f + - 7fcd00f6-37a4-44fd-aceb-c2813700276e status: 200 OK code: 200 - duration: 29.605604ms + duration: 43.845552ms - id: 90 request: proto: HTTP/1.1 @@ -4467,7 +4471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -4475,20 +4479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1089 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "1100" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4496,10 +4500,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98bf550b-46f0-4ae1-a46c-523feb2fb125 + - 33a3f6dc-531f-4fee-b61e-c3dbcc4ab0cf status: 200 OK code: 200 - duration: 68.782936ms + duration: 25.529589ms - id: 91 request: proto: HTTP/1.1 @@ -4516,7 +4520,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -4524,20 +4528,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4545,10 +4549,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c901ca-fb66-4801-be56-654af2c9b96a + - 0acb714a-a61f-4282-885e-5892746bb1dd status: 200 OK code: 200 - duration: 95.619721ms + duration: 130.31298ms - id: 92 request: proto: HTTP/1.1 @@ -4565,7 +4569,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -4575,7 +4579,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - "143" @@ -4584,9 +4588,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4594,10 +4598,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f2861fb-5258-4572-8611-84007970ff4e + - e3bde9e1-3bf6-4696-b1a8-ddcc8c3c03e0 status: 404 Not Found code: 404 - duration: 30.932251ms + duration: 26.994145ms - id: 93 request: proto: HTTP/1.1 @@ -4614,7 +4618,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -4624,7 +4628,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -4633,9 +4637,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4643,10 +4647,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df01094a-5242-4c40-afe1-36e2ce49f061 + - 125d1d62-cfea-4262-a532-9175233c57ef status: 200 OK code: 200 - duration: 42.810541ms + duration: 84.559452ms - id: 94 request: proto: HTTP/1.1 @@ -4663,7 +4667,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -4682,9 +4686,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4692,10 +4696,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 373adbb5-2ddf-4d9d-a3fe-8606404baa32 + - 8de8ebbe-1841-46ec-a61c-7874d9ba516c status: 200 OK code: 200 - duration: 56.07063ms + duration: 98.535407ms - id: 95 request: proto: HTTP/1.1 @@ -4712,7 +4716,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -4731,11 +4735,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4743,12 +4747,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f15516c-21d9-4ea0-95ef-84d9d661fb34 + - bb210035-0c0b-481c-8474-45ed2369dce3 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.136895ms + duration: 97.999903ms - id: 96 request: proto: HTTP/1.1 @@ -4765,7 +4769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -4773,20 +4777,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1912 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "437" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4794,10 +4798,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d84e41c-8c93-4036-96da-64717b4f1627 + - b30c682f-ec70-4b34-ab85-625c2dbfe739 status: 200 OK code: 200 - duration: 28.312057ms + duration: 166.138034ms - id: 97 request: proto: HTTP/1.1 @@ -4814,7 +4818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -4822,20 +4826,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 20 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1100" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:12 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4843,10 +4849,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e2f0246-d95d-4080-ba8b-113021712567 + - da8a4635-2aef-4582-b42b-7287e9c93a76 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 36.956759ms + duration: 86.24915ms - id: 98 request: proto: HTTP/1.1 @@ -4863,7 +4871,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -4871,20 +4879,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 1912 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4892,48 +4900,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 890e5ddb-475a-4144-8d03-f10b02ab46a3 + - f9e08235-64d5-446a-9da0-86fa145cd0de status: 200 OK code: 200 - duration: 116.857977ms + duration: 147.656402ms - id: 99 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 473 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:13.384244+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4941,10 +4951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7cb6900-f3d6-49a8-bde6-027a03d07a84 - status: 404 Not Found - code: 404 - duration: 28.825799ms + - 39fe8c14-542e-448a-b766-5991d075e1ed + status: 201 Created + code: 201 + duration: 569.990132ms - id: 100 request: proto: HTTP/1.1 @@ -4961,7 +4971,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 method: GET response: proto: HTTP/2.0 @@ -4969,20 +4979,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:13.384244+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4990,10 +5000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c72ecd74-56c9-4a80-8075-e3a695a3c261 + - 2d8e5957-307d-4d10-8f02-0b0ea2359f44 status: 200 OK code: 200 - duration: 55.324429ms + duration: 88.949323ms - id: 101 request: proto: HTTP/1.1 @@ -5010,7 +5020,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 method: GET response: proto: HTTP/2.0 @@ -5018,20 +5028,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 475 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5039,10 +5049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ad27fc4-b216-4a82-b486-10351ce01666 + - ed6f8c4e-509c-4d1f-9e02-efc35b613a4b status: 200 OK code: 200 - duration: 54.363338ms + duration: 97.349868ms - id: 102 request: proto: HTTP/1.1 @@ -5059,7 +5069,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 method: GET response: proto: HTTP/2.0 @@ -5067,22 +5077,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 475 uncompressed: false - body: '{"private_nics":[]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5090,12 +5098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5a97a8c-1d6d-4445-8453-10f15372449b - X-Total-Count: - - "0" + - ba1487dc-57b9-47e6-bfdd-2f11ca108b83 status: 200 OK code: 200 - duration: 52.140111ms + duration: 128.140944ms - id: 103 request: proto: HTTP/1.1 @@ -5112,7 +5118,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -5120,20 +5126,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1906" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5141,10 +5147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e229b1fc-0e52-4a21-ba45-7715649de5bf + - 1895aab4-f28e-4682-aec5-28eaab81e49e status: 200 OK code: 200 - duration: 98.765416ms + duration: 145.904012ms - id: 104 request: proto: HTTP/1.1 @@ -5161,7 +5167,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -5169,22 +5175,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2370 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5192,12 +5196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0caf6bb7-bd69-47d5-acd5-dc4bcb8581f7 - X-Total-Count: - - "0" + - 8afb90b8-807f-4615-babc-05e8205fb0af status: 200 OK code: 200 - duration: 51.101697ms + duration: 168.844818ms - id: 105 request: proto: HTTP/1.1 @@ -5214,7 +5216,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -5222,20 +5224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1906 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "1906" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5243,50 +5245,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 174375dc-a63b-4da3-86d4-a11dd916744d - status: 200 OK - code: 200 - duration: 92.552058ms + - 6701a4f9-fdab-403c-9cf3-bb42b00b8568 + status: 404 Not Found + code: 404 + duration: 24.51101ms - id: 106 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 705 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:08.467877+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5294,10 +5294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1546a3f-8763-4eae-b882-ae8a5a5f3ee1 - status: 201 Created - code: 201 - duration: 502.177378ms + - b981aadf-6af3-42d5-9da1-10349ad0a260 + status: 200 OK + code: 200 + duration: 81.978687ms - id: 107 request: proto: HTTP/1.1 @@ -5314,7 +5314,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -5322,20 +5322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:08.467877+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:08 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5343,10 +5343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f4701a4-73c7-4694-af2e-13cbc4e8aa8c + - 254ce709-8e44-435f-ae2c-322999b35ea8 status: 200 OK code: 200 - duration: 54.013741ms + duration: 117.281994ms - id: 108 request: proto: HTTP/1.1 @@ -5363,7 +5363,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -5371,20 +5371,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 478 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "475" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:13 GMT + - Wed, 15 Oct 2025 15:05:19 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5392,10 +5394,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7e3be50-9c67-4410-89b3-1074017c3d51 + - be3783f6-a2b2-41d6-b47a-bb75a2ea9e60 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 63.479401ms + duration: 119.18418ms - id: 109 request: proto: HTTP/1.1 @@ -5412,7 +5416,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics/8375811e-b196-4269-b4fb-1142fb27911d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b4e1dc9b-98a9-4692-84fe-5a5aec652fe6&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5420,20 +5424,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1081 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:c42a:a76:23bd:6a7b/64","created_at":"2025-10-15T15:05:13.550939Z","id":"7959c244-2f0b-48af-8c7d-20680968c2d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","mac_address":"02:00:00:1B:8A:4E","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:05:13.550939Z","zone":null},{"address":"172.17.16.3/22","created_at":"2025-10-15T15:05:13.445972Z","id":"01429a71-fb41-4157-a54d-3d6f79b88b35","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","mac_address":"02:00:00:1B:8A:4E","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:05:13.445972Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1081" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5441,10 +5445,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52a2aff7-4928-477c-a94b-c2b0df81512e + - a5737aa1-50df-48af-a29b-fbdea5e9c6d9 status: 200 OK code: 200 - duration: 49.223558ms + duration: 29.866121ms - id: 110 request: proto: HTTP/1.1 @@ -5461,7 +5465,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 method: GET response: proto: HTTP/2.0 @@ -5469,20 +5473,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 437 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:05.056615Z","custom_routes_propagation_enabled":true,"id":"cee62ee6-6d0d-4958-a476-d861abd3dd72","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:04:05.056615Z"}' headers: Content-Length: - - "2364" + - "437" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5490,10 +5494,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 652032a1-8b4f-4108-a8a6-5b775a0976ad + - b3f21ac3-be10-4414-b481-8117c5e7e036 status: 200 OK code: 200 - duration: 96.050346ms + duration: 25.559446ms - id: 111 request: proto: HTTP/1.1 @@ -5510,7 +5514,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab method: GET response: proto: HTTP/2.0 @@ -5518,20 +5522,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 1089 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:05.172593Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e3fa1df0-5343-4b5b-b803-df025d422fab","name":"tf-pn-silly-ptolemy","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:05.172593Z","id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.16.0/22","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"},{"created_at":"2025-10-15T15:04:05.172593Z","id":"c6e54c49-4d1b-400d-b621-09923dce507e","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:924c::/64","updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}],"tags":[],"updated_at":"2025-10-15T15:04:05.172593Z","vpc_id":"cee62ee6-6d0d-4958-a476-d861abd3dd72"}' headers: Content-Length: - - "2364" + - "1089" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5539,10 +5543,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45a09ed8-92f6-4da7-bfe0-defe36f52aef + - 53a92c3d-066e-4108-a39d-b7f3984531a9 status: 200 OK code: 200 - duration: 116.270535ms + duration: 29.863396ms - id: 112 request: proto: HTTP/1.1 @@ -5559,7 +5563,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -5567,20 +5571,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2370 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5588,10 +5592,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b94d00-2dc8-4fb6-931f-3477309dff6d - status: 404 Not Found - code: 404 - duration: 29.801055ms + - fb8f80a4-71f8-4f36-bbd9-b1a97c4b1df4 + status: 200 OK + code: 200 + duration: 137.561029ms - id: 113 request: proto: HTTP/1.1 @@ -5608,7 +5612,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -5616,20 +5620,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "705" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5637,10 +5641,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3ef3858-aba8-4cdb-8ef2-8b0d336f2081 - status: 200 OK - code: 200 - duration: 46.704562ms + - b3eb1612-22d3-40d5-a357-cabf097fe30d + status: 404 Not Found + code: 404 + duration: 28.917122ms - id: 114 request: proto: HTTP/1.1 @@ -5657,7 +5661,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -5665,20 +5669,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 705 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:06.744796Z","id":"3d6ab358-51b0-4a0b-b44a-d4fb58d9cc62","product_resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:06.744796Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "705" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5686,10 +5690,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d4de59d-2b71-4f50-ac12-d18b1daa15b7 + - 4b80a33c-42f9-46c2-ab61-2da9fc05a274 status: 200 OK code: 200 - duration: 48.708142ms + duration: 74.067824ms - id: 115 request: proto: HTTP/1.1 @@ -5706,7 +5710,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/user_data method: GET response: proto: HTTP/2.0 @@ -5714,22 +5718,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 17 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"user_data":[]}' headers: Content-Length: - - "478" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5737,12 +5739,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f09cd759-2f58-484c-ae03-61790ffca2dc - X-Total-Count: - - "1" + - 5f113a18-b074-49e9-ac3b-96fd0ade01d3 status: 200 OK code: 200 - duration: 48.44752ms + duration: 105.556007ms - id: 116 request: proto: HTTP/1.1 @@ -5759,7 +5759,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=8375811e-b196-4269-b4fb-1142fb27911d&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -5767,20 +5767,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:e0ce:a0d6:90d3:2a41/64","created_at":"2025-10-08T23:06:08.678375Z","id":"ececedb0-f35b-4772-b629-d755ad141d49","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:06:08.678375Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-10-08T23:06:08.568313Z","id":"fb95320e-27bd-4077-b425-1fd4c45b16f6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:06:08.568313Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1076" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5788,10 +5790,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 231c12b0-c9f7-4681-b554-b87d3412fa3d + - 2d0ac75c-f6b7-4fdd-b71d-48d8de1fc57d + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 29.104004ms + duration: 95.608364ms - id: 117 request: proto: HTTP/1.1 @@ -5808,7 +5812,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a739feb7-3fb1-4c8f-843e-1489b71fbcbe + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=b4e1dc9b-98a9-4692-84fe-5a5aec652fe6&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5816,20 +5820,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 1081 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.060491Z","custom_routes_propagation_enabled":true,"id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe","is_default":false,"name":"TestAccServer_PrivateNetworkMissingPNIC","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.060491Z"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:924c:c42a:a76:23bd:6a7b/64","created_at":"2025-10-15T15:05:13.550939Z","id":"7959c244-2f0b-48af-8c7d-20680968c2d7","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","mac_address":"02:00:00:1B:8A:4E","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6e54c49-4d1b-400d-b621-09923dce507e"},"tags":[],"updated_at":"2025-10-15T15:05:13.550939Z","zone":null},{"address":"172.17.16.3/22","created_at":"2025-10-15T15:05:13.445972Z","id":"01429a71-fb41-4157-a54d-3d6f79b88b35","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","mac_address":"02:00:00:1B:8A:4E","name":"tf-srv-eloquent-lichterman","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"f20d0b29-1a31-4e2b-91d1-c469eece2b6b"},"tags":[],"updated_at":"2025-10-15T15:05:13.445972Z","zone":null}],"total_count":2}' headers: Content-Length: - - "437" + - "1081" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5837,10 +5841,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb5dcb6f-e073-48ea-a789-eb9eb727ac7b + - 5829c2da-0878-4a17-b52d-51dea30d7402 status: 200 OK code: 200 - duration: 30.907764ms + duration: 23.443478ms - id: 118 request: proto: HTTP/1.1 @@ -5857,7 +5861,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d6c3e600-cbf4-4ab6-9be2-587e316f202a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -5865,20 +5869,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.660862Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","name":"tf-pn-condescending-mcclintock","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.660862Z","id":"4b125d28-5a5d-4681-be18-336d9f45f0d6","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.16.0/22","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"},{"created_at":"2025-10-08T23:04:27.660862Z","id":"a6a5f330-c36a-4798-94b5-482b24787f4b","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:f575::/64","updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}],"tags":[],"updated_at":"2025-10-08T23:04:27.660862Z","vpc_id":"a739feb7-3fb1-4c8f-843e-1489b71fbcbe"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1100" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5886,10 +5892,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f91aff5b-26ac-4aa6-8db0-9902be00ef67 + - 96dcaf83-ede8-4ded-abe7-9895791e955b + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 31.656591ms + duration: 101.674699ms - id: 119 request: proto: HTTP/1.1 @@ -5906,7 +5914,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 method: GET response: proto: HTTP/2.0 @@ -5914,20 +5922,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 475 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:13.169244+00:00","id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","ipam_ip_ids":["01429a71-fb41-4157-a54d-3d6f79b88b35","7959c244-2f0b-48af-8c7d-20680968c2d7"],"mac_address":"02:00:00:1b:8a:4e","modification_date":"2025-10-15T15:05:14.293741+00:00","private_network_id":"e3fa1df0-5343-4b5b-b803-df025d422fab","server_id":"b8233a74-4468-4118-b43f-d51e99bd5056","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5935,10 +5943,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5521963f-e0fb-467d-bb6d-f54c7e0c8472 + - 94b494b7-b529-4353-93c6-bf465ff35a5d status: 200 OK code: 200 - duration: 102.83942ms + duration: 99.070727ms - id: 120 request: proto: HTTP/1.1 @@ -5955,28 +5963,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ccd975da-27ef-486d-84e1-2f7491ca014f","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5984,10 +5990,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1444715-8e1b-4f1a-aec6-88e6f3cdfeca - status: 404 Not Found - code: 404 - duration: 31.17537ms + - 107eb061-5895-4053-9258-495d400febe2 + status: 204 No Content + code: 204 + duration: 385.262715ms - id: 121 request: proto: HTTP/1.1 @@ -6004,7 +6010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ccd975da-27ef-486d-84e1-2f7491ca014f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics/b4e1dc9b-98a9-4692-84fe-5a5aec652fe6 method: GET response: proto: HTTP/2.0 @@ -6012,20 +6018,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 148 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:28.898992Z","id":"ccd975da-27ef-486d-84e1-2f7491ca014f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:28.898992Z","id":"f8fdadf6-204c-458c-a88a-b444df23a3fe","product_resource_id":"c02766f9-760f-4697-9d67-41886c8285db","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:28.898992Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b4e1dc9b-98a9-4692-84fe-5a5aec652fe6","type":"not_found"}' headers: Content-Length: - - "705" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6033,10 +6039,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2654648-a879-4f2a-9efe-a6f9d770317d - status: 200 OK - code: 200 - duration: 46.81129ms + - 9ae57121-955a-45b0-893d-189813dbe57e + status: 404 Not Found + code: 404 + duration: 104.903033ms - id: 122 request: proto: HTTP/1.1 @@ -6053,7 +6059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/private_nics method: GET response: proto: HTTP/2.0 @@ -6061,20 +6067,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:05:21 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6082,10 +6090,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eac44fab-0d93-4e85-a4a9-850df72fd9f9 + - 5015ff13-ea2b-4d30-b0b4-1af6d6c28a46 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 52.809729ms + duration: 109.377293ms - id: 123 request: proto: HTTP/1.1 @@ -6102,7 +6112,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -6110,22 +6120,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1912 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6133,12 +6141,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70a7104-8fce-4695-906e-644b4e2040df - X-Total-Count: - - "1" + - 60329f3d-796b-41cb-a10e-e8630fb596e2 status: 200 OK code: 200 - duration: 46.901226ms + duration: 155.469179ms - id: 124 request: proto: HTTP/1.1 @@ -6155,7 +6161,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=8375811e-b196-4269-b4fb-1142fb27911d&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -6163,20 +6169,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1912 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:f575:e0ce:a0d6:90d3:2a41/64","created_at":"2025-10-08T23:06:08.678375Z","id":"ececedb0-f35b-4772-b629-d755ad141d49","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a6a5f330-c36a-4798-94b5-482b24787f4b"},"tags":[],"updated_at":"2025-10-08T23:06:08.678375Z","zone":null},{"address":"172.16.16.3/22","created_at":"2025-10-08T23:06:08.568313Z","id":"fb95320e-27bd-4077-b425-1fd4c45b16f6","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"8375811e-b196-4269-b4fb-1142fb27911d","mac_address":"02:00:00:12:34:6D","name":"tf-srv-naughty-dubinsky","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4b125d28-5a5d-4681-be18-336d9f45f0d6"},"tags":[],"updated_at":"2025-10-08T23:06:08.568313Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:04:10.862941+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1076" + - "1912" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT + - Wed, 15 Oct 2025 15:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6184,48 +6190,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae79580c-dc37-41a1-8649-cef58a1cd119 + - 262959b2-359a-48a0-95c9-12bd2ae8fa2d status: 200 OK code: 200 - duration: 28.944739ms + duration: 457.911068ms - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2364 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:04:32.568228+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/b8233a74-4468-4118-b43f-d51e99bd5056/action","href_result":"/servers/b8233a74-4468-4118-b43f-d51e99bd5056","id":"8d3b387a-16c4-4df0-b3ea-773a19a2bbc4","progress":0,"started_at":"2025-10-15T15:05:22.376817+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2364" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT + - Wed, 15 Oct 2025 15:05:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8d3b387a-16c4-4df0-b3ea-773a19a2bbc4 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6233,52 +6243,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fdd87b2-113a-40f2-ac08-fa1edb09af2c - status: 200 OK - code: 200 - duration: 89.329748ms + - 3a29137e-18f6-43ab-a6f2-92ab0a667447 + status: 202 Accepted + code: 202 + duration: 263.83615ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1875 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/c02766f9-760f-4697-9d67-41886c8285db/action","href_result":"/servers/c02766f9-760f-4697-9d67-41886c8285db","id":"fdc1ac0c-d076-4a61-bfd8-14c0749ae9fc","progress":0,"started_at":"2025-10-08T23:06:15.500552+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:06.625698+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-eloquent-lichterman","id":"b8233a74-4468-4118-b43f-d51e99bd5056","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:4f","maintenances":[],"modification_date":"2025-10-15T15:05:22.167183+00:00","name":"tf-srv-eloquent-lichterman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"e529af08-409d-4206-886c-5382773fea68","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1875" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fdc1ac0c-d076-4a61-bfd8-14c0749ae9fc + - Wed, 15 Oct 2025 15:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6286,10 +6292,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6042577-33a4-43b9-846f-befdb9928708 - status: 202 Accepted - code: 202 - duration: 164.29943ms + - 4e99fe53-2517-460f-afbf-9465edc7ced0 + status: 200 OK + code: 200 + duration: 141.844173ms - id: 127 request: proto: HTTP/1.1 @@ -6306,7 +6312,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -6314,20 +6320,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","type":"not_found"}' headers: Content-Length: - - "2327" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:15 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6335,10 +6341,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f745e9-98f4-4f9b-b814-3c341de1b029 - status: 200 OK - code: 200 - duration: 95.393088ms + - ad823b65-21bc-4454-a859-dee5b15f3073 + status: 404 Not Found + code: 404 + duration: 44.259483ms - id: 128 request: proto: HTTP/1.1 @@ -6355,7 +6361,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -6363,20 +6369,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"e529af08-409d-4206-886c-5382773fea68","type":"not_found"}' headers: Content-Length: - - "2327" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6384,10 +6390,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94b63d7-c297-4730-b967-860b1e61df89 - status: 200 OK - code: 200 - duration: 105.399498ms + - e012de09-ac4f-4d3d-88d9-d8018156a358 + status: 404 Not Found + code: 404 + duration: 25.489476ms - id: 129 request: proto: HTTP/1.1 @@ -6404,7 +6410,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 method: GET response: proto: HTTP/2.0 @@ -6412,20 +6418,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2327 + content_length: 498 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:28.783078+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-naughty-dubinsky","id":"c02766f9-760f-4697-9d67-41886c8285db","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6d","maintenances":[],"modification_date":"2025-10-08T23:06:15.377987+00:00","name":"tf-srv-naughty-dubinsky","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:06:08.355193+00:00","id":"8375811e-b196-4269-b4fb-1142fb27911d","ipam_ip_ids":["fb95320e-27bd-4077-b425-1fd4c45b16f6","ececedb0-f35b-4772-b629-d755ad141d49"],"mac_address":"02:00:00:12:34:6d","modification_date":"2025-10-08T23:06:09.397940+00:00","private_network_id":"d6c3e600-cbf4-4ab6-9be2-587e316f202a","server_id":"c02766f9-760f-4697-9d67-41886c8285db","state":"available","tags":[],"zone":"fr-par-1"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"ccd975da-27ef-486d-84e1-2f7491ca014f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:04:06.744796Z","id":"e529af08-409d-4206-886c-5382773fea68","last_detached_at":"2025-10-15T15:05:23.965573Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:23.965573Z","zone":"fr-par-1"}' headers: Content-Length: - - "2327" + - "498" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6433,10 +6439,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1b2afd9-bf51-4234-9c75-cae5404b395b + - 5e30ead2-6cb4-4cc4-898c-f37cf6f25d27 status: 200 OK code: 200 - duration: 110.548653ms + duration: 85.212145ms - id: 130 request: proto: HTTP/1.1 @@ -6453,28 +6459,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db - method: GET + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/e529af08-409d-4206-886c-5382773fea68 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c02766f9-760f-4697-9d67-41886c8285db","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6482,10 +6486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 045ca02c-82de-4406-bda7-d45b0e996cf9 - status: 404 Not Found - code: 404 - duration: 49.979204ms + - 4055bc25-26ab-4f1d-9a6f-e8026a999321 + status: 204 No Content + code: 204 + duration: 178.362865ms - id: 131 request: proto: HTTP/1.1 @@ -6502,7 +6506,101 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c02766f9-760f-4697-9d67-41886c8285db/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e3fa1df0-5343-4b5b-b803-df025d422fab + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 69f1cc99-d527-47fc-8778-f18c38ebe783 + status: 204 No Content + code: 204 + duration: 1.160659387s + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/cee62ee6-6d0d-4958-a476-d861abd3dd72 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b69352dc-e7f3-4640-a128-6b8d22f1954e + status: 204 No Content + code: 204 + duration: 143.704298ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/b8233a74-4468-4118-b43f-d51e99bd5056 method: GET response: proto: HTTP/2.0 @@ -6512,7 +6610,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c02766f9-760f-4697-9d67-41886c8285db","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"b8233a74-4468-4118-b43f-d51e99bd5056","type":"not_found"}' headers: Content-Length: - "143" @@ -6521,9 +6619,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:30 GMT + - Wed, 15 Oct 2025 15:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6531,7 +6629,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e934ffb-6325-49c0-ba59-019ec0988fa1 + - e2a50e61-2ade-4217-80b1-69cec69d5ba2 status: 404 Not Found code: 404 - duration: 34.008636ms + duration: 48.806119ms diff --git a/internal/services/instance/testdata/server-private-network.cassette.yaml b/internal/services/instance/testdata/server-private-network.cassette.yaml index ebfda7d76..416d51077 100644 --- a/internal/services/instance/testdata/server-private-network.cassette.yaml +++ b/internal/services/instance/testdata/server-private-network.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServer_PrivateNetwork","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"enable_routing":false}' + body: '{"name":"TestAccServer_PrivateNetwork","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: Content-Type: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' headers: Content-Length: - "426" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce8c91ae-940d-4bed-a65a-f07422a6ec56 + - eca60270-f527-4dfa-9324-7a13de767012 status: 200 OK code: 200 - duration: 100.133696ms + duration: 82.070396ms - id: 1 request: proto: HTTP/1.1 @@ -68,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 426 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' headers: Content-Length: - "426" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:03:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82816f0c-029d-4481-81ba-bd9b3959f591 + - ea0bb1fc-99a3-45a1-a012-d68e9e5b210f status: 200 OK code: 200 - duration: 45.953843ms + duration: 27.055561ms - id: 2 request: proto: HTTP/1.1 @@ -112,7 +112,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private_network_instance","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"subnets":null,"vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","default_route_propagation_enabled":false}' + body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1095 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' + body: '{"created_at":"2025-10-15T15:03:05.825292Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:05.825292Z","id":"7f722332-bfb2-4319-8296-151f710addec","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.196.0/22","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:03:05.825292Z","id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b910::/64","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' headers: Content-Length: - - "1094" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50ac7f9d-190c-465a-99bf-8c3d60a3f444 + - ff86c913-0bff-4a81-ba56-689ad00256ee status: 200 OK code: 200 - duration: 1.40837243s + duration: 602.222489ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1095 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' + body: '{"created_at":"2025-10-15T15:03:05.825292Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:05.825292Z","id":"7f722332-bfb2-4319-8296-151f710addec","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.196.0/22","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:03:05.825292Z","id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b910::/64","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' headers: Content-Length: - - "1094" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d95ff4f7-2de5-4a48-8db9-a7a3f45d27b9 + - eac63ef1-d586-4e87-84c8-214924a735de status: 200 OK code: 200 - duration: 24.356763ms + duration: 25.311022ms - id: 4 request: proto: HTTP/1.1 @@ -225,22 +225,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 40221 + content_length: 40272 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"GPU-3070-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":8589934592,"gpu_name":"RTX-3070"},"hourly_price":0.98,"mig_profile":null,"monthly_price":715.4,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":2.73,"mig_profile":null,"monthly_price":1992.9,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":4.2,"mig_profile":null,"monthly_price":3066,"ncpus":24,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":5.46,"mig_profile":null,"monthly_price":3985.8,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":4194304000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-PCIe"},"hourly_price":8.4,"mig_profile":null,"monthly_price":6132,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6000000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-2-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":6.018,"mig_profile":null,"monthly_price":4393.14,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":257698037760,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-4-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":11.61,"mig_profile":null,"monthly_price":8475.3,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":515396075520,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"H100-SXM-8-80G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":85899345920,"gpu_name":"H100-SXM"},"hourly_price":23.028,"mig_profile":null,"monthly_price":16810.44,"ncpus":128,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":1030792151040,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-1-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":1.4,"mig_profile":null,"monthly_price":1022,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":1600000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-2-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":2.8,"mig_profile":null,"monthly_price":2044,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":3200000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-4-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":5.6,"mig_profile":null,"monthly_price":4088,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":6400000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"L40S-8-48G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":51539607552,"gpu_name":"L40S"},"hourly_price":11.2,"mig_profile":null,"monthly_price":8176,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":824633720832,"scratch_storage_max_size":12800000000000,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "40221" + - "40272" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,12 +248,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df3f9e68-f5de-4086-b0f7-a01d06e26c92 + - e2c8c524-bc92-4caa-9f0d-1d246a3db170 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 46.442889ms + duration: 69.702069ms - id: 5 request: proto: HTTP/1.1 @@ -278,22 +278,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19491 + content_length: 14060 uncompressed: false - body: '{"servers":{"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' + body: '{"servers":{"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}}}}' headers: Content-Length: - - "19491" + - "14060" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -301,12 +301,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dab3cef-5945-43b1-a3e7-3b6fa522e62f + - c478721a-66ff-441e-b657-54e1c9293a93 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.264128ms + duration: 65.546281ms - id: 6 request: proto: HTTP/1.1 @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,22 +352,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e4a3a07-9ec3-40bb-88f5-fcd93f3c66e0 + - f4121f70-65a7-47de-ad23-6ae48352c831 status: 200 OK code: 200 - duration: 115.111923ms + duration: 57.105253ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 231 + content_length: 237 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-brave-mayer","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"30a53856-64af-4159-be55-9c603243a48e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-silly-nightingale","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"30a53856-64af-4159-be55-9c603243a48e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -382,22 +382,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1732 + content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:07.250057+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1732" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + - https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdfb13be-7ad2-4d2b-b0ee-2cb298695333 + - a9fac1a6-35c9-488a-abc6-090ec2e58192 status: 201 Created code: 201 - duration: 843.874077ms + duration: 1.096044501s - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1732 + content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:07.250057+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1732" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14377e5a-75f6-4214-9c37-8f66280bcfce + - 1bab6992-6c4f-48b9-892c-b039834b47ac status: 200 OK code: 200 - duration: 89.836268ms + duration: 130.285952ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1732 + content_length: 1744 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.005332+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:07.250057+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1732" + - "1744" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7f82e67-0bef-4b87-9831-18c9b8aaa23a + - 9827908d-ec09-498e-aaeb-b4f9b038786a status: 200 OK code: 200 - duration: 90.259282ms + duration: 135.281564ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -533,7 +533,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' + body: '{"created_at":"2025-10-15T15:03:07.410824Z","id":"8947b8e2-8d15-433f-803c-8d52160780bf","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:07.410824Z","id":"d3167c2b-4e95-40f2-9912-7eef98adbe22","product_resource_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:07.410824Z","zone":"fr-par-2"}' headers: Content-Length: - "701" @@ -542,9 +542,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1aa37834-5c17-4ead-8b90-5d89b271b1bf + - cbe019d6-f919-4530-819d-a50cec51ca32 status: 200 OK code: 200 - duration: 47.583081ms + duration: 108.940111ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action method: POST response: proto: HTTP/2.0 @@ -584,7 +584,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action","href_result":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3","id":"565cec4c-f244-440c-be6b-fc22b4121386","progress":0,"started_at":"2025-10-08T23:04:30.263332+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action","href_result":"/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e","id":"46715aca-4586-4290-bc5b-fce40c8e4fa7","progress":0,"started_at":"2025-10-15T15:03:08.337338+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' headers: Content-Length: - "357" @@ -593,11 +593,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/565cec4c-f244-440c-be6b-fc22b4121386 + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/46715aca-4586-4290-bc5b-fce40c8e4fa7 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53af14cc-1fc1-4c00-867c-2e4192e70c48 + - 5ec43b40-cf64-42dd-87e5-10d8ff1b0e54 status: 202 Accepted code: 202 - duration: 386.418938ms + duration: 287.750048ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -633,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1754 + content_length: 1766 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:29.932728+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":null,"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:08.116203+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1754" + - "1766" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1451191-5d49-4bba-b793-a3b3ffe019a8 + - 27f0df49-47dc-4021-9eef-8cac1f41b448 status: 200 OK code: 200 - duration: 81.924491ms + duration: 178.149829ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -682,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1887 + content_length: 1900 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1887" + - "1900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42769216-7481-4ed9-83e1-b813638fafb1 + - e40d3dee-d96d-4a7d-afc3-63227377ea4b status: 200 OK code: 200 - duration: 94.83212ms + duration: 163.620299ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 method: GET response: proto: HTTP/2.0 @@ -731,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 1095 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' + body: '{"created_at":"2025-10-15T15:03:05.825292Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:05.825292Z","id":"7f722332-bfb2-4319-8296-151f710addec","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.196.0/22","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:03:05.825292Z","id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b910::/64","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' headers: Content-Length: - - "1094" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28a97701-f8aa-4838-bafe-9b36a71d0d48 + - f432720f-6fbd-4688-9cec-4e07abea375a status: 200 OK code: 200 - duration: 27.565706ms + duration: 31.353267ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1887 + content_length: 1900 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1887" + - "1900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efd42c34-bc74-45b8-bec6-0958ab89fc1a + - 85894b6d-87ec-443f-9732-7b7e003000df status: 200 OK code: 200 - duration: 103.539782ms + duration: 144.812222ms - id: 16 request: proto: HTTP/1.1 @@ -816,14 +816,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d"}' + body: '{"private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: POST response: proto: HTTP/2.0 @@ -833,7 +833,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -842,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,10 +852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95c7580f-7f98-4767-a460-5017a9bfb20b + - 71d81be4-32a4-4428-9bef-2206099f68d8 status: 201 Created code: 201 - duration: 555.180996ms + duration: 648.70722ms - id: 17 request: proto: HTTP/1.1 @@ -872,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -882,7 +882,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -891,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,10 +901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab21a585-afc5-464d-a43b-b0b705a2bc29 + - b2a8374d-03f1-4d7d-83c8-44dc1e84a448 status: 200 OK code: 200 - duration: 50.215025ms + duration: 101.607045ms - id: 18 request: proto: HTTP/1.1 @@ -921,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -931,7 +931,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -940,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73b7d25-6ba6-48a6-9b3e-20bced1a0da9 + - a65cd9cf-34e1-4b5b-b4b4-6a2ca73743a0 status: 200 OK code: 200 - duration: 64.306759ms + duration: 91.160473ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -980,7 +980,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -989,9 +989,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63d528b6-0aa3-4b90-9630-5a0685f73d07 + - 70cc2a73-a04e-482b-9fe2-d5b4299b089d status: 200 OK code: 200 - duration: 55.042456ms + duration: 111.357328ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1029,7 +1029,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -1038,9 +1038,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,10 +1048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5b98559-7059-413e-b809-1fd481ff54ef + - 1cde22d7-1c85-41b1-a7a6-3dd589db5b67 status: 200 OK code: 200 - duration: 55.232426ms + duration: 92.708562ms - id: 21 request: proto: HTTP/1.1 @@ -1068,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1078,7 +1078,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:04:35.762875+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"syncing","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - "473" @@ -1087,9 +1087,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,10 +1097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c1f20a-b8d6-427f-8031-f0fc92c5317f + - 56a6f3ea-9551-4fa8-baf3-e6ab1a24c9d0 status: 200 OK code: 200 - duration: 63.590558ms + duration: 109.028053ms - id: 22 request: proto: HTTP/1.1 @@ -1117,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1125,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,10 +1146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c96a94b2-920d-4310-9d71-a386b492a7ef + - d06af613-a768-40aa-950d-53fe6701f397 status: 200 OK code: 200 - duration: 51.264844ms + duration: 120.41986ms - id: 23 request: proto: HTTP/1.1 @@ -1166,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics/632278d2-8c57-43ed-82ac-fc4507be1a15 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1174,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,10 +1195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ead00df9-fd26-4e99-8057-9e5fcbdb64df + - 45770ec3-34b9-4534-a270-b13385d7e090 status: 200 OK code: 200 - duration: 53.120221ms + duration: 110.235035ms - id: 24 request: proto: HTTP/1.1 @@ -1215,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1223,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "2345" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:03:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,10 +1244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e13a039a-8a4a-4007-806b-d60a18c2189c + - 0fbe642b-00da-4e7a-a6cb-c93958afea73 status: 200 OK code: 200 - duration: 101.92087ms + duration: 99.024628ms - id: 25 request: proto: HTTP/1.1 @@ -1264,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1272,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 473 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "143" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,10 +1293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73b9af08-d1e8-4abb-9b31-880ebdea7345 - status: 404 Not Found - code: 404 - duration: 27.780471ms + - 571b980c-2b3f-4913-b944-244ed19e068b + status: 200 OK + code: 200 + duration: 112.813939ms - id: 26 request: proto: HTTP/1.1 @@ -1313,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1321,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:03:14.178339+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"syncing","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "701" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,10 +1342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42d941ff-0ce4-46ca-8389-212b31bcd41c + - 2fa57a5e-71c1-4ba1-93b0-7522c3eeda2a status: 200 OK code: 200 - duration: 46.081021ms + duration: 116.445702ms - id: 27 request: proto: HTTP/1.1 @@ -1362,7 +1362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1370,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 475 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "17" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,10 +1391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28ccefc5-22e3-4db3-9f2e-f150a65a35c5 + - f3c86cba-1e46-46b7-9c49-6b01c0f82f71 status: 200 OK code: 200 - duration: 53.135389ms + duration: 116.786626ms - id: 28 request: proto: HTTP/1.1 @@ -1411,7 +1411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 method: GET response: proto: HTTP/2.0 @@ -1419,22 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 475 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "478" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,12 +1440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6eb75399-32b4-465d-892c-0b808b11aa5a - X-Total-Count: - - "1" + - d8e8c19d-050a-4bdb-9175-ea2086013668 status: 200 OK code: 200 - duration: 59.395275ms + duration: 97.66397ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -1472,20 +1468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 2358 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1066" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47ba867f-e911-400c-859d-5fa11b34f43b + - 72a59524-93f8-420f-86d3-0cdb94e7f8d8 status: 200 OK code: 200 - duration: 30.979737ms + duration: 165.894738ms - id: 30 request: proto: HTTP/1.1 @@ -1513,7 +1509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -1521,22 +1517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8947b8e2-8d15-433f-803c-8d52160780bf","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1544,12 +1538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb20b713-fcd7-41c9-b980-93fd403a8b1c - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 67.852741ms + - 4a29c401-da4b-443f-bda6-7d4478a21d5e + status: 404 Not Found + code: 404 + duration: 61.73917ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1558,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -1574,20 +1566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' + body: '{"created_at":"2025-10-15T15:03:07.410824Z","id":"8947b8e2-8d15-433f-803c-8d52160780bf","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:07.410824Z","id":"d3167c2b-4e95-40f2-9912-7eef98adbe22","product_resource_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:07.410824Z","zone":"fr-par-2"}' headers: Content-Length: - - "426" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc13327f-0be9-4a72-a943-e224792e4d74 + - f989318e-e22e-4ec5-9d93-6880363ad5f4 status: 200 OK code: 200 - duration: 44.862945ms + duration: 94.293143ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1607,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/user_data method: GET response: proto: HTTP/2.0 @@ -1623,20 +1615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' + body: '{"user_data":[]}' headers: Content-Length: - - "1094" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4b678b1-c2d2-4ab7-90fa-37564412328d + - ac485294-ebc2-42a0-bcce-62708c49d197 status: 200 OK code: 200 - duration: 23.996181ms + duration: 98.604504ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: GET response: proto: HTTP/2.0 @@ -1672,20 +1664,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "2345" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1687,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 633f2f05-049f-4ec8-8a4d-bd7baa5be194 + - 9ba6deed-d130-4864-9287-d606a41cfa6c + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 96.506751ms + duration: 91.482223ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=df6c80b8-f070-4e90-9b73-4dae58506d35&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1721,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1079 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:b910:6980:9835:f2ee:aced/64","created_at":"2025-10-15T15:03:14.403031Z","id":"264bfa40-95b7-4926-9abc-26eea4f3cdf8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130"},"tags":[],"updated_at":"2025-10-15T15:03:14.403031Z","zone":null},{"address":"172.16.196.2/22","created_at":"2025-10-15T15:03:14.288764Z","id":"80599302-4a4b-4245-b348-1b67696fd7c5","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7f722332-bfb2-4319-8296-151f710addec"},"tags":[],"updated_at":"2025-10-15T15:03:14.288764Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c51fe5a0-a39b-460a-b66f-1522adce0b0f - status: 404 Not Found - code: 404 - duration: 24.132273ms + - c888e5ea-867e-4ed3-af0b-a130e691f476 + status: 200 OK + code: 200 + duration: 30.143734ms - id: 35 request: proto: HTTP/1.1 @@ -1762,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: GET response: proto: HTTP/2.0 @@ -1770,20 +1766,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "701" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1789,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35f1094f-3621-4450-a5c2-5a560cb2b57b + - 739d2deb-4b59-4e72-8be6-06a1a8f61c03 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 41.622963ms + duration: 113.528881ms - id: 36 request: proto: HTTP/1.1 @@ -1811,7 +1811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 method: GET response: proto: HTTP/2.0 @@ -1819,20 +1819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 426 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' headers: Content-Length: - - "17" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502a4c6d-7380-4314-a573-ef0d78576361 + - f6883e5e-7706-4d7f-b1b2-eb57db415f0b status: 200 OK code: 200 - duration: 54.358654ms + duration: 28.073865ms - id: 37 request: proto: HTTP/1.1 @@ -1860,7 +1860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 method: GET response: proto: HTTP/2.0 @@ -1868,22 +1868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1095 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"created_at":"2025-10-15T15:03:05.825292Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:05.825292Z","id":"7f722332-bfb2-4319-8296-151f710addec","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.196.0/22","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:03:05.825292Z","id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b910::/64","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' headers: Content-Length: - - "478" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,12 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c48f649-df67-4e79-91ec-9e57b87daec5 - X-Total-Count: - - "1" + - 6d620583-abba-45b1-a92e-94c1f83b22bc status: 200 OK code: 200 - duration: 48.545527ms + duration: 24.873916ms - id: 38 request: proto: HTTP/1.1 @@ -1913,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -1921,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 2358 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1066" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c9b8af0-c29a-4679-96ad-ee6afdb630a1 + - adb3b28b-d608-4f8d-bc93-b5a8eb156718 status: 200 OK code: 200 - duration: 34.902473ms + duration: 141.028218ms - id: 39 request: proto: HTTP/1.1 @@ -1962,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fa3db5f7-b937-4bce-8ae8-c08360bebe1f + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -1970,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.100166Z","custom_routes_propagation_enabled":true,"id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-08T23:04:27.100166Z"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8947b8e2-8d15-433f-803c-8d52160780bf","type":"not_found"}' headers: Content-Length: - - "426" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77899c18-938f-46a1-91c1-9715106224ee - status: 200 OK - code: 200 - duration: 25.74986ms + - 700d720d-feca-4c98-a5f2-05e22f86f842 + status: 404 Not Found + code: 404 + duration: 26.738963ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/72ee806d-6321-4f72-b1ee-ec97987e973d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -2019,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1094 + content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.954558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"72ee806d-6321-4f72-b1ee-ec97987e973d","name":"private_network_instance","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","subnets":[{"created_at":"2025-10-08T23:04:27.954558Z","id":"5a704853-d9d4-44a4-a420-b61c9f1acabe","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"172.16.20.0/22","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"},{"created_at":"2025-10-08T23:04:27.954558Z","id":"a22fe422-6354-489d-9ab9-bb81e9b90e98","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","subnet":"fdf2:7dd8:4cbd:6d75::/64","updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}],"tags":[],"updated_at":"2025-10-08T23:04:27.954558Z","vpc_id":"fa3db5f7-b937-4bce-8ae8-c08360bebe1f"}' + body: '{"created_at":"2025-10-15T15:03:07.410824Z","id":"8947b8e2-8d15-433f-803c-8d52160780bf","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:07.410824Z","id":"d3167c2b-4e95-40f2-9912-7eef98adbe22","product_resource_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:07.410824Z","zone":"fr-par-2"}' headers: Content-Length: - - "1094" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f63c0d5e-c971-43f8-bb4f-7e3275bcdfe0 + - 49601964-26fa-40ca-a304-07cfefbe1419 status: 200 OK code: 200 - duration: 35.629962ms + duration: 116.290037ms - id: 41 request: proto: HTTP/1.1 @@ -2060,7 +2056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/user_data method: GET response: proto: HTTP/2.0 @@ -2068,20 +2064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2345" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84d415c7-8d1a-4672-a756-8bdd4666cf83 + - bb0f1df5-7322-4ded-925e-1401816727bf status: 200 OK code: 200 - duration: 98.049989ms + duration: 118.504097ms - id: 42 request: proto: HTTP/1.1 @@ -2109,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: GET response: proto: HTTP/2.0 @@ -2117,20 +2113,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"908606c0-3107-472e-abef-f837d493f5f7","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,10 +2136,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16ec974f-05f7-4472-aa62-cdc4b84698e0 - status: 404 Not Found - code: 404 - duration: 31.236623ms + - 2351c158-59a6-4f81-9994-5d1c779973e0 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.060728ms - id: 43 request: proto: HTTP/1.1 @@ -2158,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/908606c0-3107-472e-abef-f837d493f5f7 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=df6c80b8-f070-4e90-9b73-4dae58506d35&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2166,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 1079 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.114656Z","id":"908606c0-3107-472e-abef-f837d493f5f7","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.114656Z","id":"99d928f5-c3c4-4994-8025-d708dbccabeb","product_resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.114656Z","zone":"fr-par-2"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:b910:6980:9835:f2ee:aced/64","created_at":"2025-10-15T15:03:14.403031Z","id":"264bfa40-95b7-4926-9abc-26eea4f3cdf8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130"},"tags":[],"updated_at":"2025-10-15T15:03:14.403031Z","zone":null},{"address":"172.16.196.2/22","created_at":"2025-10-15T15:03:14.288764Z","id":"80599302-4a4b-4245-b348-1b67696fd7c5","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7f722332-bfb2-4319-8296-151f710addec"},"tags":[],"updated_at":"2025-10-15T15:03:14.288764Z","zone":null}],"total_count":2}' headers: Content-Length: - - "701" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 038fd94a-6b2b-4d5c-8ff4-4fd54befa0e3 + - 4cdfecf8-8177-4cbf-bf18-228e906fa29e status: 200 OK code: 200 - duration: 39.903728ms + duration: 32.617151ms - id: 44 request: proto: HTTP/1.1 @@ -2207,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/user_data + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 method: GET response: proto: HTTP/2.0 @@ -2215,20 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1095 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:05.825292Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:03:05.825292Z","id":"7f722332-bfb2-4319-8296-151f710addec","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.196.0/22","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:03:05.825292Z","id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:b910::/64","updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:03:05.825292Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' headers: Content-Length: - - "17" + - "1095" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2236,10 +2236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97fb8ab9-bca5-449d-b65c-7c063fadee1b + - dde267d9-c3bd-4308-b6af-14606608d12b status: 200 OK code: 200 - duration: 49.242928ms + duration: 21.843085ms - id: 45 request: proto: HTTP/1.1 @@ -2256,7 +2256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 method: GET response: proto: HTTP/2.0 @@ -2264,22 +2264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 426 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}]}' + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' headers: Content-Length: - - "478" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,12 +2285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9dddd42-13a9-4368-bbf1-d86d36d36f39 - X-Total-Count: - - "1" + - 01f63a9d-f5fc-4062-8105-e4ed41b8b0f9 status: 200 OK code: 200 - duration: 69.606089ms + duration: 26.053518ms - id: 46 request: proto: HTTP/1.1 @@ -2309,7 +2305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=44693172-d6a3-49b0-b56f-011f492e4dfa&resource_id=632278d2-8c57-43ed-82ac-fc4507be1a15&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e method: GET response: proto: HTTP/2.0 @@ -2317,20 +2313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 2358 uncompressed: false - body: '{"ips":[{"address":"fdf2:7dd8:4cbd:6d75:62b1:faea:fa41:ff38/64","created_at":"2025-10-08T23:04:36.012837Z","id":"7b78cbcd-f39f-4b11-af52-19f99088d106","is_ipv6":true,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a22fe422-6354-489d-9ab9-bb81e9b90e98"},"tags":[],"updated_at":"2025-10-08T23:04:36.012837Z","zone":null},{"address":"172.16.20.2/22","created_at":"2025-10-08T23:04:35.875223Z","id":"bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","is_ipv6":false,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","region":"fr-par","resource":{"id":"632278d2-8c57-43ed-82ac-fc4507be1a15","mac_address":"02:00:00:25:01:7C","name":"tf-srv-brave-mayer","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5a704853-d9d4-44a4-a420-b61c9f1acabe"},"tags":[],"updated_at":"2025-10-08T23:04:35.875223Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' headers: Content-Length: - - "1066" + - "2358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2338,10 +2334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf0676c-5fdf-4435-bde3-7abf6f371b2d + - 36451433-d47a-4d58-a33d-6731cabcac8b status: 200 OK code: 200 - duration: 39.405675ms + duration: 143.458925ms - id: 47 request: proto: HTTP/1.1 @@ -2358,7 +2354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf method: GET response: proto: HTTP/2.0 @@ -2366,20 +2362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:04:32.162112+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8947b8e2-8d15-433f-803c-8d52160780bf","type":"not_found"}' headers: Content-Length: - - "2345" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2387,52 +2383,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74a42dc8-7ad3-49c4-a8ba-3ced70d12eab - status: 200 OK - code: 200 - duration: 114.216976ms + - 3e6d882c-7d8b-49fd-8b26-30e930a7c92c + status: 404 Not Found + code: 404 + duration: 28.62622ms - id: 48 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 701 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action","href_result":"/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3","id":"cbdb7cde-4904-4028-8dec-d1978ea91179","progress":0,"started_at":"2025-10-08T23:05:03.666210+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' + body: '{"created_at":"2025-10-15T15:03:07.410824Z","id":"8947b8e2-8d15-433f-803c-8d52160780bf","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:07.410824Z","id":"d3167c2b-4e95-40f2-9912-7eef98adbe22","product_resource_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:07.410824Z","zone":"fr-par-2"}' headers: Content-Length: - - "353" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/cbdb7cde-4904-4028-8dec-d1978ea91179 + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2440,10 +2432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 513e1935-e74a-42c5-862f-495b04c67096 - status: 202 Accepted - code: 202 - duration: 168.686075ms + - 5384f201-9160-4490-87f5-6f8360b5d6c3 + status: 200 OK + code: 200 + duration: 119.745975ms - id: 49 request: proto: HTTP/1.1 @@ -2460,7 +2452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/user_data method: GET response: proto: HTTP/2.0 @@ -2468,20 +2460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2308 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.005332+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-brave-mayer","id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"502","node_id":"4","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8b:87:bd","maintenances":[],"modification_date":"2025-10-08T23:05:03.535404+00:00","name":"tf-srv-brave-mayer","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-08T23:04:35.623520+00:00","id":"632278d2-8c57-43ed-82ac-fc4507be1a15","ipam_ip_ids":["bfbf28b3-fe2e-4af2-886b-dd6b1b5a7713","7b78cbcd-f39f-4b11-af52-19f99088d106"],"mac_address":"02:00:00:25:01:7c","modification_date":"2025-10-08T23:05:01.305729+00:00","private_network_id":"72ee806d-6321-4f72-b1ee-ec97987e973d","server_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","state":"available","tags":[],"zone":"fr-par-2"}],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"bf8479cc-dc99-4dec-a693-bd5e22fdcfdc","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"908606c0-3107-472e-abef-f837d493f5f7","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2308" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2489,10 +2481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bf3b9f1-f56f-4060-a665-fef0c5d79026 + - 27bae2bf-acf0-4729-baa0-b93f01dd2311 status: 200 OK code: 200 - duration: 100.600182ms + duration: 105.917403ms - id: 50 request: proto: HTTP/1.1 @@ -2509,7 +2501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: GET response: proto: HTTP/2.0 @@ -2517,20 +2509,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2538,10 +2532,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca9990d0-7410-4539-8da8-bf26c6c579ef - status: 404 Not Found - code: 404 - duration: 40.933635ms + - 4fe6f6d2-4e29-4f23-b187-c2d1126192bc + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 84.190116ms - id: 51 request: proto: HTTP/1.1 @@ -2558,7 +2554,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=df6c80b8-f070-4e90-9b73-4dae58506d35&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2566,20 +2562,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1079 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' + body: '{"ips":[{"address":"fd5f:519c:6d46:b910:6980:9835:f2ee:aced/64","created_at":"2025-10-15T15:03:14.403031Z","id":"264bfa40-95b7-4926-9abc-26eea4f3cdf8","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"91b008cb-a1b4-4f46-8fef-e1fdd6851130"},"tags":[],"updated_at":"2025-10-15T15:03:14.403031Z","zone":null},{"address":"172.16.196.2/22","created_at":"2025-10-15T15:03:14.288764Z","id":"80599302-4a4b-4245-b348-1b67696fd7c5","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"df6c80b8-f070-4e90-9b73-4dae58506d35","mac_address":"02:00:00:24:D7:C3","name":"tf-srv-silly-nightingale","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7f722332-bfb2-4319-8296-151f710addec"},"tags":[],"updated_at":"2025-10-15T15:03:14.288764Z","zone":null}],"total_count":2}' headers: Content-Length: - - "143" + - "1079" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2587,10 +2583,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98c86b9c-992a-43ee-ad05-a48ac24cdc86 - status: 404 Not Found - code: 404 - duration: 28.76835ms + - 6db304bc-6448-4178-8155-c9226b510784 + status: 200 OK + code: 200 + duration: 29.109837ms - id: 52 request: proto: HTTP/1.1 @@ -2607,7 +2603,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics method: GET response: proto: HTTP/2.0 @@ -2615,20 +2611,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 478 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' + body: '{"private_nics":[{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}]}' headers: Content-Length: - - "143" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:08 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2636,50 +2634,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a7c3cd8-3792-45e5-a521-d45feac604ff - status: 404 Not Found - code: 404 - duration: 49.698601ms + - e4fa4dd8-7da2-487a-a62f-291673f73277 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 104.001252ms - id: 53 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-10-15T15:03:13.925802+00:00","id":"df6c80b8-f070-4e90-9b73-4dae58506d35","ipam_ip_ids":["80599302-4a4b-4245-b348-1b67696fd7c5","264bfa40-95b7-4926-9abc-26eea4f3cdf8"],"mac_address":"02:00:00:24:d7:c3","modification_date":"2025-10-15T15:04:00.772547+00:00","private_network_id":"cbf53a3f-26f6-4ccd-a1f5-22f2718b8135","server_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","state":"available","tags":[],"zone":"fr-par-2"}}' headers: Content-Length: - - "143" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2687,10 +2685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4a3c783-abb4-43eb-8b58-5999fefb2df7 - status: 404 Not Found - code: 404 - duration: 35.797441ms + - e82cdbe1-2ddd-4dd1-986e-f7336de4b667 + status: 200 OK + code: 200 + duration: 99.719767ms - id: 54 request: proto: HTTP/1.1 @@ -2707,7 +2705,8570 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/a366990e-f1f7-4d7f-8395-b8ea224b7fe3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a09a56c-9298-4cc3-bbec-bb8ce6f3affd + status: 204 No Content + code: 204 + duration: 414.567625ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics/df6c80b8-f070-4e90-9b73-4dae58506d35 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"df6c80b8-f070-4e90-9b73-4dae58506d35","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:08 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f256f8f5-5cc9-484a-b016-21fc0d13e611 + status: 404 Not Found + code: 404 + duration: 102.27676ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:09 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 805e987b-8c5e-4c82-9e88-dfcd4765bf34 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 96.363706ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1900 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + headers: + Content-Length: + - "1900" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b09f5f9-9708-4e07-a33c-2c34216e5734 + status: 200 OK + code: 200 + duration: 160.975042ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1900 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:03:10.374967+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + headers: + Content-Length: + - "1900" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7d9ce2f-9fe9-4397-9475-59276a264bd9 + status: 200 OK + code: 200 + duration: 123.619959ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e/action","href_result":"/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e","id":"d32878a1-09f0-4ae4-b4a6-56ba4d71fc6b","progress":0,"started_at":"2025-10-15T15:04:09.554834+00:00","status":"pending","terminated_at":null,"zone":"fr-par-2"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:09 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-2/tasks/d32878a1-09f0-4ae4-b4a6-56ba4d71fc6b + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8746806-28f5-4e16-99f8-f57d4b20d358 + status: 202 Accepted + code: 202 + duration: 275.193749ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1863 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:07.250057+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-nightingale","id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.513001+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"30a53856-64af-4159-be55-9c603243a48e","modification_date":"2025-09-12T09:19:27.513001+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-2"},"ipv6":null,"location":{"cluster_id":"21","hypervisor_id":"203","node_id":"37","platform_id":"30","zone_id":"fr-par-2"},"mac_address":"de:00:00:8c:c3:c3","maintenances":[],"modification_date":"2025-10-15T15:04:09.343310+00:00","name":"tf-srv-silly-nightingale","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"eaabb9f4-fbdf-4310-9cb6-4d42934b673a","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8947b8e2-8d15-433f-803c-8d52160780bf","state":"available","volume_type":"sbs_volume","zone":"fr-par-2"}},"zone":"fr-par-2"}}' + headers: + Content-Length: + - "1863" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:09 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 50ec1572-ef60-4ae0-b032-2c3cea2e7d08 + status: 200 OK + code: 200 + duration: 139.163987ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/servers/f64b4b40-d26e-44c4-bba6-a851d021dc6e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f64b4b40-d26e-44c4-bba6-a851d021dc6e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e3021a36-e0be-4a96-92ca-955341ff360d + status: 404 Not Found + code: 404 + duration: 48.912329ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8947b8e2-8d15-433f-803c-8d52160780bf","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a793e07b-6271-4ab7-9e5b-c420db56aca0 + status: 404 Not Found + code: 404 + duration: 28.642312ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:07.410824Z","id":"8947b8e2-8d15-433f-803c-8d52160780bf","last_detached_at":"2025-10-15T15:04:10.769091Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"0de1a1bd-e99d-4301-a523-7c426dc5fa18","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:10.769091Z","zone":"fr-par-2"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 46109533-3b5f-4688-8fd5-f243b19524dd + status: 200 OK + code: 200 + duration: 80.814953ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-2/volumes/8947b8e2-8d15-433f-803c-8d52160780bf + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4e381984-69f8-4077-8781-94a8301ae144 + status: 204 No Content + code: 204 + duration: 148.987859ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 202 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"private_network_instance","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33a098b8-530d-44fa-b0c5-6c671c5aa64a + status: 200 OK + code: 200 + duration: 660.572415ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 21585c04-0424-4f02-9e53-16c51e3105b2 + status: 200 OK + code: 200 + duration: 25.877921ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cbf53a3f-26f6-4ccd-a1f5-22f2718b8135 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2194350-aa0d-4682-b2de-cc4beb8cc393 + status: 204 No Content + code: 204 + duration: 1.06901857s + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 39263 + uncompressed: false + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + headers: + Content-Length: + - "39263" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:16 GMT + Link: + - ; rel="next",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba629a72-dd9a-441f-aa6a-68f414b01bed + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 39.349044ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 14295 + uncompressed: false + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + headers: + Content-Length: + - "14295" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:16 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f2691df-5759-48f7-9a25-c4ff01a65101 + X-Total-Count: + - "68" + status: 200 OK + code: 200 + duration: 48.06408ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1260 + uncompressed: false + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"231ea125-6f18-45dd-8226-d7f190b5af80","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","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-48C-192G","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-48C-384G","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-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + headers: + Content-Length: + - "1260" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0cf5549b-d586-4ed7-918d-9519a3776cfe + status: 200 OK + code: 200 + duration: 110.553492ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 238 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-srv-stupefied-shockley","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1746 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:16.949519+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae350ea1-c326-4176-8316-dd3e469c46ee + status: 201 Created + code: 201 + duration: 3.255601367s + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1746 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:16.949519+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 124ff79e-8a66-4691-ad4c-7eeb3da9f4f8 + status: 200 OK + code: 200 + duration: 148.807717ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1746 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:16.949519+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1746" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d557346e-d549-47c1-9a38-31c508ed6e20 + status: 200 OK + code: 200 + duration: 133.976343ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:19 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d9b484f-bb73-4fa9-a1ba-7543012295cb + status: 200 OK + code: 200 + duration: 72.730551ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 20 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"poweron"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 357 + uncompressed: false + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action","href_result":"/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f","id":"65b4f3e6-7f88-4fbf-b0f5-10b0c845efc8","progress":0,"started_at":"2025-10-15T15:04:20.400154+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "357" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:20 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/65b4f3e6-7f88-4fbf-b0f5-10b0c845efc8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7bab2af2-a598-482a-9baa-a7ca5934f887 + status: 202 Accepted + code: 202 + duration: 496.305133ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1768 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:19.969844+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1768" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:20 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 327947ce-21ea-4f2d-aefa-d134b31cbd1f + status: 200 OK + code: 200 + duration: 153.063375ms + - id: 77 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c45c0fdf-17c1-4cd0-9c54-eb2de930f872 + status: 200 OK + code: 200 + duration: 156.617125ms + - id: 78 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 973715a5-892a-4f33-9695-339af916c07c + status: 200 OK + code: 200 + duration: 27.571387ms + - id: 79 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d9c9531-151f-420c-9e20-3137d90a8cb4 + status: 200 OK + code: 200 + duration: 156.777034ms + - id: 80 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 577738ae-daf1-4882-8cab-0fbb88a7cb7e + status: 201 Created + code: 201 + duration: 629.342689ms + - id: 81 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 127d1e1e-ad8d-4363-899f-d178258fe8c1 + status: 200 OK + code: 200 + duration: 95.046531ms + - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a9af08da-242b-462d-8b12-df2801ca8325 + status: 200 OK + code: 200 + duration: 111.942009ms + - id: 83 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 305ab916-c663-41ca-abda-b1a95fb69f11 + status: 200 OK + code: 200 + duration: 88.356617ms + - id: 84 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a3752dc-271f-4dfc-87f5-69c7ce0b7524 + status: 200 OK + code: 200 + duration: 118.409092ms + - id: 85 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:47 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fd59208-b86d-4fc4-8a85-4f211035b01e + status: 200 OK + code: 200 + duration: 90.822637ms + - id: 86 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a51145c8-16fa-442e-b52e-16eedc911b4c + status: 200 OK + code: 200 + duration: 109.523833ms + - id: 87 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3e6ff2c4-71ae-456b-91b0-c917ceeb8a81 + status: 200 OK + code: 200 + duration: 100.168687ms + - id: 88 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1efb657c-61d5-4dc9-ad9b-43c1729e4ada + status: 200 OK + code: 200 + duration: 102.6742ms + - id: 89 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:04:26.186308+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:07 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b4fcbb55-bf7b-4bc3-b18a-696df9eab2a0 + status: 200 OK + code: 200 + duration: 113.192866ms + - id: 90 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 189cdc0a-1e93-40e1-ba6d-dfb2d1f11dea + status: 200 OK + code: 200 + duration: 85.199802ms + - id: 91 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5143a5e0-63a1-4d91-aecf-4e800d03f5f2 + status: 200 OK + code: 200 + duration: 100.296779ms + - id: 92 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35b7526a-0a52-41cb-80a5-82a3b5cf996b + status: 200 OK + code: 200 + duration: 160.358958ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91407c7e-d399-4ee5-abd5-c53af14e99d1 + status: 404 Not Found + code: 404 + duration: 29.90871ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f2c356b1-3c65-4965-bfc8-4a241889ae48 + status: 200 OK + code: 200 + duration: 94.129275ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d0ee6317-cee1-4b1f-b1ce-51581dc9a005 + status: 200 OK + code: 200 + duration: 122.524829ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a991b6b-c9ad-46fe-b5c0-ae6a5f070d22 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 95.498874ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f43c491b-8b1c-46fc-9d2e-d6aefb3edb67&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:9765:cb64:227b:407b/64","created_at":"2025-10-15T15:04:26.430447Z","id":"2b16cf80-ce52-4fa2-a73b-aa60d36a9138","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:04:26.430447Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:04:26.309390Z","id":"37fbc1c1-5687-42f8-bc71-0e9fee606c76","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:04:26.309390Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 20b32a73-f71b-4459-b60f-9e7b5505ceac + status: 200 OK + code: 200 + duration: 23.181016ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0bede2aa-3300-46a8-9b74-aa952d1dfe5e + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 116.045489ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f5419ad-f106-4176-83dd-23df7fb84395 + status: 200 OK + code: 200 + duration: 26.749066ms + - id: 100 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d724d724-9b81-4cab-835c-41178007f97f + status: 200 OK + code: 200 + duration: 26.074401ms + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba367b3d-8c3a-4a90-a588-55cf9d6e9e4a + status: 200 OK + code: 200 + duration: 158.764529ms + - id: 102 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - efea8a31-83b0-40fd-a061-ec3aee0ac06b + status: 404 Not Found + code: 404 + duration: 30.782999ms + - id: 103 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 91c15bb6-11a6-4270-a533-616b010bd39d + status: 200 OK + code: 200 + duration: 96.417547ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 813fd45c-13f4-4a09-87ee-83d3a9a72e68 + status: 200 OK + code: 200 + duration: 90.12649ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e0e444e9-b181-488b-875f-858e6099fa40 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 110.390277ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f43c491b-8b1c-46fc-9d2e-d6aefb3edb67&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:9765:cb64:227b:407b/64","created_at":"2025-10-15T15:04:26.430447Z","id":"2b16cf80-ce52-4fa2-a73b-aa60d36a9138","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:04:26.430447Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:04:26.309390Z","id":"37fbc1c1-5687-42f8-bc71-0e9fee606c76","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:04:26.309390Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 347a4f5e-846a-41bc-8e52-ecba3b44d570 + status: 200 OK + code: 200 + duration: 26.796324ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":1,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68c78af7-3911-4bed-ba9a-9b6e8bfba655 + status: 200 OK + code: 200 + duration: 35.734384ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d7a935c-0ffc-4b32-836e-f1c84953d51e + status: 200 OK + code: 200 + duration: 22.934082ms + - id: 109 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70c8ca9b-8086-4578-8199-f607489a34e4 + status: 200 OK + code: 200 + duration: 133.568496ms + - id: 110 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3df73a68-0a8a-4e03-b574-402389e63381 + status: 404 Not Found + code: 404 + duration: 30.913715ms + - id: 111 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 787886ac-df4d-49d6-abff-0296eacf7a01 + status: 200 OK + code: 200 + duration: 88.315746ms + - id: 112 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dbcbe365-8567-42d8-81b4-8e056420d45c + status: 200 OK + code: 200 + duration: 85.579195ms + - id: 113 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8594ea92-3afa-4160-bcc2-e12bf8960ff8 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 94.869835ms + - id: 114 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f43c491b-8b1c-46fc-9d2e-d6aefb3edb67&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1080 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:9765:cb64:227b:407b/64","created_at":"2025-10-15T15:04:26.430447Z","id":"2b16cf80-ce52-4fa2-a73b-aa60d36a9138","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:04:26.430447Z","zone":null},{"address":"172.17.40.2/22","created_at":"2025-10-15T15:04:26.309390Z","id":"37fbc1c1-5687-42f8-bc71-0e9fee606c76","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","mac_address":"02:00:00:14:BA:99","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:04:26.309390Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1080" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:14 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb0b89ac-734e-4d4a-9499-eb8c8a018db3 + status: 200 OK + code: 200 + duration: 25.092549ms + - id: 115 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 205 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"private_network_instance_02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e1446e7-b88d-4529-8926-1cc0d83011cc + status: 200 OK + code: 200 + duration: 609.637742ms + - id: 116 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9d022c41-6e32-478c-9c35-a7391cde96c6 + status: 200 OK + code: 200 + duration: 26.695666ms + - id: 117 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 59a4f0b3-fbd1-47f5-9415-727662f16599 + status: 200 OK + code: 200 + duration: 152.366265ms + - id: 118 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:15 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f1fc9d96-4ab0-4090-b45b-48a1979d6472 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 111.130816ms + - id: 119 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:15 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2cfa3a05-8a34-4fe6-9a68-e18adf187c6d + status: 200 OK + code: 200 + duration: 136.273921ms + - id: 120 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:04:25.954781+00:00","id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","ipam_ip_ids":["37fbc1c1-5687-42f8-bc71-0e9fee606c76","2b16cf80-ce52-4fa2-a73b-aa60d36a9138"],"mac_address":"02:00:00:14:ba:99","modification_date":"2025-10-15T15:05:09.759029+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d38ec25f-3606-4502-be51-1f3237624acf + status: 200 OK + code: 200 + duration: 97.853812ms + - id: 121 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ae19f3dc-19c2-4101-8490-2c9995ee4f1c + status: 204 No Content + code: 204 + duration: 370.555173ms + - id: 122 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f43c491b-8b1c-46fc-9d2e-d6aefb3edb67 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"f43c491b-8b1c-46fc-9d2e-d6aefb3edb67","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61cc0827-c7c0-4009-907a-71472c99ca94 + status: 404 Not Found + code: 404 + duration: 96.085586ms + - id: 123 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:16.772435+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5c0d88b4-4a71-4845-a0d0-18b4ad7f84c2 + status: 201 Created + code: 201 + duration: 633.903558ms + - id: 124 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:16.772435+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e26e236-632b-4f9b-b826-2615dac9e0ac + status: 200 OK + code: 200 + duration: 128.195725ms + - id: 125 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a61010a7-5902-44a8-94e3-b1d90c43e7b3 + status: 200 OK + code: 200 + duration: 87.775238ms + - id: 126 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 850d6633-7762-453e-8a7a-fd426244deeb + status: 200 OK + code: 200 + duration: 102.584447ms + - id: 127 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70323837-a6c0-40fb-a984-96d62beb8fc8 + status: 200 OK + code: 200 + duration: 142.208105ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d67254c-b912-4052-868c-1cc1454e9315 + status: 200 OK + code: 200 + duration: 150.887479ms + - id: 129 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2194fe3b-761f-46bb-a5fe-6c0de3757e88 + status: 404 Not Found + code: 404 + duration: 31.884457ms + - id: 130 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6af8a933-405b-4721-a589-ed47f2451d35 + status: 200 OK + code: 200 + duration: 92.710492ms + - id: 131 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f48a522-a351-470c-a9d9-e7d3ec72fb5a + status: 200 OK + code: 200 + duration: 128.341243ms + - id: 132 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d6e3ab9-8655-4382-90fa-b63aaca34cd1 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 109.827439ms + - id: 133 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96e882d3-3b5f-4582-a38e-5476cbd9cb68 + status: 200 OK + code: 200 + duration: 36.013679ms + - id: 134 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bea4a292-edb2-4331-b74c-fcacbe1d3ba1 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 105.683608ms + - id: 135 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01b91570-1540-47ff-98ff-765a11e400fa + status: 200 OK + code: 200 + duration: 28.296199ms + - id: 136 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fa3239c-25b0-4360-85da-2fd66adb3d38 + status: 200 OK + code: 200 + duration: 24.082197ms + - id: 137 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4dc5588a-a99f-4964-95d4-02dc38939122 + status: 200 OK + code: 200 + duration: 48.737208ms + - id: 138 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8f26439-2c73-43b2-a4b0-70cc6472848a + status: 200 OK + code: 200 + duration: 158.26801ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 323b35e8-fe2a-4675-b7dc-c5a26c1f6a32 + status: 404 Not Found + code: 404 + duration: 38.26957ms + - id: 140 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 19302a04-b690-4fd2-bd15-6ff5fa55deb6 + status: 200 OK + code: 200 + duration: 83.182636ms + - id: 141 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b77a5c2-695c-4fa2-aba9-d337fd255ee4 + status: 200 OK + code: 200 + duration: 137.671219ms + - id: 142 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bf447638-45e1-4738-a9b4-ffe94a6b14b4 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 134.920622ms + - id: 143 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6caf12af-eae5-4fe9-88e0-a51108a70eb0 + status: 200 OK + code: 200 + duration: 22.479572ms + - id: 144 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49583cb8-ad40-42df-a166-0c91518ef058 + status: 200 OK + code: 200 + duration: 28.203565ms + - id: 145 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ed4f2c06-4f8f-40de-88e0-4c586a72e9a7 + status: 200 OK + code: 200 + duration: 20.875995ms + - id: 146 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b90c26ff-f8ff-4968-9907-b1cea0ff1efa + status: 200 OK + code: 200 + duration: 28.404903ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 79f829a6-f7c4-4513-ac1d-dc7a87f8c101 + status: 200 OK + code: 200 + duration: 138.088753ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 487cae1e-43c6-4cf3-8857-5a8ec300ff92 + status: 404 Not Found + code: 404 + duration: 26.443024ms + - id: 149 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3a023e1b-fb2d-4239-b50d-bdb0b9205fdb + status: 200 OK + code: 200 + duration: 97.477982ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e12918c-b586-4084-9fed-cb3c9220efba + status: 200 OK + code: 200 + duration: 120.165535ms + - id: 151 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d38a563a-98c9-44a6-aed8-906b61dc1a52 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 119.771085ms + - id: 152 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0e43f061-4bb1-4fd4-9b99-77cd2f97b086 + status: 200 OK + code: 200 + duration: 24.76142ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a6f8eb9-03b8-4423-9286-88c289946088 + status: 200 OK + code: 200 + duration: 153.077339ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 478 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "478" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:25 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fc89ec26-120b-4818-8fc9-6d574484d789 + X-Total-Count: + - "1" + status: 200 OK + code: 200 + duration: 98.138943ms + - id: 155 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0403594c-5c2e-4c1a-814c-acd3847469ef + status: 200 OK + code: 200 + duration: 152.129823ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:25.652247+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:25 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0b01138-a087-4d3b-9c6b-77a1fa6710ec + status: 201 Created + code: 201 + duration: 510.014551ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 473 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:25.652247+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"syncing","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "473" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d9a1828-b3c3-48de-80fa-ae589bdd2534 + status: 200 OK + code: 200 + duration: 101.493783ms + - id: 158 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 623850e0-309a-4c2a-b5ac-4cc9abc52d5b + status: 200 OK + code: 200 + duration: 100.553204ms + - id: 159 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9f829465-e178-44dd-b4e7-b146b58335ff + status: 200 OK + code: 200 + duration: 109.380226ms + - id: 160 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 104d53c3-1349-4973-b241-939a5a7888b5 + status: 200 OK + code: 200 + duration: 167.665862ms + - id: 161 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 41582162-903c-47c4-b737-f26a95044dde + status: 200 OK + code: 200 + duration: 157.951756ms + - id: 162 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7d0a942a-95b9-4cad-b849-5441f32731b7 + status: 404 Not Found + code: 404 + duration: 31.775103ms + - id: 163 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 33bf241d-8b62-47a4-82f0-58984bc15a87 + status: 200 OK + code: 200 + duration: 515.123805ms + - id: 164 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 64bbe4ab-d748-42c7-a131-979a0c8d0d83 + status: 200 OK + code: 200 + duration: 92.360503ms + - id: 165 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e30c927b-591a-4ac5-9fb7-ac95e8ae6152 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 107.794754ms + - id: 166 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d5d9b6a-c4a9-4dd5-8498-ed562cbca25e + status: 200 OK + code: 200 + duration: 21.831849ms + - id: 167 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f73c2053-e32c-489d-aa0d-33f5969e94ec&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:5dab:cf13:868:7fff/64","created_at":"2025-10-15T15:05:25.805487Z","id":"a2a254af-c523-40e3-ab30-0f3c6ee9f0f5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:05:25.805487Z","zone":null},{"address":"172.17.40.3/22","created_at":"2025-10-15T15:05:25.714918Z","id":"54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:05:25.714918Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3d380c61-4282-4edd-afb3-2417d2893a37 + status: 200 OK + code: 200 + duration: 27.73093ms + - id: 168 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9bb131e-d651-4f0e-8f45-f4d88881c338 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 101.32907ms + - id: 169 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1d763467-3d9f-4a07-99b5-ee20a60e858f + status: 200 OK + code: 200 + duration: 25.975028ms + - id: 170 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ef25c1d-eeb2-413e-bbfc-a613baf205ce + status: 200 OK + code: 200 + duration: 20.84097ms + - id: 171 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08b81439-269f-49d7-bf02-fec340198cf7 + status: 200 OK + code: 200 + duration: 26.514179ms + - id: 172 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f09a307c-54bd-45c1-8530-08a3d9de48f5 + status: 200 OK + code: 200 + duration: 152.024703ms + - id: 173 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e6ae9d8-80b0-4a83-91b4-aa20240be174 + status: 404 Not Found + code: 404 + duration: 26.118306ms + - id: 174 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8d049f4-e041-4c34-9a24-b398c6f123f7 + status: 200 OK + code: 200 + duration: 107.473883ms + - id: 175 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5ca21ca-536f-4bff-9a4a-0f044e6418ac + status: 200 OK + code: 200 + duration: 111.453245ms + - id: 176 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c8feb26-ac47-4eef-81b2-ecc0169d6d69 + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 98.997268ms + - id: 177 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0b41700-9cb3-44dd-a397-d83e2881fd68 + status: 200 OK + code: 200 + duration: 32.573321ms + - id: 178 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f73c2053-e32c-489d-aa0d-33f5969e94ec&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:5dab:cf13:868:7fff/64","created_at":"2025-10-15T15:05:25.805487Z","id":"a2a254af-c523-40e3-ab30-0f3c6ee9f0f5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:05:25.805487Z","zone":null},{"address":"172.17.40.3/22","created_at":"2025-10-15T15:05:25.714918Z","id":"54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:05:25.714918Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec937288-387e-4925-8f18-5a7fd86c7b93 + status: 200 OK + code: 200 + duration: 27.509094ms + - id: 179 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e56a3aef-67dc-40d3-9cec-68e8eaa7b526 + status: 200 OK + code: 200 + duration: 22.656124ms + - id: 180 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 369e629e-c946-47dc-a3ab-5ad15a77f873 + status: 200 OK + code: 200 + duration: 28.903659ms + - id: 181 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25dc1531-4043-452a-8847-f88fa096d902 + status: 200 OK + code: 200 + duration: 28.835471ms + - id: 182 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7f80548-6381-4af2-8c52-1f458eed500e + status: 200 OK + code: 200 + duration: 141.610195ms + - id: 183 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ca5c33f-6beb-435b-bada-d7543c73379c + status: 404 Not Found + code: 404 + duration: 39.618652ms + - id: 184 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 824c7a96-5e68-41b0-9ba3-779527ab1334 + status: 200 OK + code: 200 + duration: 85.218501ms + - id: 185 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 03229821-8ab9-447b-9790-20f8e27f9b4c + status: 200 OK + code: 200 + duration: 93.007486ms + - id: 186 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9859ed40-80c9-423b-8d9b-d215a3fa0a1c + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 108.95981ms + - id: 187 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=5c947d93-5348-4fe3-821c-ca93b62f8b5c&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:ef59:21fd:cd32:7d96:f535/64","created_at":"2025-10-15T15:05:17.014209Z","id":"cda58334-201a-45bb-9cb0-b737aba2e1af","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec"},"tags":[],"updated_at":"2025-10-15T15:05:17.014209Z","zone":null},{"address":"172.16.4.2/22","created_at":"2025-10-15T15:05:16.885449Z","id":"e637ba73-a950-421e-b280-b634240bd131","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","mac_address":"02:00:00:18:71:15","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977"},"tags":[],"updated_at":"2025-10-15T15:05:16.885449Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4875ecd-a603-4d63-9084-f6dc35869dfe + status: 200 OK + code: 200 + duration: 21.13381ms + - id: 188 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=f73c2053-e32c-489d-aa0d-33f5969e94ec&resource_type=instance_private_nic + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1079 + uncompressed: false + body: '{"ips":[{"address":"fd5f:519c:6d46:3e31:5dab:cf13:868:7fff/64","created_at":"2025-10-15T15:05:25.805487Z","id":"a2a254af-c523-40e3-ab30-0f3c6ee9f0f5","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6746f829-91d1-4467-8a99-6faee5090af8"},"tags":[],"updated_at":"2025-10-15T15:05:25.805487Z","zone":null},{"address":"172.17.40.3/22","created_at":"2025-10-15T15:05:25.714918Z","id":"54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","mac_address":"02:00:00:18:BC:4C","name":"tf-srv-stupefied-shockley","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d"},"tags":[],"updated_at":"2025-10-15T15:05:25.714918Z","zone":null}],"total_count":2}' + headers: + Content-Length: + - "1079" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:33 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c6999eef-a5d6-4a60-b65e-ab6b9565e3b3 + status: 200 OK + code: 200 + duration: 23.688721ms + - id: 189 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f4184696-301a-4b58-afd7-86849fdb6184 + status: 200 OK + code: 200 + duration: 154.002434ms + - id: 190 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 938 + uncompressed: false + body: '{"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}]}' + headers: + Content-Length: + - "938" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:34 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 55ca93c1-2a5b-4eb9-a838-f534480acdcd + X-Total-Count: + - "2" + status: 200 OK + code: 200 + duration: 97.401997ms + - id: 191 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2820 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"},{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2820" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2679428d-c243-41a7-a5c7-2216ba030edb + status: 200 OK + code: 200 + duration: 152.798005ms + - id: 192 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:16.562149+00:00","id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","ipam_ip_ids":["e637ba73-a950-421e-b280-b634240bd131","cda58334-201a-45bb-9cb0-b737aba2e1af"],"mac_address":"02:00:00:18:71:15","modification_date":"2025-10-15T15:05:17.654371+00:00","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:34 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b1bc40d6-f76d-414e-9d08-d89555e79fb0 + status: 200 OK + code: 200 + duration: 119.67299ms + - id: 193 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4756b21b-770e-42dc-aac3-7a1db2efbfdc + status: 204 No Content + code: 204 + duration: 420.094638ms + - id: 194 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/5c947d93-5348-4fe3-821c-ca93b62f8b5c + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"5c947d93-5348-4fe3-821c-ca93b62f8b5c","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5805fa4-817d-4430-8ab6-a2aa3a8059ab + status: 404 Not Found + code: 404 + duration: 90.879117ms + - id: 195 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2360 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2360" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea727195-8648-4faf-a2cc-833d2ad58ba3 + status: 200 OK + code: 200 + duration: 180.423049ms + - id: 196 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"private_nic":{"creation_date":"2025-10-15T15:05:25.443292+00:00","id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","ipam_ip_ids":["54fa44a3-7a52-4d45-8c98-9f409b4cc3fc","a2a254af-c523-40e3-ab30-0f3c6ee9f0f5"],"mac_address":"02:00:00:18:bc:4c","modification_date":"2025-10-15T15:05:26.566685+00:00","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","server_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","state":"available","tags":[],"zone":"fr-par-1"}}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb67f41a-5dc2-4f7e-a1a0-4609cd525ae2 + status: 200 OK + code: 200 + duration: 80.448497ms + - id: 197 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb507967-5d39-49ae-b43b-522c0efd00c9 + status: 204 No Content + code: 204 + duration: 435.448552ms + - id: 198 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics/f73c2053-e32c-489d-aa0d-33f5969e94ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 148 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"f73c2053-e32c-489d-aa0d-33f5969e94ec","type":"not_found"}' + headers: + Content-Length: + - "148" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1efacdae-b4ca-4b8f-91b1-1494d97ba571 + status: 404 Not Found + code: 404 + duration: 110.408157ms + - id: 199 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da6d8a1d-c85e-4c6f-bc42-a5f8bd223105 + status: 200 OK + code: 200 + duration: 169.716543ms + - id: 200 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a1ae4dea-86d5-4aba-93ca-d6095d6c5b7f + status: 200 OK + code: 200 + duration: 156.876275ms + - id: 201 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d987aab1-2696-4c9a-b360-c5b8ffe81f22 + status: 404 Not Found + code: 404 + duration: 27.048732ms + - id: 202 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca640e08-2f1c-4c58-b379-e8460957c2e1 + status: 200 OK + code: 200 + duration: 88.151282ms + - id: 203 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fe144d18-96ad-49c6-91d9-e95f0dfab116 + status: 200 OK + code: 200 + duration: 111.543176ms + - id: 204 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c484a07e-f5b9-4299-aa71-98a97b9b286b + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 85.835429ms + - id: 205 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b780e95e-45d8-4f34-9453-7f0cde2ed742 + status: 200 OK + code: 200 + duration: 163.237243ms + - id: 206 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 426 + uncompressed: false + body: '{"created_at":"2025-10-15T15:03:05.727253Z","custom_routes_propagation_enabled":true,"id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22","is_default":false,"name":"TestAccServer_PrivateNetwork","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-10-15T15:03:05.727253Z"}' + headers: + Content-Length: + - "426" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9710721c-038c-4b5e-97a0-c4d80fa3a4dc + status: 200 OK + code: 200 + duration: 27.625584ms + - id: 207 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1096 + uncompressed: false + body: '{"created_at":"2025-10-15T15:05:14.964546Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","name":"private_network_instance_02","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:05:14.964546Z","id":"a3bca24e-ea12-4181-8bfc-cfbc8f960977","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:05:14.964546Z","id":"aee029ff-a05a-4bff-ae0e-81d941eb0dec","private_network_id":"9788d388-d64b-47ad-9ad3-23e95d091ee3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:ef59::/64","updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:05:14.964546Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1096" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f51686c-1157-462f-8883-b55dfafd8327 + status: 200 OK + code: 200 + duration: 20.290629ms + - id: 208 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:15.100062Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"84d0bd91-8515-4104-a3d4-3952c3023512","name":"private_network_instance","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-10-15T15:04:15.100062Z","id":"74ddff3f-1247-4ea2-bafa-5fcc0d807e5d","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.17.40.0/22","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"},{"created_at":"2025-10-15T15:04:15.100062Z","id":"6746f829-91d1-4467-8a99-6faee5090af8","private_network_id":"84d0bd91-8515-4104-a3d4-3952c3023512","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:3e31::/64","updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}],"tags":[],"updated_at":"2025-10-15T15:04:15.100062Z","vpc_id":"e66ecda9-bd5f-4fe6-8b52-18c578e9aa22"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - abe1490b-2cbd-4c11-bed2-d85699d2e3a2 + status: 200 OK + code: 200 + duration: 26.22617ms + - id: 209 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 08ec6aed-5247-4540-b8e7-6679434d81b8 + status: 200 OK + code: 200 + duration: 142.139201ms + - id: 210 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d94aa814-7c3a-40a0-af61-ee76744a8260 + status: 404 Not Found + code: 404 + duration: 25.599434ms + - id: 211 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 701 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:17.083214Z","id":"99f5872c-dd0d-4d83-84fb-0df213c15fa2","product_resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:17.083214Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "701" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 165f9441-a0e4-42c5-9345-b699827106b0 + status: 200 OK + code: 200 + duration: 86.842809ms + - id: 212 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/user_data + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 17 + uncompressed: false + body: '{"user_data":[]}' + headers: + Content-Length: + - "17" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f0fcce67-f5eb-4b7e-91c9-7b00b81d560a + status: 200 OK + code: 200 + duration: 106.899699ms + - id: 213 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/private_nics + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 20 + uncompressed: false + body: '{"private_nics":[]}' + headers: + Content-Length: + - "20" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8c88d8f6-6708-4876-a679-59f32fc8e9bb + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 89.230205ms + - id: 214 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d471ceec-7f97-4125-8abd-b2d17a872b07 + status: 200 OK + code: 200 + duration: 144.684794ms + - id: 215 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1902 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:04:24.394436+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1902" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8d8a4e2-866e-4da8-acf6-144f45f79a65 + status: 200 OK + code: 200 + duration: 167.163547ms + - id: 216 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 22 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"action":"terminate"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 353 + uncompressed: false + body: '{"task":{"description":"server_terminate","href_from":"/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f/action","href_result":"/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f","id":"ff403cb7-0c89-45de-8ab2-8704faa31ea8","progress":0,"started_at":"2025-10-15T15:05:38.197539+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + headers: + Content-Length: + - "353" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:38 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/ff403cb7-0c89-45de-8ab2-8704faa31ea8 + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd8e0005-f04b-4146-94b7-149ddf69ea94 + status: 202 Accepted + code: 202 + duration: 254.663661ms + - id: 217 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1865 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:05:37.994531+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1865" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 473842d1-fd83-4772-abee-a6e631e241d2 + status: 200 OK + code: 200 + duration: 164.677136ms + - id: 218 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9788d388-d64b-47ad-9ad3-23e95d091ee3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 63e541b8-011c-4173-9810-9132447547d0 + status: 204 No Content + code: 204 + duration: 1.191169151s + - id: 219 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/84d0bd91-8515-4104-a3d4-3952c3023512 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:38 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1987d501-2051-4a06-8cff-2a7a7552d89f + status: 204 No Content + code: 204 + duration: 1.238299871s + - id: 220 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e66ecda9-bd5f-4fe6-8b52-18c578e9aa22 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:39 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 61476eb5-a7e6-41b7-9724-0b96ef9ad310 + status: 204 No Content + code: 204 + duration: 114.653931ms + - id: 221 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1865 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:05:37.994531+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1865" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:43 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d8e8dc70-85d3-44f2-9bed-b5d7b8bf5c87 + status: 200 OK + code: 200 + duration: 147.957137ms + - id: 222 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1865 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:16.949519+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-stupefied-shockley","id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"302","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:59","maintenances":[],"modification_date":"2025-10-15T15:05:37.994531+00:00","name":"tf-srv-stupefied-shockley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1865" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:48 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0171b7c2-50f8-49bb-99d4-bc71842f86f0 + status: 200 OK + code: 200 + duration: 145.616763ms + - id: 223 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3553d7d7-0413-4409-a6f5-87b403d7fa46 + status: 404 Not Found + code: 404 + duration: 46.938795ms + - id: 224 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2290f50c-0362-42b1-99bf-6bc1e5d94c91 + status: 404 Not Found + code: 404 + duration: 27.276352ms + - id: 225 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 494 + uncompressed: false + body: '{"created_at":"2025-10-15T15:04:17.083214Z","id":"1258ea1d-4bc1-4031-8dd9-8df09bee498e","last_detached_at":"2025-10-15T15:05:49.564001Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:49.564001Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "494" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:53 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d97cb210-ee7f-4bbd-8cfe-1de3bc0df78b + status: 200 OK + code: 200 + duration: 92.392827ms + - id: 226 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1258ea1d-4bc1-4031-8dd9-8df09bee498e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:54 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3da121ab-758a-48ed-b00a-ee108f0784c9 + status: 204 No Content + code: 204 + duration: 175.835269ms + - id: 227 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e06e58bd-2251-44f4-91e0-2c6de6cdf74f method: GET response: proto: HTTP/2.0 @@ -2717,7 +11278,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a366990e-f1f7-4d7f-8395-b8ea224b7fe3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e06e58bd-2251-44f4-91e0-2c6de6cdf74f","type":"not_found"}' headers: Content-Length: - "143" @@ -2726,9 +11287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:05:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2736,7 +11297,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb35d7d7-3a3f-446f-b871-0ebc97b0018c + - aa94adbb-ec83-448c-94cd-a77949a24800 status: 404 Not Found code: 404 - duration: 29.398778ms + duration: 45.959239ms diff --git a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml index b34bef41b..57a8c27b7 100644 --- a/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-boot.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b2df6cc-2922-4b23-b7cb-ad80b46c873d + - c44aa1a8-3c21-40cc-8e62-cd74cd06cc9b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.681739ms + duration: 44.16566ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5807400-ea42-44f3-8158-4c869d6de2b2 + - b266274e-dac5-4893-892a-1bdc24bcaa9e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.955792ms + duration: 49.309903ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b637b0bf-ba5d-49f7-9dd6-df3fe3e4ac4c + - 1e3ddad3-08b2-4c1b-bbc1-ea46232cd4a9 status: 200 OK code: 200 - duration: 54.061327ms + duration: 55.388289ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 301 + content_length: 300 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-dreamy-williams","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":true}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: '{"name":"tf-srv-quirky-volhard","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":true}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a3274d9-8fb1-4bc4-9da3-c3d2c23f1ed7 + - 54f8fb70-452d-44e6-afea-23038497a915 status: 201 Created code: 201 - duration: 531.528893ms + duration: 1.287937866s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c94a0d0f-e583-40b7-a601-3a755f779c35 + - e952a737-51a8-4b91-885e-c692f90ea019 status: 200 OK code: 200 - duration: 108.065318ms + duration: 174.241128ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ef7f8cc-2f2b-4e72-9362-ac18d55383b6 + - 2b9ff8c0-fb17-4fb7-82a1-0c447eb81a1c status: 200 OK code: 200 - duration: 101.597476ms + duration: 158.248577ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac11ea25-b321-43e6-970b-e9d616d335da + - cbb8984c-d2ef-4025-b9db-13a034b67a08 status: 200 OK code: 200 - duration: 134.373924ms + duration: 117.916865ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -382,7 +382,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -391,9 +391,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44829178-4b5f-4b37-b17f-5628b6282178 + - 802830e3-240b-4358-9f27-879e50c0ce70 status: 404 Not Found code: 404 - duration: 27.58487ms + duration: 26.730693ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -431,7 +431,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93fec2d4-332e-4b66-8aed-e7249fd0e57e + - 684b1874-0fc5-47e9-a1f4-72c82de2191d status: 200 OK code: 200 - duration: 38.805496ms + duration: 78.019758ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data method: GET response: proto: HTTP/2.0 @@ -489,9 +489,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -499,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b25e4455-f7b8-4612-b131-0e9542316a0e + - 48f9130e-18b6-4fe8-8b2f-b17a83d45030 status: 200 OK code: 200 - duration: 57.883066ms + duration: 85.919338ms - id: 10 request: proto: HTTP/1.1 @@ -519,7 +519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics method: GET response: proto: HTTP/2.0 @@ -538,11 +538,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -550,12 +550,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fdcb3f8-af39-496c-954d-47a3773e5705 + - fb285433-e4a5-4a0c-a3f4-62497b7bd93b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.869371ms + duration: 110.143553ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65252eba-4d35-4f04-8939-70b2dd627f43 + - e1ae0fc7-3545-400c-ac47-c17d92404274 status: 200 OK code: 200 - duration: 89.909074ms + duration: 154.246455ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cbe8e89-4f36-4aa3-8e8f-69b96dba1f10 + - c01fca50-19ec-439c-aa1a-4ffaa8dbcfb3 status: 200 OK code: 200 - duration: 100.19083ms + duration: 157.025555ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -680,7 +680,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b189fc33-17b4-4150-85d2-ec796d5f804f + - 2bf97743-b111-44b2-9cd5-129578d1aedc status: 404 Not Found code: 404 - duration: 34.531348ms + duration: 22.686912ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -729,7 +729,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -738,9 +738,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c55c9f76-da80-4e85-98cb-85fc7036c22c + - 34fc0f6b-5a49-4e71-9958-6cc2c8aa2e4b status: 200 OK code: 200 - duration: 41.201784ms + duration: 102.085245ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data method: GET response: proto: HTTP/2.0 @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ed4efd3-8b14-42dc-a1be-00296e94ce1c + - cad231bc-915d-443f-99ec-66de93ac012c status: 200 OK code: 200 - duration: 51.160965ms + duration: 95.58567ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics method: GET response: proto: HTTP/2.0 @@ -836,11 +836,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef8255bf-13de-47c7-ac7f-fbdf90131be7 + - 6057f5ad-26e0-485a-99e2-57d73b9640c5 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.411134ms + duration: 102.547633ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df5f116-2b19-40e8-9e35-dc8b2a5cf7fc + - 6c368172-534d-4dc7-8e6f-3d75a3a9e8dc status: 200 OK code: 200 - duration: 100.870199ms + duration: 136.409316ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a70cfb9b-0264-4f03-b10d-b9faa0578eb9 + - 9256ee65-81a3-45cb-b9f9-547730fe34e7 status: 404 Not Found code: 404 - duration: 33.817456ms + duration: 31.650127ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -978,7 +978,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64322e87-cce9-45ae-98c8-af315220a12f + - c0757016-d431-4b03-9052-0b79e5dcad5c status: 200 OK code: 200 - duration: 52.423402ms + duration: 102.919029ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1235c06a-eb81-4f98-a2f1-de7e6ce1a082 + - 29d54840-88f0-4948-a6c7-bc123dde5f9a status: 200 OK code: 200 - duration: 52.939058ms + duration: 155.826147ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +1066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics method: GET response: proto: HTTP/2.0 @@ -1085,11 +1085,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,12 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eca69a5-1612-44d3-94c4-be6b561a38b9 + - 3c886875-66b1-4a28-9c46-f54f3ae90515 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.332121ms + duration: 94.280745ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1798 + content_length: 1796 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:49.622514+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:35.845425+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":true,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1798" + - "1796" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,29 +1148,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42beefc1-8c2c-4ec3-adf4-82801cbeb1a3 + - ebef7ca8-4cbc-4b70-8265-50a821fd2ffb status: 200 OK code: 200 - duration: 122.652729ms + duration: 147.016683ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 104 + content_length: 111 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volumes":{"0":{"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","boot":false,"name":"tf-vol-crazy-yalow"}}}' + body: '{"volumes":{"0":{"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","boot":false,"name":"tf-vol-xenodochial-banach"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: PATCH response: proto: HTTP/2.0 @@ -1178,20 +1178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 116fc6e2-c754-4407-968e-108f9574475e + - 1607f2bc-57ad-4ef1-a36a-0d9be4d434ea status: 200 OK code: 200 - duration: 147.76563ms + duration: 247.428773ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1227,20 +1227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b524f3ce-dea5-44ee-bea9-9e945b6c1f74 + - 7be1a6f9-c455-4a37-9d87-b58eae55cbfd status: 200 OK code: 200 - duration: 91.33813ms + duration: 153.476523ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1276,20 +1276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a91ccf6-7406-4d1a-a2c0-07b4fd8b4ccc + - d7498c71-54fe-46e7-97c9-3056eb9b6890 status: 200 OK code: 200 - duration: 97.521425ms + duration: 161.141805ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1327,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -1336,9 +1336,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 686f6161-cb42-4324-bbca-51722b4af96f + - 4f3a844c-53c3-46ac-aaa5-d0878df5f733 status: 404 Not Found code: 404 - duration: 27.852715ms + duration: 27.13899ms - id: 27 request: proto: HTTP/1.1 @@ -1366,7 +1366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -1376,7 +1376,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1385,9 +1385,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d8874b7-48da-4d0a-bafd-9764d4345146 + - ae876d4f-37fa-481b-a77d-996ad272031f status: 200 OK code: 200 - duration: 34.637124ms + duration: 84.461626ms - id: 28 request: proto: HTTP/1.1 @@ -1415,7 +1415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data method: GET response: proto: HTTP/2.0 @@ -1434,9 +1434,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e761a4c1-0e65-4463-8a1d-d6593a4b44bc + - c626b6f7-5014-47b3-bd4a-0a78b1f67ec5 status: 200 OK code: 200 - duration: 57.6417ms + duration: 111.998011ms - id: 29 request: proto: HTTP/1.1 @@ -1464,7 +1464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics method: GET response: proto: HTTP/2.0 @@ -1483,11 +1483,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,12 +1495,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b44f86da-dec7-4445-b1b0-d13110aea3a4 + - 05e53a51-fe6b-459c-9aa0-56e5c3f4a4f1 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.297396ms + duration: 102.690452ms - id: 30 request: proto: HTTP/1.1 @@ -1517,7 +1517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1525,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b272da6f-b7a6-4324-b87c-a16cd55b0840 + - 9e1916c7-9e28-4e44-9ece-8c486b297211 status: 200 OK code: 200 - duration: 101.047446ms + duration: 163.050153ms - id: 31 request: proto: HTTP/1.1 @@ -1566,7 +1566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1574,20 +1574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 047b97ac-fcf9-49c9-955d-e94b3228fcf1 + - 42754680-bb55-425e-a5c9-f10a9aca652e status: 200 OK code: 200 - duration: 110.097391ms + duration: 150.862684ms - id: 32 request: proto: HTTP/1.1 @@ -1615,7 +1615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -1625,7 +1625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -1634,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e371e24-bca5-44ad-896f-5b6709d19af5 + - 05f13717-1fed-4f09-b419-b4bf56af500e status: 404 Not Found code: 404 - duration: 26.61339ms + duration: 26.876608ms - id: 33 request: proto: HTTP/1.1 @@ -1664,7 +1664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -1674,7 +1674,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1683,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46cecc3d-b035-4cd7-bbc2-7e2559d88746 + - 7a4f1097-c5db-4736-90a7-f22786a3fdf5 status: 200 OK code: 200 - duration: 55.424301ms + duration: 83.011238ms - id: 34 request: proto: HTTP/1.1 @@ -1713,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/user_data method: GET response: proto: HTTP/2.0 @@ -1732,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a38fbd6c-782f-4559-bed3-482edde5a117 + - f81c6353-2822-4725-adbf-8b2d2709c237 status: 200 OK code: 200 - duration: 58.923002ms + duration: 117.575028ms - id: 35 request: proto: HTTP/1.1 @@ -1762,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/private_nics method: GET response: proto: HTTP/2.0 @@ -1781,11 +1781,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,12 +1793,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a09d8bb-f439-467a-9c82-82d6433cec4c + - 2911941c-c08c-4f0b-8e14-6bc1fb9a5ba8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.302143ms + duration: 96.487002ms - id: 36 request: proto: HTTP/1.1 @@ -1815,7 +1815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1823,20 +1823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1799 + content_length: 1797 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:52.045894+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1799" + - "1797" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4de593ed-c5cb-454d-bffc-0c8d5c93e8b6 + - 9aa68627-bc17-4bf8-9e1e-51cd9c880979 status: 200 OK code: 200 - duration: 94.961763ms + duration: 193.342676ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1864,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1797 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:39.146735+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1797" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:41 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9644cff1-825e-49df-99e8-4a56f5954347 + status: 200 OK + code: 200 + duration: 151.303182ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -1874,7 +1923,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:49.705283Z","id":"1bb1091e-ef25-4a34-b0c9-34fcf782dccc","product_resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:49.705283Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:35.982149Z","id":"d73304a3-7843-4c3f-958f-55f57f4dbfd0","product_resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:35.982149Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1883,9 +1932,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,11 +1942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95d08ec2-6c41-4e93-99f7-7ffaf087086f + - 67596593-1347-41c7-b0b0-fefae231d5ea status: 200 OK code: 200 - duration: 44.865803ms - - id: 38 + duration: 73.570399ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1915,7 +1964,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/action method: POST response: proto: HTTP/2.0 @@ -1925,7 +1974,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action","href_result":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366","id":"05cbfae0-018a-4a31-bd84-228b65b6a124","progress":0,"started_at":"2025-10-08T23:04:53.757421+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/47fab70a-e617-499b-81ff-e10f35c9363e/action","href_result":"/servers/47fab70a-e617-499b-81ff-e10f35c9363e","id":"bcbf2512-c096-424b-a16f-17d186aee337","progress":0,"started_at":"2025-10-15T15:04:41.683943+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1934,11 +1983,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/05cbfae0-018a-4a31-bd84-228b65b6a124 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bcbf2512-c096-424b-a16f-17d186aee337 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,11 +1995,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af5c0305-4839-4b2b-a432-f4ac4c570730 + - 0343307e-f480-4afe-b7b3-0e956a34b4d8 status: 202 Accepted code: 202 - duration: 205.207297ms - - id: 39 + duration: 291.140948ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1966,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -1974,20 +2023,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1821 + content_length: 1819 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:53.593231+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:41.470873+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1821" + - "1819" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,11 +2044,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db647905-8e2f-478b-ae7e-8b342ee3ecd8 + - 85511274-ad0c-48be-83ed-6f2b3bd18c1a status: 200 OK code: 200 - duration: 92.360614ms - - id: 40 + duration: 178.372051ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2015,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -2023,20 +2072,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1956 + content_length: 1953 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"2001","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:56.160598+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"302","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:44.272459+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1956" + - "1953" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,11 +2093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ce4d5e5-5aab-45dc-b0db-16e9d33075f0 + - e6f72986-e4ec-46dc-af0e-23b38f12c127 status: 200 OK code: 200 - duration: 96.18153ms - - id: 41 + duration: 148.192757ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2066,7 +2115,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e/action method: POST response: proto: HTTP/2.0 @@ -2076,7 +2125,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366/action","href_result":"/servers/fc56c1cf-4a59-4510-8975-d671c439b366","id":"9fa89771-442c-4fdd-98e8-59030ea79cd5","progress":0,"started_at":"2025-10-08T23:04:59.123489+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/47fab70a-e617-499b-81ff-e10f35c9363e/action","href_result":"/servers/47fab70a-e617-499b-81ff-e10f35c9363e","id":"cfcca3ef-77fd-4a68-9d17-7ee518715594","progress":0,"started_at":"2025-10-15T15:04:47.330312+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2085,11 +2134,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9fa89771-442c-4fdd-98e8-59030ea79cd5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cfcca3ef-77fd-4a68-9d17-7ee518715594 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2097,11 +2146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cd7643d-bb59-4afa-ae97-1bff848715da + - fa5b930f-1321-4c79-9b36-447c0ff51e4f status: 202 Accepted code: 202 - duration: 178.996117ms - - id: 42 + duration: 340.992415ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2117,7 +2166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -2125,20 +2174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1919 + content_length: 1916 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:49.622514+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-williams","id":"fc56c1cf-4a59-4510-8975-d671c439b366","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"2001","node_id":"42","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8d","maintenances":[],"modification_date":"2025-10-08T23:04:58.988505+00:00","name":"tf-srv-dreamy-williams","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"302","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:47.076431+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1919" + - "1916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:59 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2146,11 +2195,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7355872-d495-452b-bc99-9bb28e77469c + - 0a0df0e6-f7eb-416e-ac4d-28a33eee71ad status: 200 OK code: 200 - duration: 103.122306ms - - id: 43 + duration: 144.083644ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1916 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"302","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:47.076431+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1916" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:52 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 339008c1-46c5-4368-976c-46604f19fce1 + status: 200 OK + code: 200 + duration: 158.264206ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1916 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.845425+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-quirky-volhard","id":"47fab70a-e617-499b-81ff-e10f35c9363e","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"302","node_id":"45","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:75","maintenances":[],"modification_date":"2025-10-15T15:04:47.076431+00:00","name":"tf-srv-quirky-volhard","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1916" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - aa2be3d9-673f-4a48-bbce-55b35d05b85a + status: 200 OK + code: 200 + duration: 134.911447ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2166,7 +2313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -2176,7 +2323,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","type":"not_found"}' headers: Content-Length: - "143" @@ -2185,9 +2332,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:05:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2195,11 +2342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c21ad7c-8933-4dbb-8f38-0c42d934568d + - 415573e9-b1c6-4c09-a7b5-665b28832c9f status: 404 Not Found code: 404 - duration: 50.942956ms - - id: 44 + duration: 47.798079ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2215,7 +2362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -2225,7 +2372,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","type":"not_found"}' headers: Content-Length: - "143" @@ -2234,9 +2381,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:05:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,11 +2391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39454c0d-2a7f-4623-9773-711029f8c3c5 + - c7ce094f-df9e-4439-9346-bf5dc2acbe43 status: 404 Not Found code: 404 - duration: 30.765119ms - - id: 45 + duration: 22.415708ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2264,7 +2411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: GET response: proto: HTTP/2.0 @@ -2274,7 +2421,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:49.705283Z","id":"7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce","last_detached_at":"2025-10-08T23:05:00.489482Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:00.489482Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:35.982149Z","id":"6a12b373-2654-43f2-9bf2-a11e3e6d0968","last_detached_at":"2025-10-15T15:04:58.725145Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:58.725145Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2283,9 +2430,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:05:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2293,11 +2440,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a5cda6-30a3-4fe2-882d-e98189b51085 + - eb03bccb-f2f7-44a9-87b6-1ae8fac040fc status: 200 OK code: 200 - duration: 45.823123ms - - id: 46 + duration: 104.919319ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2313,7 +2460,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/7b2d2490-73d5-43f0-a9e3-ffbd0f7d39ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6a12b373-2654-43f2-9bf2-a11e3e6d0968 method: DELETE response: proto: HTTP/2.0 @@ -2330,9 +2477,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:05:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2340,11 +2487,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 204e0f66-b9d2-41da-a2dc-acda8987f223 + - 0881c41b-1e5d-49c1-90b7-013714daec4b status: 204 No Content code: 204 - duration: 75.554006ms - - id: 47 + duration: 150.667907ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2360,7 +2507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/fc56c1cf-4a59-4510-8975-d671c439b366 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/47fab70a-e617-499b-81ff-e10f35c9363e method: GET response: proto: HTTP/2.0 @@ -2370,7 +2517,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"fc56c1cf-4a59-4510-8975-d671c439b366","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"47fab70a-e617-499b-81ff-e10f35c9363e","type":"not_found"}' headers: Content-Length: - "143" @@ -2379,9 +2526,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:04 GMT + - Wed, 15 Oct 2025 15:05:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2389,7 +2536,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fe26602-ad19-4aeb-9f9d-086662714016 + - afc41ba8-9bc1-4105-b117-15433984d760 status: 404 Not Found code: 404 - duration: 50.17811ms + duration: 44.456494ms diff --git a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml index bf9513014..54be60990 100644 --- a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1d03023-020f-40a9-9b94-3e489965b610 + - fc9f7fdc-0b4a-4db8-a743-3b8e6180a807 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 51.762715ms + duration: 50.43808ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fda5e2e4-9603-4b9c-88d9-92f5ac04f3a5 + - 336080cd-bd1e-4b8b-b119-f8b8f78a8121 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.775688ms + duration: 63.248715ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:27 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24fcc80f-dae0-40be-8ad8-02fdd955fd7a + - 706f932a-ded0-467c-a29f-e8ca4ee4ee3f status: 200 OK code: 200 - duration: 53.243928ms + duration: 46.988453ms - id: 3 request: proto: HTTP/1.1 @@ -167,7 +167,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"6d3c053e-c728-4294-b23a-560b62a4d592","volumes":{"0":{"boot":false,"size":50000000000,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:14.930801+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -193,11 +193,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df293cf0-8872-4549-b305-c7763259fc4c + - 67f66511-3dea-42ce-b11a-4ab704f29434 status: 201 Created code: 201 - duration: 922.409928ms + duration: 4.495229501s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -235,7 +235,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:14.930801+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82bb93e5-42f7-4d76-942c-227da595878c + - f0365087-a353-471f-a8ad-37edc01db295 status: 200 OK code: 200 - duration: 101.759637ms + duration: 160.323152ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -284,7 +284,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:14.930801+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -293,9 +293,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76a63a40-1abb-4891-a465-2d38a34be491 + - a3edc676-a202-44e0-a669-f266bd09ccaa status: 200 OK code: 200 - duration: 90.651689ms + duration: 145.26228ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: PATCH response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -344,9 +344,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 576f84da-eca7-4cd5-a24d-c0e1a68c1b1c + - 2d49747e-60ae-41dc-90b8-266d10b4ad2e status: 200 OK code: 200 - duration: 77.250302ms + duration: 127.98934ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:27.352458+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:14.930801+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,10 +403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c38c5b6-909e-4bc8-a7f7-891fc7a26c89 + - bb5d79bb-4703-4186-aef5-b37192755c45 status: 200 OK code: 200 - duration: 81.197494ms + duration: 149.427949ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -433,7 +433,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -442,9 +442,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,10 +452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79f87f30-f770-4dd4-8360-4bd912aa1212 + - 87f62e35-03b3-4b20-b733-cda6949652dc status: 200 OK code: 200 - duration: 44.328713ms + duration: 80.634158ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action method: POST response: proto: HTTP/2.0 @@ -484,7 +484,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action","href_result":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2","id":"1bbb5843-52d9-43cd-8d53-41a2fa2f16ed","progress":0,"started_at":"2025-10-08T23:04:28.679438+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action","href_result":"/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0","id":"4cab8ec5-4570-40db-acf1-57af795c3a15","progress":0,"started_at":"2025-10-15T15:04:19.745023+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -493,11 +493,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1bbb5843-52d9-43cd-8d53-41a2fa2f16ed + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4cab8ec5-4570-40db-acf1-57af795c3a15 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5169db9-2afc-4175-aaf2-1bd764f8d552 + - b4934a29-0996-4c9a-9dc8-f153e042c66f status: 202 Accepted code: 202 - duration: 191.721048ms + duration: 283.955607ms - id: 10 request: proto: HTTP/1.1 @@ -525,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -535,7 +535,7 @@ interactions: trailer: {} content_length: 1830 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:28.532346+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:19.521619+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1830" @@ -544,9 +544,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f9af60d-c2c9-4637-be2d-896156d0691a + - 7abe27e4-315b-426f-8f74-2f361ea47d0f status: 200 OK code: 200 - duration: 97.580565ms + duration: 138.18858ms - id: 11 request: proto: HTTP/1.1 @@ -574,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -582,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1965 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -603,10 +603,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b660ab62-83f9-4228-bbd4-e481cd401531 + - ff8eac8c-1908-4aac-9864-205d4228a113 status: 200 OK code: 200 - duration: 101.615077ms + duration: 158.930821ms - id: 12 request: proto: HTTP/1.1 @@ -623,7 +623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -631,20 +631,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1965 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -652,10 +652,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50d1018a-7ffe-4ab4-b773-e953a661a671 + - e0d32bf3-098a-4d9f-94b6-c9a65cee18b9 status: 200 OK code: 200 - duration: 109.194058ms + duration: 150.847127ms - id: 13 request: proto: HTTP/1.1 @@ -672,7 +672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -682,7 +682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' headers: Content-Length: - "143" @@ -691,9 +691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,10 +701,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a857c35f-a857-4de2-b9b1-a4f107ceb1bb + - 167ddcbc-da34-48ea-ae0c-f8461c6ba1f8 status: 404 Not Found code: 404 - duration: 30.678313ms + duration: 32.765765ms - id: 14 request: proto: HTTP/1.1 @@ -721,7 +721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -731,7 +731,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -740,9 +740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,10 +750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ea4946c-f552-4119-8935-a6e588c2162b + - b20b4f63-cb7f-4b19-8ae8-a4d61054d408 status: 200 OK code: 200 - duration: 38.78954ms + duration: 80.356912ms - id: 15 request: proto: HTTP/1.1 @@ -770,7 +770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/user_data method: GET response: proto: HTTP/2.0 @@ -789,9 +789,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,10 +799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d529c0e-bd02-462e-af47-8929550424db + - b84e4c5d-f34b-4e40-b479-d36091792291 status: 200 OK code: 200 - duration: 54.6653ms + duration: 110.081245ms - id: 16 request: proto: HTTP/1.1 @@ -819,7 +819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/private_nics method: GET response: proto: HTTP/2.0 @@ -838,11 +838,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,24 +850,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81b15b6-f934-4a5d-b329-75f65eb7f024 + - db5ca825-477e-4d11-baf9-1c70a148405a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.749644ms + duration: 99.914807ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 153 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"volume_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"tf-snapshot-inspiring-ishizaka","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[]}' + body: '{"volume_id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"tf-snapshot-priceless-germain","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[]}' form: {} headers: Content-Type: @@ -882,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 481 + content_length: 480 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "481" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6efa0b4e-3f1d-439c-8853-263551c4da0f + - fb6f1dd7-c503-48b8-81e0-7e2a107c265f status: 200 OK code: 200 - duration: 441.580779ms + duration: 905.037824ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -931,20 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 711 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:34 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b320e8b-da40-40c6-b78a-50335d4b1ce9 + - 4fc03c57-7660-4ddd-bc35-cd4e5cf2082c status: 200 OK code: 200 - duration: 178.014381ms + duration: 430.243093ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 711 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 406b9b70-758f-4e5a-a76a-809a19eb1637 + - 77f4a358-91b2-4bc6-8d0d-e5795306ce7f status: 200 OK code: 200 - duration: 130.270068ms + duration: 1.028594765s - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 711 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7a88c56-2eb4-447d-a6aa-787ad3f5550b + - 824be598-2de7-45ac-a26d-05c900b62961 status: 200 OK code: 200 - duration: 359.912135ms + duration: 961.674685ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 711 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bcb4cad-2dbc-4fab-bd57-e3f3407f4f68 + - 3be82892-0a5f-4475-99d3-4dc3d036267d status: 200 OK code: 200 - duration: 557.525219ms + duration: 1.5214293s - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 711 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "711" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 015f433b-a193-43e7-b5e7-8c4e70668d4f + - e69c9a9d-d733-4579-9df2-12d09e3d5a9b status: 200 OK code: 200 - duration: 123.273087ms + duration: 1.12120579s - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 712 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:34.347205Z","id":"08e61900-8754-4d74-a31e-d82567175c1b","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "712" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67fa31fe-7b3f-4451-b214-6a651563b20f + - f012fcad-c068-4b97-aee5-fadbd8d80a0b status: 200 OK code: 200 - duration: 163.875847ms + duration: 193.702224ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a150df-c117-47bb-b353-37a34e363bca + - 05790a21-0630-42d8-8b47-08f68e812112 status: 200 OK code: 200 - duration: 393.626341ms + duration: 210.290145ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 1965 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "482" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b9f917d-f522-4df5-84a5-82bff5e19c6b + - 83a04620-6734-41a9-b144-11e14308e2bc status: 200 OK code: 200 - duration: 349.255579ms + duration: 136.412662ms - id: 26 request: proto: HTTP/1.1 @@ -1315,56 +1315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e0a5d9ac-da18-4cfc-9b1a-17829572e44f - status: 200 OK - code: 200 - duration: 115.953642ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -1374,7 +1325,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' headers: Content-Length: - "143" @@ -1383,9 +1334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1393,11 +1344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0709fea6-195d-4aa1-aa7e-ff5f7322326a + - 07f92099-c09e-4bd8-8824-18c09a25e85e status: 404 Not Found code: 404 - duration: 27.80205ms - - id: 28 + duration: 24.759792ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1413,7 +1364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -1423,7 +1374,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1432,9 +1383,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1442,11 +1393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 438ec5d6-5890-40b7-8d63-4bc1879077bf + - 2bf38d2a-9fc4-4926-8e5c-34c42ba7b171 status: 200 OK code: 200 - duration: 38.66861ms - - id: 29 + duration: 98.940134ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1462,7 +1413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/user_data method: GET response: proto: HTTP/2.0 @@ -1481,9 +1432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,11 +1442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c377562-3a87-40de-beda-ab5c7824af0e + - 2041f489-aece-4d79-8f33-b1ec6d03e750 status: 200 OK code: 200 - duration: 51.750422ms - - id: 30 + duration: 84.609034ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1511,7 +1462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/private_nics method: GET response: proto: HTTP/2.0 @@ -1530,11 +1481,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:57 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,13 +1493,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 094ecf3d-0a2c-483e-a4a5-e9cc2c9639c7 + - e45a55eb-43b4-437c-ad21-07e1db53995f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.450607ms - - id: 31 + duration: 95.594551ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1564,7 +1515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1572,20 +1523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,11 +1544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e6e16c4-dca7-4bdc-94c2-fc32d5632bb6 + - fd3352b6-dc54-44d0-8557-df3bf94b57bf status: 200 OK code: 200 - duration: 374.036963ms - - id: 32 + duration: 376.34255ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1613,7 +1564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -1621,20 +1572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1965 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,11 +1593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df8042a7-f7a3-4e9a-b9ec-0764e0db5b5e + - 5e95450b-ade1-41be-be53-d030f9cf7e27 status: 200 OK code: 200 - duration: 91.808636ms - - id: 33 + duration: 135.849417ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1662,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -1672,7 +1623,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' headers: Content-Length: - "143" @@ -1681,9 +1632,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,11 +1642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - deb5d2f8-9093-4539-b50c-862291c4fd20 + - c6dded6c-6248-4d96-aea3-37fdca291838 status: 404 Not Found code: 404 - duration: 27.081155ms - - id: 34 + duration: 29.069423ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1711,7 +1662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -1721,7 +1672,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -1730,9 +1681,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff207ce4-d9f0-450d-8d36-4d89cd514e07 + - ae164f56-7cf9-4b94-8d8b-ca900b61e48a status: 200 OK code: 200 - duration: 47.827385ms - - id: 35 + duration: 95.984524ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1760,7 +1711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/user_data method: GET response: proto: HTTP/2.0 @@ -1779,9 +1730,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f77ebcc-8f73-493c-8ff4-ae46ebb7381d + - 1a28bd54-602c-47cb-b8d6-1031ef3d803c status: 200 OK code: 200 - duration: 58.532514ms - - id: 36 + duration: 94.818757ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1809,7 +1760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/private_nics method: GET response: proto: HTTP/2.0 @@ -1828,11 +1779,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,13 +1791,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e0f6e39-f456-42bf-a1e5-b23c89cd51b6 + - b65246b7-21e6-43a5-9992-585c803f9d0e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.521362ms - - id: 37 + duration: 90.823938ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1862,7 +1813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -1870,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,22 +1842,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1d5a444-e7f9-4a68-9738-2bce67575b46 + - 20dcabf7-77e5-453a-b4a0-7083b7995871 status: 200 OK code: 200 - duration: 414.941653ms - - id: 38 + duration: 1.442901539s + - id: 37 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 199 + content_length: 200 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-volume-fervent-roentgen","perf_iops":5000,"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","from_snapshot":{"size":null,"snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1"},"tags":[]}' + body: '{"name":"tf-volume-agitated-mahavira","perf_iops":5000,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","from_snapshot":{"size":null,"snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f"},"tags":[]}' form: {} headers: Content-Type: @@ -1921,20 +1872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 458 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:00.336498Z","zone":"fr-par-1"}' headers: Content-Length: - - "457" + - "458" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,11 +1893,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca671e4e-92ee-49cb-9df1-fe2749b7f9f6 + - 76777a68-7e8e-4755-abed-8443e93ca0f8 status: 200 OK code: 200 - duration: 210.023205ms - - id: 39 + duration: 1.624428079s + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1962,7 +1913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -1970,20 +1921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 458 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:00.336498Z","zone":"fr-par-1"}' headers: Content-Length: - - "457" + - "458" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,11 +1942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd9e9f92-72b4-4116-841e-cd089c1bef91 + - 445b1162-a88d-41d3-8ddf-14d2abe844bd status: 200 OK code: 200 - duration: 42.106416ms - - id: 40 + duration: 97.459943ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2011,7 +1962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -2019,20 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:00.336498Z","zone":"fr-par-1"}' headers: Content-Length: - - "458" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,11 +1991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a9d3ab1-a961-433b-913c-d4e6772628ed + - 1e7bb997-5897-4adc-9d36-35592a54ddf6 status: 200 OK code: 200 - duration: 42.347944ms - - id: 41 + duration: 137.39308ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2060,7 +2011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -2068,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 458 + content_length: 459 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:08.818187Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:00.336498Z","zone":"fr-par-1"}' headers: Content-Length: - - "458" + - "459" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2089,11 +2040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec9cfedd-d48e-423d-9a67-290f1239172c + - 4e8177f4-eb41-4b5f-b42a-67a6574addf1 status: 200 OK code: 200 - duration: 36.611137ms - - id: 42 + duration: 99.519298ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2109,7 +2060,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -2117,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2138,11 +2089,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 987aeb57-69e0-45c2-a611-f08138d021c6 + - 301c698d-ca77-4775-9d1c-8c940c57018c status: 200 OK code: 200 - duration: 468.952498ms - - id: 43 + duration: 1.487304599s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2166,22 +2117,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,13 +2140,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2164d2c6-1a38-4c51-84b0-04e3e409df63 + - 8dc2b619-e71d-421e-bffa-4c5bda5f15f5 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 52.135464ms - - id: 44 + duration: 44.486382ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2219,22 +2170,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:08 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2242,13 +2193,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 648b6fab-b778-4f6b-bd22-a90e47029108 + - 69b20df2-9dfd-40b1-b601-b724552ad957 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.368532ms - - id: 45 + duration: 49.353749ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2259,7 +2210,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-tests-instance-root-volume-from-external-snapshot-2","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","volumes":{"0":{"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","boot":false,"volume_type":"sbs_volume"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -2276,7 +2227,7 @@ interactions: trailer: {} content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:09.408589+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1240" @@ -2285,11 +2236,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2297,11 +2248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f994e136-fa63-4522-a265-fcc2bc9ed737 + - e0fda884-1777-4472-a7bd-e5e8afcfd661 status: 201 Created code: 201 - duration: 459.037051ms - - id: 46 + duration: 1.023537929s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2317,7 +2268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -2327,7 +2278,7 @@ interactions: trailer: {} content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:09.408589+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1240" @@ -2336,9 +2287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2346,11 +2297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d15819-1141-4c5e-b559-8818cb99582b + - d18692b7-c5eb-47d2-9e4c-ccda62b5e4e9 status: 200 OK code: 200 - duration: 91.156023ms - - id: 47 + duration: 135.534829ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2366,7 +2317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -2376,7 +2327,7 @@ interactions: trailer: {} content_length: 1240 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:14.892307+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:09.408589+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1240" @@ -2385,9 +2336,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2395,11 +2346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 091f687c-8af8-4679-9a6f-5c2596ba0111 + - 1528a657-afb9-45ee-914f-81893cd402f6 status: 200 OK code: 200 - duration: 105.955528ms - - id: 48 + duration: 149.377514ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2415,7 +2366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -2423,20 +2374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:05:09.419363Z","id":"c8800d84-bc6a-434f-9ca6-ff2011ea2e20","product_resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:09.419363Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2444,11 +2395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75330fdc-0696-4abc-8f8c-e2685bd89274 + - 1c7993a8-37fa-4e9c-bd32-cf8df8dae52e status: 200 OK code: 200 - duration: 47.63663ms - - id: 49 + duration: 104.8741ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2466,7 +2417,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/action method: POST response: proto: HTTP/2.0 @@ -2476,7 +2427,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action","href_result":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e","id":"0979dbb9-ae5b-44c3-a066-ea1a494628ee","progress":0,"started_at":"2025-10-08T23:05:15.528618+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0058fee9-b925-4749-962b-283bea1ea54a/action","href_result":"/servers/0058fee9-b925-4749-962b-283bea1ea54a","id":"fc463109-b84f-4caa-9440-da96fd42278a","progress":0,"started_at":"2025-10-15T15:05:10.386133+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -2485,11 +2436,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0979dbb9-ae5b-44c3-a066-ea1a494628ee + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fc463109-b84f-4caa-9440-da96fd42278a Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2497,11 +2448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fc7642a-282f-4079-9a77-514b58659421 + - f42e2252-07bf-4e51-9f32-77d368291625 status: 202 Accepted code: 202 - duration: 181.350946ms - - id: 50 + duration: 276.39231ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2517,7 +2468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -2527,7 +2478,7 @@ interactions: trailer: {} content_length: 1262 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:15.391450+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:10.173333+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1262" @@ -2536,9 +2487,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2546,11 +2497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 92d9ef07-a657-4b7e-a344-53cbad043a4a + - 38ea671b-2f6c-4733-8034-7146b4c6d53f status: 200 OK code: 200 - duration: 84.03884ms - - id: 51 + duration: 152.122191ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2566,7 +2517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -2574,20 +2525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1397 + content_length: 1396 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:12.804183+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1397" + - "1396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2595,11 +2546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a580ae89-658f-4207-bcd3-f10df3a3f9bb + - 1cdf10d0-c26c-4314-a09d-6d7056f995c1 status: 200 OK code: 200 - duration: 120.52904ms - - id: 52 + duration: 118.735065ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2615,7 +2566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -2623,20 +2574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1397 + content_length: 1396 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:12.804183+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1397" + - "1396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2644,11 +2595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c20d6ed4-a8b8-4695-8c34-eccf8ef90386 + - d8c7fb99-a9bf-41fe-8172-df9176d67d59 status: 200 OK code: 200 - duration: 103.322027ms - - id: 53 + duration: 146.720889ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2664,7 +2615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -2674,7 +2625,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' headers: Content-Length: - "143" @@ -2683,9 +2634,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2693,11 +2644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62e602fb-3b6e-428a-a230-697340f6ebed + - 69ef6d0b-b150-40ce-b524-41558d53036e status: 404 Not Found code: 404 - duration: 32.460438ms - - id: 54 + duration: 33.896016ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2713,7 +2664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -2721,20 +2672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:05:09.419363Z","id":"c8800d84-bc6a-434f-9ca6-ff2011ea2e20","product_resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:09.419363Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2742,11 +2693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 337e645b-3bd8-4ec3-9bbf-bd24c6df0eae + - 0eb64c88-fc45-47a9-8fa8-c04c6728a96b status: 200 OK code: 200 - duration: 42.585823ms - - id: 55 + duration: 85.051846ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2762,7 +2713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/user_data method: GET response: proto: HTTP/2.0 @@ -2781,9 +2732,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2791,11 +2742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76487135-24e0-4fe1-8de2-6487d2eaf952 + - 1559dc6a-aa1f-407d-b0b7-58602693063f status: 200 OK code: 200 - duration: 49.764651ms - - id: 56 + duration: 93.050595ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2811,7 +2762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/private_nics method: GET response: proto: HTTP/2.0 @@ -2830,11 +2781,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:21 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2842,13 +2793,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d02e999-e23a-4153-893b-adbaa09dc0c0 + - 1142d7c2-6ef0-46b9-8ac2-9070898ecb7a X-Total-Count: - "0" status: 200 OK code: 200 - duration: 68.492501ms - - id: 57 + duration: 125.954502ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2864,7 +2815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -2872,20 +2823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1965 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2893,11 +2844,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ccc7b1b-2f8e-4f95-8573-2bee8f2b5018 + - b5d9be80-d762-4a33-9808-4820474fa30c status: 200 OK code: 200 - duration: 1.838422255s - - id: 58 + duration: 148.296544ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2913,7 +2864,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -2923,7 +2874,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' headers: Content-Length: - "143" @@ -2932,9 +2883,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2942,11 +2893,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd6817e1-00eb-4202-a501-49633219c360 + - c8166b85-433a-4aea-86af-f01855a07cac status: 404 Not Found code: 404 - duration: 27.960341ms - - id: 59 + duration: 25.464717ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2962,7 +2913,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -2972,7 +2923,7 @@ interactions: trailer: {} content_length: 705 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:27.462352Z","id":"03acebb8-b4eb-44b3-8be6-0771783ba625","product_resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:27.462352Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:15.052020Z","id":"ba0e9396-fb89-44ae-8891-ce1baab6f65d","product_resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:15.052020Z","zone":"fr-par-1"}' headers: Content-Length: - "705" @@ -2981,9 +2932,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2991,11 +2942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9f0e920-a0f3-4cd7-baac-0f0dbf2a92bb + - eacb8588-1d5c-4a91-8963-093c7bc7c8da status: 200 OK code: 200 - duration: 38.586715ms - - id: 60 + duration: 78.630306ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3011,7 +2962,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/user_data method: GET response: proto: HTTP/2.0 @@ -3030,9 +2981,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3040,11 +2991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abdb1c30-4ef0-4f26-9990-e3c26dd63363 + - 0036f65b-cafc-42fa-ae87-0c14a918a4d8 status: 200 OK code: 200 - duration: 54.368488ms - - id: 61 + duration: 102.915783ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3060,7 +3011,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/private_nics method: GET response: proto: HTTP/2.0 @@ -3079,11 +3030,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3091,13 +3042,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53dc06b4-2ec3-4f15-a9cb-838a4974a501 + - 41565212-7c19-4c5d-81f8-39d6ab29b67d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 48.191195ms - - id: 62 + duration: 94.578951ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3113,7 +3064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -3121,20 +3072,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3142,11 +3093,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33d7561f-0307-4fca-96b4-97b2ccda8d3f + - 37ff3bde-43e3-462e-8f8f-28d6fe37f313 status: 200 OK code: 200 - duration: 270.340217ms - - id: 63 + duration: 3.010609574s + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3162,7 +3113,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3170,20 +3121,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:05:09.419363Z","id":"c8800d84-bc6a-434f-9ca6-ff2011ea2e20","product_resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:09.419363Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3191,11 +3142,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b0bf451-628f-43b4-9127-c7de5c635cb8 + - dcf055d0-2be6-4929-bce8-5c3783e64a5c status: 200 OK code: 200 - duration: 50.436044ms - - id: 64 + duration: 87.672643ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3211,7 +3162,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -3219,20 +3170,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3240,11 +3191,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bb79f9f-583f-4f0c-8e6b-48cdb38a575a + - 89d732bc-6f6f-42bf-9849-cf48baf6ff05 status: 200 OK code: 200 - duration: 113.292284ms - - id: 65 + duration: 462.354776ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3260,7 +3211,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -3268,20 +3219,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1397 + content_length: 1396 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:12.804183+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1397" + - "1396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3289,11 +3240,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8788dfa4-c66c-4452-9b25-897bd6d6baf2 + - 291bdae3-788d-41f0-8e7f-671de5e2d0dc status: 200 OK code: 200 - duration: 111.674396ms - - id: 66 + duration: 131.329444ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3309,7 +3260,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3319,7 +3270,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' headers: Content-Length: - "143" @@ -3328,9 +3279,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3338,11 +3289,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d10a6bb9-374a-4ec6-b4c7-17aeccda96a2 + - 8f3086c7-dfd3-4833-a3c1-8abfe974bb9b status: 404 Not Found code: 404 - duration: 27.313674ms - - id: 67 + duration: 60.534708ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3358,7 +3309,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3366,20 +3317,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 690 + content_length: 691 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":null,"name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:14.903866Z","id":"17fafe1d-6317-44f7-9a8c-6cb3d6225e39","product_resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:14.903866Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":null,"name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:05:09.419363Z","id":"c8800d84-bc6a-434f-9ca6-ff2011ea2e20","product_resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:09.419363Z","zone":"fr-par-1"}' headers: Content-Length: - - "690" + - "691" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3387,11 +3338,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d7f3b1-14c1-488d-8e77-ca7cb0df102c + - aea0aca6-c03c-425d-8d66-a100d2e024e5 status: 200 OK code: 200 - duration: 38.61654ms - - id: 68 + duration: 114.029395ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3407,7 +3358,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/user_data method: GET response: proto: HTTP/2.0 @@ -3426,9 +3377,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3436,11 +3387,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf48727a-115e-4fa9-b0cb-dda89790bdd6 + - a02c50c5-cf2d-4646-83cf-17114f2c184f status: 200 OK code: 200 - duration: 63.906695ms - - id: 69 + duration: 94.634839ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3456,7 +3407,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/private_nics method: GET response: proto: HTTP/2.0 @@ -3475,11 +3426,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3487,12 +3438,61 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb2f8e6-7477-452f-80df-643afeac3dbc + - 300fe6f7-c89d-4ed2-af28-298070cd9979 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 52.287353ms + duration: 96.478365ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1396 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:12.804183+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1396" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:21 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34d12e96-8b89-42cd-ba28-497db77599dc + status: 200 OK + code: 200 + duration: 127.396271ms - id: 70 request: proto: HTTP/1.1 @@ -3509,7 +3509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -3517,20 +3517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1397 + content_length: 1396 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:18.397435+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:12.804183+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1397" + - "1396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3538,10 +3538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a607c4f-bd8b-4f9e-b5dc-5a3cdced82d3 + - c1b16419-53f0-447f-9dc8-3502b1726502 status: 200 OK code: 200 - duration: 101.050006ms + duration: 128.309383ms - id: 71 request: proto: HTTP/1.1 @@ -3560,7 +3560,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a/action method: POST response: proto: HTTP/2.0 @@ -3570,7 +3570,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e/action","href_result":"/servers/a505131c-5ec8-48cd-b09f-73563cfa506e","id":"30882b0d-6f06-4bf6-8cce-9304a55a73e3","progress":0,"started_at":"2025-10-08T23:05:24.836641+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/0058fee9-b925-4749-962b-283bea1ea54a/action","href_result":"/servers/0058fee9-b925-4749-962b-283bea1ea54a","id":"a54590a9-63ed-49f8-938e-af6cec9f06df","progress":0,"started_at":"2025-10-15T15:05:21.644464+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -3579,11 +3579,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30882b0d-6f06-4bf6-8cce-9304a55a73e3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a54590a9-63ed-49f8-938e-af6cec9f06df Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3591,10 +3591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7488905-38b8-4e28-8aed-db6551ca8352 + - 51e34b39-8dd5-4149-8a44-f859f903f451 status: 202 Accepted code: 202 - duration: 177.495859ms + duration: 255.07462ms - id: 72 request: proto: HTTP/1.1 @@ -3611,7 +3611,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -3619,20 +3619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1360 + content_length: 1359 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:05:14.892307+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"a505131c-5ec8-48cd-b09f-73563cfa506e","image":null,"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"161","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a1","maintenances":[],"modification_date":"2025-10-08T23:05:24.711161+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:05:09.408589+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot-2","id":"0058fee9-b925-4749-962b-283bea1ea54a","image":null,"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"100","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:8f","maintenances":[],"modification_date":"2025-10-15T15:05:21.437524+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot-2","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"39c60736-36e4-4bc3-8455-b5078d6fb339","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1360" + - "1359" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3640,10 +3640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47701e00-3596-4063-ba4e-2781a71a3766 + - 553b156e-4068-4055-ba1d-f4b992475756 status: 200 OK code: 200 - duration: 93.506123ms + duration: 175.778111ms - id: 73 request: proto: HTTP/1.1 @@ -3660,7 +3660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -3670,7 +3670,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","type":"not_found"}' headers: Content-Length: - "143" @@ -3679,9 +3679,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3689,10 +3689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5dd25c7-d363-48fd-aa99-19ead800f71e + - 7c4598c5-73c9-4a91-8df8-02e447cccfc7 status: 404 Not Found code: 404 - duration: 56.500746ms + duration: 62.732792ms - id: 74 request: proto: HTTP/1.1 @@ -3709,7 +3709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3719,7 +3719,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' headers: Content-Length: - "143" @@ -3728,9 +3728,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3738,10 +3738,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04182852-4b89-4a3b-9b52-a0646cee2145 + - c8ae6e32-3228-435a-9320-74f0eb90b43e status: 404 Not Found code: 404 - duration: 25.548694ms + duration: 22.5481ms - id: 75 request: proto: HTTP/1.1 @@ -3758,7 +3758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3766,20 +3766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 483 + content_length: 484 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:08.818187Z","id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","last_detached_at":"2025-10-08T23:05:26.291361Z","name":"tf-volume-fervent-roentgen","parent_snapshot_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:26.291361Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:05:00.336498Z","id":"39c60736-36e4-4bc3-8455-b5078d6fb339","last_detached_at":"2025-10-15T15:05:23.425823Z","name":"tf-volume-agitated-mahavira","parent_snapshot_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:23.425823Z","zone":"fr-par-1"}' headers: Content-Length: - - "483" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3787,10 +3787,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0f95b3-e1b7-4569-855f-275927257bdc + - 35a119d9-9aca-4ec3-9199-aab87bd60156 status: 200 OK code: 200 - duration: 44.903885ms + duration: 81.913338ms - id: 76 request: proto: HTTP/1.1 @@ -3807,7 +3807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: DELETE response: proto: HTTP/2.0 @@ -3824,9 +3824,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3834,10 +3834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 966a83cf-918e-4cbe-af91-561d19ff8713 + - 0f6171df-efac-4647-b7aa-01f8159d88ef status: 204 No Content code: 204 - duration: 64.259918ms + duration: 184.894913ms - id: 77 request: proto: HTTP/1.1 @@ -3854,7 +3854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39f453c0-39e1-4625-bd67-e841a33b4bf3 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/39c60736-36e4-4bc3-8455-b5078d6fb339 method: GET response: proto: HTTP/2.0 @@ -3864,7 +3864,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"39f453c0-39e1-4625-bd67-e841a33b4bf3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"39c60736-36e4-4bc3-8455-b5078d6fb339","type":"not_found"}' headers: Content-Length: - "127" @@ -3873,9 +3873,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3883,10 +3883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3550d430-329e-4cb2-85f2-f7bfe8645b70 + - 10ad375a-613b-4eea-b82e-d042328cbd1c status: 404 Not Found code: 404 - duration: 52.193387ms + duration: 85.91354ms - id: 78 request: proto: HTTP/1.1 @@ -3903,7 +3903,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -3911,20 +3911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 482 + content_length: 481 uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-08T23:04:34.293590Z","id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","name":"tf-snapshot-inspiring-ishizaka","parent_volume":{"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-08T23:04:34.293590Z","zone":"fr-par-1"}' + body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"status":"available","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' headers: Content-Length: - - "482" + - "481" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3932,10 +3932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c7e1918-b3c0-437a-bcdc-db5f74621e41 + - cbef83d4-7125-44b3-9242-a73635fb1439 status: 200 OK code: 200 - duration: 361.628351ms + duration: 858.608473ms - id: 79 request: proto: HTTP/1.1 @@ -3952,7 +3952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: DELETE response: proto: HTTP/2.0 @@ -3969,9 +3969,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3979,10 +3979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38b6f4c1-d02f-4aec-a8bc-316503f4f3b4 + - de9292b4-d188-4e50-95c7-ebbc511d2b8e status: 204 No Content code: 204 - duration: 292.172628ms + duration: 619.75386ms - id: 80 request: proto: HTTP/1.1 @@ -3999,7 +3999,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f method: GET response: proto: HTTP/2.0 @@ -4009,7 +4009,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"snapshot","resource_id":"f57dde1a-46b5-4adc-b6e4-cf4ab28e38a1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","type":"not_found"}' headers: Content-Length: - "129" @@ -4018,9 +4018,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4028,10 +4028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88b99fe9-eb57-45f9-8779-4ca59a76603b + - 8afb4b20-8124-4506-a1bd-3d789c2c95d9 status: 404 Not Found code: 404 - duration: 51.554283ms + duration: 79.878073ms - id: 81 request: proto: HTTP/1.1 @@ -4048,7 +4048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -4056,20 +4056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1964 + content_length: 1965 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:04:32.019269+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1964" + - "1965" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4077,11 +4077,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51fae917-bfea-4bfa-8c61-2587e2adddbf + - 46966631-40c2-444b-a1ec-694db3770108 status: 200 OK code: 200 - duration: 92.58288ms + duration: 130.444563ms - id: 82 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1965 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:04:23.316135+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1965" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9e2b5cdf-82e2-4174-a8dd-44ec2d4c551a + status: 200 OK + code: 200 + duration: 150.844526ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4099,7 +4148,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action method: POST response: proto: HTTP/2.0 @@ -4109,7 +4158,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2/action","href_result":"/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2","id":"fcaaec86-bfc8-4fd3-bb44-729781b6e61a","progress":0,"started_at":"2025-10-08T23:05:31.170642+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0/action","href_result":"/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0","id":"b5193cc6-384e-4df6-8d01-1259d4be2abb","progress":0,"started_at":"2025-10-15T15:05:29.392547+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4118,11 +4167,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fcaaec86-bfc8-4fd3-bb44-729781b6e61a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b5193cc6-384e-4df6-8d01-1259d4be2abb Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4130,11 +4179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6b31c01-0b1e-4c2c-b7b4-d9e7b5f123de + - 7673dd67-e403-4c75-ab14-232fc4a81214 status: 202 Accepted code: 202 - duration: 174.629564ms - - id: 83 + duration: 279.490167ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4150,7 +4199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -4158,20 +4207,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1927 + content_length: 1928 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:27.352458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"301","node_id":"73","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:63","maintenances":[],"modification_date":"2025-10-08T23:05:31.045881+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"21762d51-eab4-40f4-a084-f80abc89b6c9","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:04:14.930801+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-instance-root-volume-from-external-snapshot","id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","image":{"arch":"x86_64","creation_date":"2025-09-12T09:11:41.420846+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6d3c053e-c728-4294-b23a-560b62a4d592","modification_date":"2025-09-12T09:11:41.420846+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"36b4ce54-c67a-4f68-ab74-839515834352","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"601","node_id":"180","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:57","maintenances":[],"modification_date":"2025-10-15T15:05:29.180617+00:00","name":"tf-tests-instance-root-volume-from-external-snapshot","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"2908b234-85fa-4ff3-b91d-a152424794f6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1927" + - "1928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4179,11 +4228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4792fa3e-bc7b-45d5-b5a6-7e02c77b7bde + - bf3867f9-cf74-47e3-8b34-6a1067b3fbcf status: 200 OK code: 200 - duration: 112.1478ms - - id: 84 + duration: 162.160055ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4199,7 +4248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -4209,7 +4258,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","type":"not_found"}' headers: Content-Length: - "143" @@ -4218,9 +4267,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4228,11 +4277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de45c011-c560-4859-a9fb-a3c82a79ccd9 + - 0cc107e4-ccc3-4ebe-90a2-d81830ac1642 status: 404 Not Found code: 404 - duration: 44.926465ms - - id: 85 + duration: 43.29162ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4248,7 +4297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -4258,7 +4307,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"21762d51-eab4-40f4-a084-f80abc89b6c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2908b234-85fa-4ff3-b91d-a152424794f6","type":"not_found"}' headers: Content-Length: - "143" @@ -4267,9 +4316,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4277,11 +4326,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77ee3fc0-9a1f-47ea-b949-3e9f63af9200 + - ffaa8b52-d19d-4d88-9856-b03b97a79b6f status: 404 Not Found code: 404 - duration: 35.49715ms - - id: 86 + duration: 24.224035ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4297,7 +4346,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: GET response: proto: HTTP/2.0 @@ -4307,7 +4356,7 @@ interactions: trailer: {} content_length: 498 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:27.462352Z","id":"21762d51-eab4-40f4-a084-f80abc89b6c9","last_detached_at":"2025-10-08T23:05:32.853634Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:32.853634Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:15.052020Z","id":"2908b234-85fa-4ff3-b91d-a152424794f6","last_detached_at":"2025-10-15T15:05:31.561236Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"36b4ce54-c67a-4f68-ab74-839515834352","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":50000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:05:31.561236Z","zone":"fr-par-1"}' headers: Content-Length: - "498" @@ -4316,9 +4365,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4326,11 +4375,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4b8679-d505-4d38-b54b-02460ee7105e + - ee5ceb47-91c0-4f18-acd9-27b5a640fc37 status: 200 OK code: 200 - duration: 33.91507ms - - id: 87 + duration: 109.675112ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4346,7 +4395,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/21762d51-eab4-40f4-a084-f80abc89b6c9 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2908b234-85fa-4ff3-b91d-a152424794f6 method: DELETE response: proto: HTTP/2.0 @@ -4363,9 +4412,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,11 +4422,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c007d5c5-d323-4081-a58b-c584da3f5c54 + - d74d7296-c524-40c7-9bcc-a6b495a7df10 status: 204 No Content code: 204 - duration: 77.676918ms - - id: 88 + duration: 187.994656ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4393,7 +4442,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a505131c-5ec8-48cd-b09f-73563cfa506e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0058fee9-b925-4749-962b-283bea1ea54a method: GET response: proto: HTTP/2.0 @@ -4403,7 +4452,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a505131c-5ec8-48cd-b09f-73563cfa506e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0058fee9-b925-4749-962b-283bea1ea54a","type":"not_found"}' headers: Content-Length: - "143" @@ -4412,9 +4461,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4422,11 +4471,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c448e85b-2a72-4325-9652-6bd36dc259c7 + - bd5e2c88-3992-474e-8b6a-fac01b29eb12 status: 404 Not Found code: 404 - duration: 48.117496ms - - id: 89 + duration: 48.307917ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4442,7 +4491,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d6d0ddd1-9227-4f00-84f0-39d9aadaada2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f1fdbec6-0d99-4809-843f-8fe44d6426d0 method: GET response: proto: HTTP/2.0 @@ -4452,7 +4501,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d6d0ddd1-9227-4f00-84f0-39d9aadaada2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f1fdbec6-0d99-4809-843f-8fe44d6426d0","type":"not_found"}' headers: Content-Length: - "143" @@ -4461,9 +4510,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4471,7 +4520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd7e512e-9c03-4d3b-98f3-65dc01545eb9 + - 07e5c4cf-88cf-4c84-ba03-f7531e5df78b status: 404 Not Found code: 404 - duration: 45.918874ms + duration: 45.347396ms diff --git a/internal/services/instance/testdata/server-root-volume1.cassette.yaml b/internal/services/instance/testdata/server-root-volume1.cassette.yaml index f2a5bfc3e..c6bc878cb 100644 --- a/internal/services/instance/testdata/server-root-volume1.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume1.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7825ff9d-204b-4fe0-979c-1ccaa1c3ddb8 + - 5dd8d87a-57aa-42e5-96be-b1fc0b1438a8 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 41.077535ms + duration: 50.324169ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ccc5307-b8bc-4787-a07d-affb776114b6 + - a77ba9b6-47e1-40e1-8f0f-d31d65746a53 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 40.70769ms + duration: 53.597376ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a30cfb6-a450-48ee-a36f-376802099b52 + - 51874d6d-622a-4c6e-a90f-45f1a6d49de8 status: 200 OK code: 200 - duration: 42.709588ms + duration: 48.487235ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 347 + content_length: 344 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-flamboyant-chatelet","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: '{"name":"tf-srv-romantic-davinci","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":10000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + content_length: 2222 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:47.127857+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2231" + - "2222" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e516bc0-5f3b-4323-8be5-1be8f42c55c6 + - e5374b48-08ec-4bfe-ba00-326b6e26cb08 status: 201 Created code: 201 - duration: 566.624422ms + duration: 797.124657ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + content_length: 2222 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:47.127857+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2231" + - "2222" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc3944a2-8afc-40ef-b1b2-d24389aed69d + - ae32d798-0b11-4550-a01e-f601c4226cd4 status: 200 OK code: 200 - duration: 88.673755ms + duration: 135.457521ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2231 + content_length: 2222 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.165119+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:47.127857+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2231" + - "2222" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13e6eaeb-6bf8-487d-bf4c-69258ea74b0a + - 67e1a740-4501-4086-9d61-e194a46aa173 status: 200 OK code: 200 - duration: 98.062588ms + duration: 129.88298ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action","href_result":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a","id":"0b964c0d-94ad-4187-9beb-9ddc73bd4df5","progress":0,"started_at":"2025-10-08T23:04:51.839767+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/action","href_result":"/servers/efaf5e78-fd14-46c7-9f07-495d590e728b","id":"85681761-bd94-4f7a-9a22-b4616a905402","progress":0,"started_at":"2025-10-15T15:04:47.965426+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0b964c0d-94ad-4187-9beb-9ddc73bd4df5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/85681761-bd94-4f7a-9a22-b4616a905402 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b9bcf5f-d004-4200-928f-f73a38d16dac + - 26f406de-4ecc-4fbe-b16c-1ca16890fe5d status: 202 Accepted code: 202 - duration: 179.395324ms + duration: 344.070186ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2253 + content_length: 2244 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:47.680474+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2253" + - "2244" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc50b4ab-ff0a-4825-9cbd-4df6159c1e2b + - 4ab6fc21-6973-43c0-be8e-562ede04b423 status: 200 OK code: 200 - duration: 86.381148ms + duration: 141.682893ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2357 + content_length: 2347 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:47.680474+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2357" + - "2347" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ae37d9f-0488-4ff6-a6a4-d946a40cbc81 + - a81a629a-79c8-444f-a56e-30f9a49c13e6 status: 200 OK code: 200 - duration: 90.299064ms + duration: 122.510263ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2357 + content_length: 2378 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:04:51.707690+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2357" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58eb74b8-7a67-4463-b33a-a70ae09c5010 + - cbb0d009-ecbc-43f0-b82e-158d65e08b46 status: 200 OK code: 200 - duration: 90.587846ms + duration: 143.503989ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 2378 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4a52283-c828-4a33-9d93-85f49c12c19d + - 50281410-83c3-416e-96d6-8c1f686974f5 status: 200 OK code: 200 - duration: 89.094157ms + duration: 135.193337ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b24b05dd-ca7d-4570-a7a6-633d8896b40b + - 86c1609a-59f1-4d45-9776-76d33d0706ce status: 200 OK code: 200 - duration: 119.675235ms + duration: 113.220841ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/user_data method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "526" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 287195a2-138c-4f61-86dc-7f11482fc5b5 + - d602d7b5-dba6-4960-b785-b39e7e44198c status: 200 OK code: 200 - duration: 65.857383ms + duration: 102.230764ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/private_nics method: GET response: proto: HTTP/2.0 @@ -678,20 +678,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:58 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +701,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93eeb74d-0cf8-4580-9925-7c2b2357ecf2 + - f77afa42-d386-4c30-ae14-639c8af2cbde + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 54.984754ms + duration: 93.097301ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -727,22 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2378 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1408ea7b-6967-40f0-aa38-962f9a153131 - X-Total-Count: - - "0" + - e71d40b1-0cf7-40ee-84a2-fdff46db6fe0 status: 200 OK code: 200 - duration: 50.682504ms + duration: 123.720547ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 2378 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f819c1b3-b3a4-4b12-ad8a-62ddd22366ed + - b749634a-4eb0-4520-9e10-2518350d75dc status: 200 OK code: 200 - duration: 92.034093ms + duration: 144.979136ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c66563-56ba-4194-a0fe-d5e3964dcba4 + - db665a5e-8f6f-4f2e-9134-45021e124eb0 status: 200 OK code: 200 - duration: 95.15798ms + duration: 102.18469ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/user_data method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "526" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e81969d9-2624-4741-9aa4-237a1f211179 + - 48ce8257-7703-461a-9eb5-b0e74f4546f9 status: 200 OK code: 200 - duration: 51.85716ms + duration: 93.895688ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/private_nics method: GET response: proto: HTTP/2.0 @@ -927,20 +927,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:59 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +950,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5e1106d-8ddc-4bd5-9a1b-917d5add1616 + - 16911b09-bd59-4af8-9c40-7567f982f80d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 52.885184ms + duration: 93.579856ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -976,22 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2378 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,12 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 175bd1f1-4bcc-4f40-b97d-ab7b6d405e66 - X-Total-Count: - - "0" + - 5e847e97-5248-4545-a254-b59d620d575b status: 200 OK code: 200 - duration: 64.7705ms + duration: 137.305097ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c method: GET response: proto: HTTP/2.0 @@ -1029,20 +1029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 523 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "523" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b94d9f75-17e1-4a5e-b513-fbde7c10c1a1 + - e9b21224-9b59-4fa0-831e-b773ccf1a9ec status: 200 OK code: 200 - duration: 74.786634ms + duration: 95.776194ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/user_data method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 526 + content_length: 17 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "526" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d84c267-5903-4a7f-bc2f-e00506691f30 + - 64a66170-7e6a-4929-8a55-b9360c680cad status: 200 OK code: 200 - duration: 48.780711ms + duration: 88.268258ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/private_nics method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - defdee88-fec8-4bc8-a10e-90d473b92861 + - de836a34-cd46-4a4a-97bd-5528143f767a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 70.836217ms + duration: 113.435725ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -1176,22 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2378 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1201,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7137df4-63f1-420f-8d9b-0b3de543a138 - X-Total-Count: - - "0" + - 9b0f478b-6282-409a-b9ba-41f6546ec35c status: 200 OK code: 200 - duration: 54.802015ms + duration: 133.835293ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -1229,20 +1229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 2378 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bccf53cd-d70b-4aaf-a2d0-5f8a909be289 + - 7ae35ce2-d9f8-43e1-80a0-5cbeb22828ae status: 200 OK code: 200 - duration: 92.853441ms + duration: 130.282792ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2388 + content_length: 2378 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:02.588542+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:04:54.668616+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2388" + - "2378" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f312c475-585f-465e-961f-34db0a47f27c + - c4960c8a-17ed-481c-9e7e-64e55082fce3 status: 200 OK code: 200 - duration: 93.857881ms + duration: 130.055607ms - id: 26 request: proto: HTTP/1.1 @@ -1321,7 +1321,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/action method: POST response: proto: HTTP/2.0 @@ -1331,7 +1331,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a/action","href_result":"/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a","id":"01eab057-2365-49ac-9817-eec37bce407a","progress":0,"started_at":"2025-10-08T23:05:08.909359+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/efaf5e78-fd14-46c7-9f07-495d590e728b/action","href_result":"/servers/efaf5e78-fd14-46c7-9f07-495d590e728b","id":"b79c4b9d-43ab-4c62-92ee-43cbdb2ff1ed","progress":0,"started_at":"2025-10-15T15:05:00.937464+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1340,11 +1340,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/01eab057-2365-49ac-9817-eec37bce407a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b79c4b9d-43ab-4c62-92ee-43cbdb2ff1ed Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1352,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6f343b8-31ea-4214-9ad6-8cef3c44f2b8 + - e8782bbb-9e1b-413c-8f97-021a09e40cc1 status: 202 Accepted code: 202 - duration: 161.87237ms + duration: 266.873892ms - id: 27 request: proto: HTTP/1.1 @@ -1372,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -1380,20 +1380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2351 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:51.165119+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-flamboyant-chatelet","id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1901","node_id":"14","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:8f","maintenances":[],"modification_date":"2025-10-08T23:05:08.790392+00:00","name":"tf-srv-flamboyant-chatelet","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:51.165119+00:00","export_uri":null,"id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","modification_date":"2025-10-08T23:04:51.165119+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","name":"tf-srv-flamboyant-chatelet"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:05:00.734937+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2351" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1401,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a198aff-eb07-4414-860a-57e6c1f8f479 + - c24c2f3a-4abc-4182-8ff6-13a5f835c5cf status: 200 OK code: 200 - duration: 72.125474ms + duration: 140.418667ms - id: 28 request: proto: HTTP/1.1 @@ -1421,7 +1421,105 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/e7b3166c-1eb7-4248-8da7-082ab494ad6a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2341 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:05:00.734937+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2341" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ab40533a-7e7d-4164-af89-16df002ef92b + status: 200 OK + code: 200 + duration: 137.013157ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2341 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:47.127857+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-romantic-davinci","id":"efaf5e78-fd14-46c7-9f07-495d590e728b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"31","hypervisor_id":"602","node_id":"18","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:7d","maintenances":[],"modification_date":"2025-10-15T15:05:00.734937+00:00","name":"tf-srv-romantic-davinci","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:47.127857+00:00","export_uri":null,"id":"b45bf940-fb34-4a9e-b01f-9c058213082c","modification_date":"2025-10-15T15:04:47.127857+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"efaf5e78-fd14-46c7-9f07-495d590e728b","name":"tf-srv-romantic-davinci"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2341" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c52bbd9f-4977-49cb-8223-d52990421ca6 + status: 200 OK + code: 200 + duration: 143.250838ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/efaf5e78-fd14-46c7-9f07-495d590e728b method: GET response: proto: HTTP/2.0 @@ -1431,7 +1529,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"e7b3166c-1eb7-4248-8da7-082ab494ad6a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"efaf5e78-fd14-46c7-9f07-495d590e728b","type":"not_found"}' headers: Content-Length: - "143" @@ -1440,9 +1538,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1450,11 +1548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7adfd680-57a9-4e43-9d18-83c8e6c11e15 + - 7f6908e7-8641-47e5-83a5-6af31650d1bd status: 404 Not Found code: 404 - duration: 59.612504ms - - id: 29 + duration: 319.635295ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1470,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c method: GET response: proto: HTTP/2.0 @@ -1480,7 +1578,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b45bf940-fb34-4a9e-b01f-9c058213082c","type":"not_found"}' headers: Content-Length: - "143" @@ -1489,9 +1587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1499,11 +1597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a509b78f-7c8e-4f58-8fae-e2976989fcda + - 224496c2-4f0c-4fdb-9b78-7f14bc38d1a1 status: 404 Not Found code: 404 - duration: 32.428639ms - - id: 30 + duration: 27.459217ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1519,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c17bad5c-4391-4211-b9b0-76d43a1a44cc + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b45bf940-fb34-4a9e-b01f-9c058213082c method: GET response: proto: HTTP/2.0 @@ -1529,7 +1627,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"c17bad5c-4391-4211-b9b0-76d43a1a44cc","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"b45bf940-fb34-4a9e-b01f-9c058213082c","type":"not_found"}' headers: Content-Length: - "127" @@ -1538,9 +1636,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,11 +1646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f4a1d8-bdc1-4a91-910a-c0f290f61d7d + - 510d74db-dde0-4ea1-b1d0-47083136ec57 status: 404 Not Found code: 404 - duration: 17.89604ms - - id: 31 + duration: 21.697173ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1576,22 +1674,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,13 +1697,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5bf42b9-a835-4734-9cec-c19ecc7a7fac + - 9e27e1fb-2c1e-4c6f-9afc-e25214ccb92a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.873905ms - - id: 32 + duration: 51.284672ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1629,22 +1727,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1652,13 +1750,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8b59a9f-9671-4466-89d2-d50c7283669e + - aa34d719-403d-4d1c-a2ed-a4f2eabc3fdf X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.930372ms - - id: 33 + duration: 55.074608ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1693,9 +1791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1703,22 +1801,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b12e941-f42f-45ba-84f3-14f69560c51d + - f9cb501f-f886-4092-9460-371801965bff status: 200 OK code: 200 - duration: 41.151478ms - - id: 34 + duration: 47.260205ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 343 + content_length: 347 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-hardcore-austin","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","root_volume"]}' + body: '{"name":"tf-srv-mystifying-herschel","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","root_volume"]}' form: {} headers: Content-Type: @@ -1733,22 +1831,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:17.654763+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:17 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1756,11 +1854,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 324420ac-3c95-4392-bd02-b686d5ea6d52 + - 824dae11-582e-4ddf-a340-97b1389d1996 status: 201 Created code: 201 - duration: 357.385998ms - - id: 35 + duration: 900.399449ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1776,7 +1874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -1784,20 +1882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:17.654763+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1805,11 +1903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84fc0f1e-d961-4623-ad19-51c79dfafedb + - c1f5d54d-3dff-4582-8bfd-2029b79946a9 status: 200 OK code: 200 - duration: 84.739388ms - - id: 36 + duration: 150.52802ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1825,7 +1923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -1833,20 +1931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2231 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.478977+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:17.654763+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1854,11 +1952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b63af5d-e037-4f59-b320-d300c8fc591a + - 1e327646-6754-4074-a4cc-3e80bce4631c status: 200 OK code: 200 - duration: 68.020408ms - - id: 37 + duration: 131.995722ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1876,7 +1974,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/action method: POST response: proto: HTTP/2.0 @@ -1886,7 +1984,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action","href_result":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","id":"b0552263-2fea-48e6-8907-1d62235016cb","progress":0,"started_at":"2025-10-08T23:05:14.959139+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6db3a871-55af-47b4-9ab0-8080e8328995/action","href_result":"/servers/6db3a871-55af-47b4-9ab0-8080e8328995","id":"fa0b8716-5dca-47d0-ad69-3f5385423908","progress":0,"started_at":"2025-10-15T15:05:18.360183+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1895,11 +1993,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:14 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b0552263-2fea-48e6-8907-1d62235016cb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fa0b8716-5dca-47d0-ad69-3f5385423908 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1907,11 +2005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bca1e39-89c7-4a0b-9181-9931870f12b6 + - 6f11c309-59b5-4cd7-802f-5a6f4ff7a022 status: 202 Accepted code: 202 - duration: 212.568513ms - - id: 38 + duration: 266.068599ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1927,7 +2025,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -1935,20 +2033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2241 + content_length: 2253 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:18.161502+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2241" + - "2253" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:15 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1956,11 +2054,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9019c8ff-cff0-4042-91d4-44f22a037b9c + - e5468068-753b-47e6-95a7-a0168f012e37 status: 200 OK code: 200 - duration: 92.04481ms - - id: 39 + duration: 125.910511ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1976,7 +2074,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -1984,20 +2082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2355 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:18.161502+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:20 GMT + - Wed, 15 Oct 2025 15:05:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2005,11 +2103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d51230c-ce90-4bc0-8b67-c3de1168f480 + - 8b115b01-27ab-4d10-88c1-0492e611466a status: 200 OK code: 200 - duration: 100.233196ms - - id: 40 + duration: 130.696931ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2025,7 +2123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2033,20 +2131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2343 + content_length: 2355 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:14.802967+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:18.161502+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2343" + - "2355" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:05:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2054,11 +2152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bb6f514-cfcb-4fea-abdf-e1035d47b9ef + - 8441478b-41b1-4017-9cf0-3bcb816f5786 status: 200 OK code: 200 - duration: 87.477385ms - - id: 41 + duration: 124.058297ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2074,7 +2172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2082,20 +2180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2103,11 +2201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a3e0bbf-bd7e-48ad-8d1b-38e76b2eacae + - 42b96d31-1f54-4dd8-9e6e-bebbf3259fd0 status: 200 OK code: 200 - duration: 90.45574ms - - id: 42 + duration: 139.226034ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2123,7 +2221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2131,20 +2229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2152,11 +2250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08bab01d-9f3a-4738-9cdc-3883fc683da9 + - b63badb9-0a5d-486a-b970-315107dda4bd status: 200 OK code: 200 - duration: 87.854652ms - - id: 43 + duration: 116.625334ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2172,7 +2270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c method: GET response: proto: HTTP/2.0 @@ -2180,20 +2278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 526 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2201,11 +2299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95bee1c5-fea9-4f6f-8319-74d4030e0ca1 + - b5783403-ad95-4880-9a58-1a3510368944 status: 200 OK code: 200 - duration: 66.812957ms - - id: 44 + duration: 103.002549ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2221,7 +2319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/user_data method: GET response: proto: HTTP/2.0 @@ -2240,9 +2338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2250,11 +2348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 634c48be-902b-48e0-8589-e4d6b6209f8d + - eb5ccbbb-ee6f-45a9-a1f6-aac4c4b8b408 status: 200 OK code: 200 - duration: 53.982611ms - - id: 45 + duration: 106.231444ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2270,7 +2368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/private_nics method: GET response: proto: HTTP/2.0 @@ -2289,11 +2387,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2301,13 +2399,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65e4d2ba-bd28-46e8-8241-5b8f0a3de186 + - 992d2c85-ca2d-431a-9d51-0f268150a12f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.82852ms - - id: 46 + duration: 111.490396ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2323,7 +2421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2331,20 +2429,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:30 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2352,11 +2450,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3f9b764-3f0f-455b-87bb-9785d679be31 + - e11fd07f-20bf-45e9-8416-1ef5a495e2e1 status: 200 OK code: 200 - duration: 94.967998ms - - id: 47 + duration: 138.328482ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2372,7 +2470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2380,20 +2478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2401,11 +2499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 230905a3-e395-4192-9952-98a4a6d6791c + - 06f5b609-af67-4abd-b9f4-afd7fa936c83 status: 200 OK code: 200 - duration: 93.001164ms - - id: 48 + duration: 133.699281ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2421,7 +2519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c method: GET response: proto: HTTP/2.0 @@ -2429,20 +2527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 522 + content_length: 526 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "522" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2450,11 +2548,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44e13ad1-d1f0-4e9b-a7aa-7c7ced652f9f + - dc5d695c-3a6c-4782-9630-f761f7065d0c status: 200 OK code: 200 - duration: 50.000646ms - - id: 49 + duration: 99.357915ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2470,7 +2568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/user_data method: GET response: proto: HTTP/2.0 @@ -2489,9 +2587,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2499,11 +2597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 580071cd-c549-4df0-8a3a-65431410ab11 + - 55f40fa2-77c2-468e-abaa-9d287e6eb006 status: 200 OK code: 200 - duration: 49.290982ms - - id: 50 + duration: 94.451275ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2519,7 +2617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/private_nics method: GET response: proto: HTTP/2.0 @@ -2538,11 +2636,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2550,13 +2648,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b34c4f1-3afd-4936-b25f-97b3e1dc7437 + - d43c006e-80fa-469e-aa93-48449e8136ca X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.58538ms - - id: 51 + duration: 109.816478ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2572,7 +2670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2580,20 +2678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2374 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:27.589634+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2374" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2601,11 +2699,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96fe00b5-5b47-4713-afcd-f1cc4ac0f7c2 + - c47d575e-8afc-4963-93be-9bba881d5989 status: 200 OK code: 200 - duration: 109.010959ms - - id: 52 + duration: 145.543803ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2386 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:30.213531+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2386" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:35 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7b26d03-8151-4536-b49d-9b6ffa43d741 + status: 200 OK + code: 200 + duration: 136.807311ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2623,7 +2770,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995/action method: POST response: proto: HTTP/2.0 @@ -2633,7 +2780,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd/action","href_result":"/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","id":"964ce0fe-0462-4d0d-909c-0f97de9fe135","progress":0,"started_at":"2025-10-08T23:05:31.645268+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/6db3a871-55af-47b4-9ab0-8080e8328995/action","href_result":"/servers/6db3a871-55af-47b4-9ab0-8080e8328995","id":"9dc72a36-c674-439d-9752-2fb5042d7e9c","progress":0,"started_at":"2025-10-15T15:05:35.909961+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2642,11 +2789,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:35 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/964ce0fe-0462-4d0d-909c-0f97de9fe135 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9dc72a36-c674-439d-9752-2fb5042d7e9c Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2654,11 +2801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb97370d-68c6-4d9b-811a-534f68af1f1d + - 42cf93fa-d884-4356-9bce-054b0877a328 status: 202 Accepted code: 202 - duration: 210.352021ms - - id: 53 + duration: 297.047693ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2674,7 +2821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2682,20 +2829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2337 + content_length: 2349 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:14.478977+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-hardcore-austin","id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"701","node_id":"1","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:9f","maintenances":[],"modification_date":"2025-10-08T23:05:31.492279+00:00","name":"tf-srv-hardcore-austin","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:14.478977+00:00","export_uri":null,"id":"d5810871-f493-42c7-a51f-5cc907635034","modification_date":"2025-10-08T23:05:14.478977+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","name":"tf-srv-hardcore-austin"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:05:17.654763+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-mystifying-herschel","id":"6db3a871-55af-47b4-9ab0-8080e8328995","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"6","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:91","maintenances":[],"modification_date":"2025-10-15T15:05:35.666677+00:00","name":"tf-srv-mystifying-herschel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","root_volume"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:05:17.654763+00:00","export_uri":null,"id":"194924db-da64-45eb-87db-0654dafde03c","modification_date":"2025-10-15T15:05:17.654763+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6db3a871-55af-47b4-9ab0-8080e8328995","name":"tf-srv-mystifying-herschel"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2337" + - "2349" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2703,11 +2850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 866cda88-a021-491d-ae2e-eaaffa8cf71d + - e50a0956-7139-4220-92bc-663607a05c58 status: 200 OK code: 200 - duration: 121.527072ms - - id: 54 + duration: 150.23438ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2723,7 +2870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2733,7 +2880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6db3a871-55af-47b4-9ab0-8080e8328995","type":"not_found"}' headers: Content-Length: - "143" @@ -2742,9 +2889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2752,11 +2899,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfc40ce5-73f9-49d6-a2d0-c1ef948b01e1 + - 71524929-2605-4bf3-b0a4-4cf7771324b5 status: 404 Not Found code: 404 - duration: 49.424146ms - - id: 55 + duration: 46.106902ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2772,7 +2919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c method: GET response: proto: HTTP/2.0 @@ -2782,7 +2929,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d5810871-f493-42c7-a51f-5cc907635034","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"194924db-da64-45eb-87db-0654dafde03c","type":"not_found"}' headers: Content-Length: - "143" @@ -2791,9 +2938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2801,11 +2948,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 787e7337-735d-4715-9daa-d8b8b7250256 + - 91d3b550-ba75-4d18-b427-f4f03ca52f87 status: 404 Not Found code: 404 - duration: 27.709194ms - - id: 56 + duration: 27.218512ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2821,7 +2968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d5810871-f493-42c7-a51f-5cc907635034 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/194924db-da64-45eb-87db-0654dafde03c method: GET response: proto: HTTP/2.0 @@ -2831,7 +2978,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"d5810871-f493-42c7-a51f-5cc907635034","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"194924db-da64-45eb-87db-0654dafde03c","type":"not_found"}' headers: Content-Length: - "127" @@ -2840,9 +2987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2850,11 +2997,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64bc9e11-2f32-4a01-bb6d-6320e2dcbb77 + - f06eb220-af0d-4c74-aeff-6c6f2fc297dc status: 404 Not Found code: 404 - duration: 44.672104ms - - id: 57 + duration: 21.509757ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2870,7 +3017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c20b9bfc-1c11-4cb1-879d-b3465a89d0cd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6db3a871-55af-47b4-9ab0-8080e8328995 method: GET response: proto: HTTP/2.0 @@ -2880,7 +3027,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c20b9bfc-1c11-4cb1-879d-b3465a89d0cd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6db3a871-55af-47b4-9ab0-8080e8328995","type":"not_found"}' headers: Content-Length: - "143" @@ -2889,9 +3036,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:36 GMT + - Wed, 15 Oct 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2899,7 +3046,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a2822dd-9d36-4ae9-8fa7-8a5318a654b4 + - 366f7ed2-0a0b-40c1-9c17-ba05763da002 status: 404 Not Found code: 404 - duration: 54.828857ms + duration: 57.792976ms diff --git a/internal/services/instance/testdata/server-state1.cassette.yaml b/internal/services/instance/testdata/server-state1.cassette.yaml index 4b2c72de5..34c97e150 100644 --- a/internal/services/instance/testdata/server-state1.cassette.yaml +++ b/internal/services/instance/testdata/server-state1.cassette.yaml @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f356086-c971-4b47-a89f-bc7811e1e196 + - cee673be-909f-44cb-b45e-9159dd65fe6f status: 200 OK code: 200 - duration: 42.562828ms + duration: 57.493592ms - id: 1 request: proto: HTTP/1.1 @@ -74,22 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,12 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eecdd388-89cd-4fa7-aef8-fb145a96e954 + - 65e4927f-f10a-4269-b8aa-d17920a69f5a X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 74.750264ms + duration: 64.419837ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,24 +150,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5241058-b930-4589-878f-16536c240263 + - 2b2f012c-eab2-4724-81f5-ede1501c64d9 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 46.580901ms + duration: 54.391687ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 298 + content_length: 300 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-awesome-aryabhata","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","state"]}' + body: '{"name":"tf-srv-xenodochial-ptolemy","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","state"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:29.389157+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83bbe66a-4f32-4b11-9107-eb90e2bc8d81 + - d915f139-03c2-49af-8fe2-9eff33c9cb4f status: 201 Created code: 201 - duration: 357.900418ms + duration: 882.358089ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:29.389157+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bb0c82c-3859-4443-9589-b95557ab6ac4 + - 4a13f53f-8337-4de6-974d-a13dfcebbd05 status: 200 OK code: 200 - duration: 95.1855ms + duration: 130.391424ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:45.822321+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:29.389157+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ddc3b3b-be39-4a0f-91bf-866996f8e741 + - bd1f50db-bd84-4412-b74b-40d56e303758 status: 200 OK code: 200 - duration: 93.362442ms + duration: 140.851664ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"9a469ece-e6bd-4340-b18a-293a7c54e85d","progress":0,"started_at":"2025-10-08T23:04:46.371780+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"91662a78-9c3f-403d-8bd1-ece13fc00f31","progress":0,"started_at":"2025-10-15T15:04:30.120090+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9a469ece-e6bd-4340-b18a-293a7c54e85d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/91662a78-9c3f-403d-8bd1-ece13fc00f31 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14f17d2b-bcf6-4107-8ca4-6f9220e360b3 + - 45a79bb1-6d03-414d-98b5-dfee24cce9b9 status: 202 Accepted code: 202 - duration: 182.578504ms + duration: 240.751066ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2241 + content_length: 2247 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:29.930476+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2241" + - "2247" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02f1fbdf-5215-4bde-b4d0-d33a6ba96a7d + - 9a39685a-3d54-434e-bae4-5940e71f0a3b status: 200 OK code: 200 - duration: 78.67265ms + duration: 149.091392ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:29.930476+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7194102-6396-4421-9ccd-189369d1a64e + - b35faf0b-6f40-485c-855b-09273427a69c status: 200 OK code: 200 - duration: 106.909025ms + duration: 142.707891ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02cc39fc-697d-4eb8-9dbb-7bdaefde3297 + - 5da975b6-5191-41d0-937c-09096cb9add9 status: 200 OK code: 200 - duration: 97.274365ms + duration: 142.799678ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:04:46.238345+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:01 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb59dabb-d11e-4add-95e1-73b76254b52a + - 63746900-12bd-4c39-8c87-967b48f0be1d status: 200 OK code: 200 - duration: 104.141594ms + duration: 118.800866ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 526 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2376" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5be25a3-c925-4783-a1da-123a79463506 + - a853654f-7f2d-4db6-888a-f515f30d9454 status: 200 OK code: 200 - duration: 80.066254ms + duration: 102.690032ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -629,20 +629,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2376" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:06 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e6f74ed-8d41-4f91-ae8b-c44aabc8d873 + - 2a7f8779-27d7-46ac-b7a4-a4c5722d7ab7 status: 200 OK code: 200 - duration: 101.473199ms + duration: 98.675525ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -678,20 +678,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "524" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +701,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 781d420e-7866-460f-a5ee-824db94501ea + - 2e787d9d-b5d7-496c-9285-911042a98893 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 59.108443ms + duration: 93.157951ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -727,20 +731,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2381 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b08c9aa4-8d90-4613-8de5-d0eeab934f14 + - 4e536312-10bf-413f-88fa-d1a01afdcffa status: 200 OK code: 200 - duration: 51.505819ms + duration: 155.727637ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -776,22 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -799,12 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f424ccc5-7640-48c7-b300-9bcda87af39c - X-Total-Count: - - "0" + - 9b39f7a8-d156-4cef-a5d4-b8b47c85b808 status: 200 OK code: 200 - duration: 54.572038ms + duration: 54.105256ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2376" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e73d2cd-da49-46fe-bb9a-bf8fe3781995 + - 29536e83-e8ab-4a7c-aed1-bceb03923e77 status: 200 OK code: 200 - duration: 96.943036ms + duration: 50.697447ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -878,20 +878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 2381 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 652ea8f6-ff67-4b52-a75b-f75294f78ab5 + - 5430bd27-5801-4696-99a1-563262f64cb8 status: 200 OK code: 200 - duration: 43.480132ms + duration: 152.332412ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 526 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc646dde-bb36-40d1-92cb-d4a2777df327 + - f0882003-e881-4ee3-b834-18d6a7c7c639 status: 200 OK code: 200 - duration: 36.209304ms + duration: 103.994538ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2376" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c6e4ca9-6e53-4077-b771-0c953bef0042 + - beae9199-2494-4283-b3f0-dd598b4d7dd8 status: 200 OK code: 200 - duration: 100.790203ms + duration: 113.145064ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -1025,20 +1025,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "524" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:41 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a90cb77-0239-4b6b-b976-46b33ad44d18 + - 6ce33ccf-ea2f-4dff-9e0e-915e5ca3849a + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 62.44317ms + duration: 121.450103ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -1074,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "17" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1095,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c3cee57-1b38-4db7-bd0d-f0f00ce1ce9e + - 6582cf05-ec79-4c02-ae30-965a28a4e078 status: 200 OK code: 200 - duration: 58.334208ms + duration: 83.849621ms - id: 22 request: proto: HTTP/1.1 @@ -1115,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1123,22 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2381 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:07 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,12 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2be4f2b1-8ebb-42af-a554-a6be0cd54567 - X-Total-Count: - - "0" + - c037305e-08e8-4cf7-abdb-6588ff7b0af6 status: 200 OK code: 200 - duration: 62.518238ms + duration: 120.951971ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 526 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb1b968c-40b9-4ea8-9b04-01ab2ffd3f2a + - 7e241199-3bfe-4794-80de-805d63e62d75 status: 200 OK code: 200 - duration: 51.642271ms + duration: 100.491742ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -1225,20 +1225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2376" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb420a2d-b72e-4adb-8930-c1e77aa23390 + - de0dff19-2580-4af2-b599-1c5c26a843aa status: 200 OK code: 200 - duration: 89.768566ms + duration: 97.411226ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -1274,20 +1274,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 20 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "524" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:42 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1295,10 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58fdb824-40bd-45ad-a6ad-f0a419037301 + - ab9a131b-fb20-4e38-9db0-923978e48b5e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 52.452262ms + duration: 108.960429ms - id: 26 request: proto: HTTP/1.1 @@ -1315,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1323,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2381 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1344,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d514d99-eeb8-4124-b416-541d77dbfd84 + - b9e2b809-4646-45be-b8de-fbbe20715234 status: 200 OK code: 200 - duration: 53.470388ms + duration: 123.086983ms - id: 27 request: proto: HTTP/1.1 @@ -1364,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1372,22 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2381 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:40.315284+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,50 +1397,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83992f30-31cd-4923-bf96-89f64cdfd410 - X-Total-Count: - - "0" + - 0a72a531-e028-44dc-806f-26eabf1fc220 status: 200 OK code: 200 - duration: 61.059316ms + duration: 138.583095ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 26 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"stop_in_place"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"bb189287-2e41-4773-881e-dfb88541cb1d","progress":0,"started_at":"2025-10-15T15:04:43.214494+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2376" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:43 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb189287-2e41-4773-881e-dfb88541cb1d Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e68a49d-46d7-4d97-8cc0-a76d556a2e55 - status: 200 OK - code: 200 - duration: 89.188652ms + - 9dde49ea-8e9c-4899-a542-de094064b683 + status: 202 Accepted + code: 202 + duration: 241.223247ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1474,20 +1478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:03.798524+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2376" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,52 +1499,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce03555f-c474-45be-914d-2d351a91db9f + - a3776533-9dae-4cd3-b997-c93049acfdd0 status: 200 OK code: 200 - duration: 106.078819ms + duration: 132.328611ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 26 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"stop_in_place"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2350 uncompressed: false - body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"42997bf3-4bb0-4162-9afb-a8914ccb1dae","progress":0,"started_at":"2025-10-08T23:05:08.723619+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/42997bf3-4bb0-4162-9afb-a8914ccb1dae + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f96be82e-2275-40e1-9c34-98b1f03e46c2 - status: 202 Accepted - code: 202 - duration: 176.790935ms + - 989d08f6-fa86-4995-a1e2-b5aa7d8eeb6f + status: 200 OK + code: 200 + duration: 154.344142ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1576,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59288ad7-7ff2-417b-8297-3b71fc4f677f + - 89f3757d-ad1a-4691-9d9d-5e5fa95b7f54 status: 200 OK code: 200 - duration: 101.539331ms + duration: 126.854768ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:04:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b4deafc-993a-48fd-8e72-2f5d5f94979c + - 0a1d5c46-ed33-4901-ac08-ae26b08b169d status: 200 OK code: 200 - duration: 78.71551ms + duration: 124.64505ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1674,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:19 GMT + - Wed, 15 Oct 2025 15:05:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4eabd3d8-1ac3-4387-a7d7-33c1e5fa88c4 + - c4fee0f0-8563-49cc-85ab-0198d05b885f status: 200 OK code: 200 - duration: 89.085446ms + duration: 134.494842ms - id: 34 request: proto: HTTP/1.1 @@ -1715,7 +1715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1723,20 +1723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99c9db26-8c44-41ce-8ae6-92eb1d63fdcb + - 116ee9c4-9596-4e44-ade0-82c0b6e9ccf2 status: 200 OK code: 200 - duration: 111.557199ms + duration: 132.299752ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1772,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:04:43.041229+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:29 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bbdabc7-8bec-4061-9d5f-38fbe93d2cfa + - c9397d1e-324e-4454-8c97-99edf074fe65 status: 200 OK code: 200 - duration: 82.131802ms + duration: 139.932971ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1821,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:34 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 271e4f74-1cb4-4960-82bd-5924cc22ac57 + - 62310f46-0afa-4874-85aa-ca9e392da857 status: 200 OK code: 200 - duration: 108.309217ms + duration: 141.032517ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1870,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:39 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c50dc3e9-d147-4ad0-9126-478612e68aff + - 94a344ab-8d0a-41c2-9625-c7a7eadf4107 status: 200 OK code: 200 - duration: 89.779424ms + duration: 131.07159ms - id: 38 request: proto: HTTP/1.1 @@ -1911,7 +1911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -1919,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:44 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24f72f5e-a61a-4d86-a268-b6253e1e20ba + - 7ff36355-7519-407b-9ff4-3afd993723be status: 200 OK code: 200 - duration: 89.070049ms + duration: 136.004569ms - id: 39 request: proto: HTTP/1.1 @@ -1960,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -1968,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 526 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:08.591688+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:49 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10f866b7-c682-49da-bfa4-7feeab834700 + - 13cf28e8-c734-4f35-b8be-c1822551bb74 status: 200 OK code: 200 - duration: 91.610863ms + duration: 90.416619ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +2009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2381" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37bd6c4f-82e8-4c25-b03c-a768894d2f9e + - 37b43820-398c-46ac-bda0-41b0052fca66 status: 200 OK code: 200 - duration: 93.087376ms + duration: 110.841918ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +2058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2381" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:19 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2089,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63ca1839-4240-4139-8c76-dbc2ef8db35a + - 68eb2eb8-573f-4b9b-b9e7-d5eccc202fc3 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 94.593205ms + duration: 109.455107ms - id: 42 request: proto: HTTP/1.1 @@ -2107,7 +2111,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2115,20 +2119,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2381" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2140,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27b0b934-0b94-4af9-a48c-43a480ba2edb + - 234d2e09-99c8-4d99-84c0-26fa696ea37e status: 200 OK code: 200 - duration: 105.460713ms + duration: 133.835493ms - id: 43 request: proto: HTTP/1.1 @@ -2156,7 +2160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2164,20 +2168,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 423 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "524" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63420696-336d-453b-80e1-d37530c742d0 + - 4ce849f6-6e0c-4909-8070-3c1dc36f68eb status: 200 OK code: 200 - duration: 55.934701ms + duration: 57.682951ms - id: 44 request: proto: HTTP/1.1 @@ -2205,7 +2209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2213,20 +2217,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "17" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af3269a3-546d-4185-bcd0-f0b90283206a + - eacc82af-9879-4530-9582-953e06659582 status: 200 OK code: 200 - duration: 49.419023ms + duration: 57.188764ms - id: 45 request: proto: HTTP/1.1 @@ -2254,7 +2258,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2262,22 +2266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2386 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,12 +2287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff07cfd4-e263-4fa0-b035-1d1091a15ec6 - X-Total-Count: - - "0" + - 1b58a13a-fd94-4de6-a1f2-615f6e47a79b status: 200 OK code: 200 - duration: 48.827728ms + duration: 152.127963ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +2307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -2315,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 526 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2381" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c59b7a3e-eda9-43f2-8a7a-7270020b6d85 + - 913186e2-9121-40c9-a094-5b188f2dd2d2 status: 200 OK code: 200 - duration: 94.146298ms + duration: 140.41451ms - id: 47 request: proto: HTTP/1.1 @@ -2356,7 +2356,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -2364,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 17 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "423" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ea5d4c9-33ed-4c61-9f06-e26b15952b17 + - 136ae8ae-6e4a-4b25-abe9-7847e7fa1687 status: 200 OK code: 200 - duration: 52.845279ms + duration: 89.31833ms - id: 48 request: proto: HTTP/1.1 @@ -2405,7 +2405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -2413,20 +2413,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:20 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2436,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cac5b98c-fec9-4bf3-ac6e-5bf4c01783dd + - 0dd6712f-706f-4959-8a98-db89803c1be7 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 41.23235ms + duration: 90.652351ms - id: 49 request: proto: HTTP/1.1 @@ -2454,7 +2458,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2462,20 +2466,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "2381" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2487,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f0f7b3f-b22e-4ac1-bdf0-26fec7263369 + - fd8430ba-218f-4c65-8731-53253361fc37 status: 200 OK code: 200 - duration: 105.087421ms + duration: 50.554274ms - id: 50 request: proto: HTTP/1.1 @@ -2503,7 +2507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2511,20 +2515,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 2386 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "524" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 202d79ae-19ef-45ee-952d-d6e9d286c5df + - 31db2dfd-0c11-4154-8b42-dadc4c48efee status: 200 OK code: 200 - duration: 63.91914ms + duration: 131.350364ms - id: 51 request: proto: HTTP/1.1 @@ -2552,7 +2556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -2560,20 +2564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 526 uncompressed: false - body: '{"user_data":[]}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,10 +2585,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b1075af-b611-46b2-886b-f598a4d7b57d + - 469add70-fff4-48c1-8c38-c6b3a6e89b5f status: 200 OK code: 200 - duration: 60.03203ms + duration: 110.053561ms - id: 52 request: proto: HTTP/1.1 @@ -2601,7 +2605,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -2609,22 +2613,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2632,12 +2634,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44e72cec-0cde-4482-ad31-94f5bdb03fd2 - X-Total-Count: - - "0" + - 2da938ea-81ea-4d1c-8d18-442e55659e4f status: 200 OK code: 200 - duration: 69.001233ms + duration: 87.905201ms - id: 53 request: proto: HTTP/1.1 @@ -2654,7 +2654,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -2662,20 +2662,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:21 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2683,10 +2685,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af7259fc-9021-4e10-96cb-948c108cc75d + - ab6fde09-38d9-4f03-b78e-e671f74fa69e + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 44.425294ms + duration: 101.721447ms - id: 54 request: proto: HTTP/1.1 @@ -2703,7 +2707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2711,20 +2715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 2386 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2381" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2732,10 +2736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4976071-6b22-4f57-a092-c5d5aac7d599 + - bceb1192-5238-4da2-bb83-94b23090251d status: 200 OK code: 200 - duration: 89.025ms + duration: 143.413374ms - id: 55 request: proto: HTTP/1.1 @@ -2752,7 +2756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2760,20 +2764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 2386 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "524" + - "2386" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2781,48 +2785,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c38f5c9-0b6f-4135-ba17-f2b7dc9c1403 + - b1355bb0-3b0d-4cdb-bd72-0986688760ea status: 200 OK code: 200 - duration: 67.71478ms + duration: 130.544403ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 360 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"1e7d29c9-30ae-49fd-ab95-f304db3274cf","progress":0,"started_at":"2025-10-15T15:05:22.094767+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "360" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1e7d29c9-30ae-49fd-ab95-f304db3274cf Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2830,10 +2838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d26a2c59-9d17-4f9a-a1c7-aa3d8645e44b - status: 200 OK - code: 200 - duration: 54.119399ms + - 04d66ee4-0bc2-4460-8c3b-17b22678ee80 + status: 202 Accepted + code: 202 + duration: 211.160447ms - id: 57 request: proto: HTTP/1.1 @@ -2850,7 +2858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2858,22 +2866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2350 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:16.055294+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2881,12 +2887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9327984-2a7f-40b8-b518-90591b8cd1d4 - X-Total-Count: - - "0" + - e5ccf260-f00e-4a62-be0b-5c35e3c2d60b status: 200 OK code: 200 - duration: 59.99418ms + duration: 136.726286ms - id: 58 request: proto: HTTP/1.1 @@ -2903,7 +2907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -2913,7 +2917,7 @@ interactions: trailer: {} content_length: 2381 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:23.113575+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2381" @@ -2922,9 +2926,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2932,48 +2936,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94b039bc-de91-4c41-bc37-57aba0acd773 + - 9d213ed0-9bc3-4e7c-8cfa-556272170fe0 status: 200 OK code: 200 - duration: 83.549268ms + duration: 331.63888ms - id: 59 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2381 + content_length: 352 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"93ac3106-e3cc-42ff-8998-a25e184f05c3","progress":0,"started_at":"2025-10-15T15:05:27.805789+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2381" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT + - Wed, 15 Oct 2025 15:05:27 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93ac3106-e3cc-42ff-8998-a25e184f05c3 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2981,52 +2989,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcd408db-0a7c-40e4-9851-5187b684633a - status: 200 OK - code: 200 - duration: 93.741296ms + - b15a2c0f-9f55-49f7-8801-99a1d6ecd342 + status: 202 Accepted + code: 202 + duration: 237.68895ms - id: 60 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 360 + content_length: 2341 uncompressed: false - body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"6169caa2-ab8e-46b9-8dc4-ae026c3f36ac","progress":0,"started_at":"2025-10-08T23:05:56.904388+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "360" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:56 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6169caa2-ab8e-46b9-8dc4-ae026c3f36ac + - Wed, 15 Oct 2025 15:05:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 382b6f76-77f7-47b0-9fb2-5697a4b80054 - status: 202 Accepted - code: 202 - duration: 167.091994ms + - 5faa44f0-4ab7-4696-b0b2-953d9b3b6c50 + status: 200 OK + code: 200 + duration: 125.849255ms - id: 61 request: proto: HTTP/1.1 @@ -3054,7 +3058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3062,20 +3066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2345 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:51.851157+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2345" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:57 GMT + - Wed, 15 Oct 2025 15:05:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,10 +3087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96fffe2a-11a8-4e30-866b-f0a1b43518e3 + - 138cbf44-a126-4df2-8a0a-3a87dc670ac7 status: 200 OK code: 200 - duration: 97.051908ms + duration: 166.15439ms - id: 62 request: proto: HTTP/1.1 @@ -3103,7 +3107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3111,20 +3115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2376 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:05:58.063506+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2376" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,52 +3136,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 905aba22-f990-459c-b2ca-1cfe86661f38 + - 5e6486db-999f-4e28-b2cb-b1804613a02d status: 200 OK code: 200 - duration: 94.280822ms + duration: 161.315803ms - id: 63 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 2341 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"10f0e62d-c4e2-4563-b407-63a1279058f8","progress":0,"started_at":"2025-10-08T23:06:02.298769+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/10f0e62d-c4e2-4563-b407-63a1279058f8 + - Wed, 15 Oct 2025 15:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3185,10 +3185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a52bf936-fec3-4e85-8f25-b0b67fdbc255 - status: 202 Accepted - code: 202 - duration: 211.311581ms + - 70cdb257-b3bc-4e28-bebc-d08448641166 + status: 200 OK + code: 200 + duration: 138.688486ms - id: 64 request: proto: HTTP/1.1 @@ -3205,7 +3205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3213,20 +3213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:02 GMT + - Wed, 15 Oct 2025 15:05:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3234,10 +3234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a734d9b-352f-4af7-b8b4-f6310e27fee1 + - fc1de45d-ad74-4b63-a102-1daeb5e0f294 status: 200 OK code: 200 - duration: 84.84734ms + duration: 142.076375ms - id: 65 request: proto: HTTP/1.1 @@ -3254,7 +3254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3262,20 +3262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:07 GMT + - Wed, 15 Oct 2025 15:05:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,10 +3283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf5804e1-330d-4128-a823-f3b91f29b790 + - 10dca859-f355-483b-a4ba-e842d932fd2c status: 200 OK code: 200 - duration: 91.959351ms + duration: 138.23189ms - id: 66 request: proto: HTTP/1.1 @@ -3303,7 +3303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3311,20 +3311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:12 GMT + - Wed, 15 Oct 2025 15:05:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,10 +3332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53bf31e2-f4f9-4a93-b04c-40337ca0d674 + - 856cea13-2ff5-40bb-9f88-c7f7f8ce7c3b status: 200 OK code: 200 - duration: 102.458626ms + duration: 130.964916ms - id: 67 request: proto: HTTP/1.1 @@ -3352,7 +3352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3360,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2341 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"42","hypervisor_id":"802","node_id":"36","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:05:27.619700+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2341" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:17 GMT + - Wed, 15 Oct 2025 15:06:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,10 +3381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f065ca5-0ecb-4287-8e06-5c99f842ccb5 + - 69277f0d-17a3-4392-b4df-f381ab58831f status: 200 OK code: 200 - duration: 94.641154ms + duration: 121.416002ms - id: 68 request: proto: HTTP/1.1 @@ -3401,7 +3401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3409,20 +3409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:22 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,10 +3430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b951e78c-1979-417e-863e-30a972c9d3bc + - b0155f18-335a-487c-8e35-540dfb147683 status: 200 OK code: 200 - duration: 83.699518ms + duration: 157.875635ms - id: 69 request: proto: HTTP/1.1 @@ -3450,7 +3450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3458,20 +3458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:27 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,10 +3479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19a72571-5eea-48bf-8864-af124cbea819 + - 6494bf61-82ca-446f-8114-db705acda409 status: 200 OK code: 200 - duration: 102.025848ms + duration: 134.92879ms - id: 70 request: proto: HTTP/1.1 @@ -3499,7 +3499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3507,20 +3507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:32 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,10 +3528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccea8bef-732e-4977-a799-3bfaab9be98e + - 560d7346-03a0-43f0-9202-44b863d178cd status: 200 OK code: 200 - duration: 83.900517ms + duration: 146.209236ms - id: 71 request: proto: HTTP/1.1 @@ -3548,7 +3548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -3556,20 +3556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 526 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1902","node_id":"23","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:02.148716+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:38 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,10 +3577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dc09522-e949-4dea-8c0b-e36b68090d8c + - f36d936f-d4e6-4598-b47a-d15a954e3543 status: 200 OK code: 200 - duration: 100.417665ms + duration: 121.75852ms - id: 72 request: proto: HTTP/1.1 @@ -3597,7 +3597,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -3605,20 +3605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2219" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3626,10 +3626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2147e325-2aa1-4090-9f21-90bcb403f078 + - 46a5af24-d8a2-411c-89ec-dee7b3042215 status: 200 OK code: 200 - duration: 84.78985ms + duration: 100.740101ms - id: 73 request: proto: HTTP/1.1 @@ -3646,7 +3646,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -3654,20 +3654,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2219" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:09 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3675,10 +3677,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 844294f1-aaa6-44d6-aa79-998b54dd9936 + - 335d3839-e52c-4510-92e3-5bb9d5646653 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 90.704975ms + duration: 102.781711ms - id: 74 request: proto: HTTP/1.1 @@ -3695,7 +3699,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3703,20 +3707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3724,10 +3728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cdf2011-35c5-47fc-b5d7-931e69c992c7 + - 185b9fea-8629-429a-b5de-046300227ba2 status: 200 OK code: 200 - duration: 77.032935ms + duration: 126.063554ms - id: 75 request: proto: HTTP/1.1 @@ -3744,7 +3748,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3752,20 +3756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 423 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "524" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3773,10 +3777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5733c024-669f-4df5-8d56-1163a69aa99d + - 929d708f-7194-48cf-a560-38c953b8eef3 status: 200 OK code: 200 - duration: 54.466071ms + duration: 54.929808ms - id: 76 request: proto: HTTP/1.1 @@ -3793,7 +3797,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3801,20 +3805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "17" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3822,10 +3826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47a4448f-8bc2-4d19-be52-c74f8d400373 + - 4cf284aa-e678-40ce-9f47-236af27db8cc status: 200 OK code: 200 - duration: 48.874455ms + duration: 52.446159ms - id: 77 request: proto: HTTP/1.1 @@ -3842,7 +3846,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -3850,22 +3854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2225 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3873,12 +3875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef50abb-6594-4b23-b2cf-d8104d92d47f - X-Total-Count: - - "0" + - 5f88a55f-f472-4a4a-a6f6-7d524bb4acb2 status: 200 OK code: 200 - duration: 55.389531ms + duration: 134.319448ms - id: 78 request: proto: HTTP/1.1 @@ -3895,7 +3895,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -3903,20 +3903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 526 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3924,10 +3924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2f40b10-251e-42b5-a143-7b0b349cbe5b + - 412f2034-bd84-4aa2-af03-efed4f8df403 status: 200 OK code: 200 - duration: 88.976134ms + duration: 101.932989ms - id: 79 request: proto: HTTP/1.1 @@ -3944,7 +3944,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/user_data method: GET response: proto: HTTP/2.0 @@ -3952,20 +3952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 17 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "423" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3973,10 +3973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73b067b3-5190-4d95-9836-ec436d5133ca + - c4a0ba74-9687-4e35-a467-1063424fee66 status: 200 OK code: 200 - duration: 54.587446ms + duration: 96.526059ms - id: 80 request: proto: HTTP/1.1 @@ -3993,7 +3993,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/private_nics method: GET response: proto: HTTP/2.0 @@ -4001,20 +4001,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 20 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"private_nics":[]}' headers: Content-Length: - - "423" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:43 GMT + - Wed, 15 Oct 2025 15:06:10 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4022,10 +4024,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 065e77a1-ba19-4d4e-b2da-7cf91fcb6a84 + - c42c9da9-5911-4e71-a6dd-d8c65b6aa2e8 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 53.79637ms + duration: 110.346788ms - id: 81 request: proto: HTTP/1.1 @@ -4042,7 +4046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4050,20 +4054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2225 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:06:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4071,10 +4075,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac361b26-8b98-4116-85ba-41f776092d1e + - c82b2f9e-fed2-4219-9019-27fd05ec0e3a status: 200 OK code: 200 - duration: 85.015798ms + duration: 137.469386ms - id: 82 request: proto: HTTP/1.1 @@ -4091,7 +4095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4099,20 +4103,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 2225 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:04.752838+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "524" + - "2225" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:06:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4120,48 +4124,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74163845-b334-4e2c-8ae5-2a3ecc7176f7 + - a91ab7ec-7c39-4d83-8c0f-78cc0d4593d6 status: 200 OK code: 200 - duration: 52.155942ms + duration: 150.211604ms - id: 83 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/user_data - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 357 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"c0da2b09-0e22-4b92-8bc4-b8d41a102d06","progress":0,"started_at":"2025-10-15T15:06:11.358441+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:06:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c0da2b09-0e22-4b92-8bc4-b8d41a102d06 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4169,10 +4177,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ce23a57-0a98-4d2c-8183-918985e18058 - status: 200 OK - code: 200 - duration: 54.035553ms + - ff20ac5d-d11d-4d72-a54b-a0b3aa43903b + status: 202 Accepted + code: 202 + duration: 253.806781ms - id: 84 request: proto: HTTP/1.1 @@ -4189,7 +4197,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4197,22 +4205,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2247 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:11.161528+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2247" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:06:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4220,12 +4226,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1681eda1-2188-4675-af49-ab80018aca39 - X-Total-Count: - - "0" + - 3d40e1e5-ef55-4075-b122-fe069321e613 status: 200 OK code: 200 - duration: 47.675194ms + duration: 123.877886ms - id: 85 request: proto: HTTP/1.1 @@ -4242,7 +4246,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4250,20 +4254,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2219 + content_length: 2350 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:41.019535+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"501","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:11.161528+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2219" + - "2350" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:06:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,52 +4275,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a86ad0a-b582-4b0e-86c9-76d9cf8af5ad + - 07354113-d612-4987-b73b-f5311d6f0173 status: 200 OK code: 200 - duration: 101.732718ms + duration: 167.577568ms - id: 86 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2381 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"82eb910e-8176-4766-94c3-0893d6b674ba","progress":0,"started_at":"2025-10-08T23:06:44.681044+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"501","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:21.561743+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/82eb910e-8176-4766-94c3-0893d6b674ba + - Wed, 15 Oct 2025 15:06:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4324,48 +4324,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b1b9b3f-38df-428d-b9f6-44163aad2c7d - status: 202 Accepted - code: 202 - duration: 197.27973ms + - de0e4d53-3d35-4031-9aa3-13c5363d207e + status: 200 OK + code: 200 + duration: 129.923423ms - id: 87 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2241 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5/action","href_result":"/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5","id":"8a2567b6-16b2-4540-81ae-85889556bb75","progress":0,"started_at":"2025-10-15T15:06:22.072658+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2241" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:44 GMT + - Wed, 15 Oct 2025 15:06:22 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8a2567b6-16b2-4540-81ae-85889556bb75 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,10 +4377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e6841ed-1049-4d22-a253-a9a3de72b991 - status: 200 OK - code: 200 - duration: 92.774428ms + - 6d1649de-3e67-4cd8-87ad-a10b046ff393 + status: 202 Accepted + code: 202 + duration: 294.744348ms - id: 88 request: proto: HTTP/1.1 @@ -4393,7 +4397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4403,7 +4407,7 @@ interactions: trailer: {} content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"501","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:21.833519+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2344" @@ -4412,9 +4416,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:49 GMT + - Wed, 15 Oct 2025 15:06:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4422,10 +4426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 182c82d0-ba3e-4757-b687-ba715d664380 + - 8528d58f-bd03-4b0a-b175-47b806e3b4e1 status: 200 OK code: 200 - duration: 83.392721ms + duration: 162.367854ms - id: 89 request: proto: HTTP/1.1 @@ -4442,7 +4446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4452,7 +4456,7 @@ interactions: trailer: {} content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:44.526219+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"501","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:21.833519+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2344" @@ -4461,9 +4465,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:54 GMT + - Wed, 15 Oct 2025 15:06:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4471,10 +4475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4431f42-936d-4fdb-b96c-33212882f3ee + - e3aa3701-a91e-44f1-a28c-113566d5ac57 status: 200 OK code: 200 - duration: 90.454147ms + duration: 127.740504ms - id: 90 request: proto: HTTP/1.1 @@ -4491,7 +4495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4499,20 +4503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2375 + content_length: 2344 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:06:56.853361+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.389157+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-xenodochial-ptolemy","id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"49","hypervisor_id":"501","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:63","maintenances":[],"modification_date":"2025-10-15T15:06:21.833519+00:00","name":"tf-srv-xenodochial-ptolemy","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:29.389157+00:00","export_uri":null,"id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","modification_date":"2025-10-15T15:04:29.389157+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","name":"tf-srv-xenodochial-ptolemy"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2375" + - "2344" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:00 GMT + - Wed, 15 Oct 2025 15:06:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4520,113 +4524,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f26a8197-5dad-422b-aa74-b26ab6d7c592 + - 99905808-9bf1-465e-8e82-6f411e110c58 status: 200 OK code: 200 - duration: 82.387185ms + duration: 132.003944ms - id: 91 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 353 - uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab/action","href_result":"/servers/60f71793-9a90-4e1c-b854-6535ead22eab","id":"3a2ae975-4e7e-44b1-860a-7802522770ed","progress":0,"started_at":"2025-10-08T23:07:00.210353+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:07:00 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3a2ae975-4e7e-44b1-860a-7802522770ed - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 70169436-a641-4e52-b4d9-195705808cc0 - status: 202 Accepted - code: 202 - duration: 172.832853ms - - id: 92 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2338 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:45.822321+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-awesome-aryabhata","id":"60f71793-9a90-4e1c-b854-6535ead22eab","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"43","hypervisor_id":"103","node_id":"28","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:89","maintenances":[],"modification_date":"2025-10-08T23:07:00.077136+00:00","name":"tf-srv-awesome-aryabhata","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:45.822321+00:00","export_uri":null,"id":"5219332d-3299-4250-a4a0-2780c015a433","modification_date":"2025-10-08T23:04:45.822321+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"60f71793-9a90-4e1c-b854-6535ead22eab","name":"tf-srv-awesome-aryabhata"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2338" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:07:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 058bbcd6-c602-4251-961c-18ca875f6156 - status: 200 OK - code: 200 - duration: 93.246056ms - - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4642,7 +4544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4652,7 +4554,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"60f71793-9a90-4e1c-b854-6535ead22eab","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","type":"not_found"}' headers: Content-Length: - "143" @@ -4661,9 +4563,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:05 GMT + - Wed, 15 Oct 2025 15:06:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4671,11 +4573,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75b0a3f1-7bac-4d23-b0bb-42182901b684 + - ca450922-8e15-4314-b7ae-73fce0e4583f status: 404 Not Found code: 404 - duration: 44.294069ms - - id: 94 + duration: 43.728989ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4691,7 +4593,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -4701,7 +4603,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"5219332d-3299-4250-a4a0-2780c015a433","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","type":"not_found"}' headers: Content-Length: - "143" @@ -4710,9 +4612,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:05 GMT + - Wed, 15 Oct 2025 15:06:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4720,11 +4622,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2567f66-bf25-46ac-9dc4-ea7fe0e15164 + - 0244ee41-2d39-4507-96ee-dedb1b4b58a1 status: 404 Not Found code: 404 - duration: 28.754682ms - - id: 95 + duration: 25.606728ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4740,7 +4642,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/5219332d-3299-4250-a4a0-2780c015a433 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/54cdb175-02d2-4b7a-a3f0-0ac09c69d139 method: GET response: proto: HTTP/2.0 @@ -4750,7 +4652,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"5219332d-3299-4250-a4a0-2780c015a433","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"54cdb175-02d2-4b7a-a3f0-0ac09c69d139","type":"not_found"}' headers: Content-Length: - "127" @@ -4759,9 +4661,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:05 GMT + - Wed, 15 Oct 2025 15:06:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4769,11 +4671,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 646d6c39-a37e-47eb-accf-fece4027e78c + - d5fba13c-dde2-47f7-9c12-13588ecabb3c status: 404 Not Found code: 404 - duration: 23.675304ms - - id: 96 + duration: 18.703901ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4789,7 +4691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/60f71793-9a90-4e1c-b854-6535ead22eab + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6df292a4-9f2c-4097-9926-a5d5165a4ae5 method: GET response: proto: HTTP/2.0 @@ -4799,7 +4701,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"60f71793-9a90-4e1c-b854-6535ead22eab","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6df292a4-9f2c-4097-9926-a5d5165a4ae5","type":"not_found"}' headers: Content-Length: - "143" @@ -4808,9 +4710,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:07:05 GMT + - Wed, 15 Oct 2025 15:06:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4818,7 +4720,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fcc528b7-70ab-4275-be50-16a078b4bfbb + - 11e61dbc-6ee1-4d02-8693-91725db51c09 status: 404 Not Found code: 404 - duration: 46.624545ms + duration: 55.815389ms diff --git a/internal/services/instance/testdata/server-state2.cassette.yaml b/internal/services/instance/testdata/server-state2.cassette.yaml index 5f2ebe0f6..735249b70 100644 --- a/internal/services/instance/testdata/server-state2.cassette.yaml +++ b/internal/services/instance/testdata/server-state2.cassette.yaml @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdb77e4a-573e-44de-a1d9-ae92f5bb89b5 + - 4643a6a6-61d3-49a2-a296-f21605963ad8 status: 200 OK code: 200 - duration: 49.548328ms + duration: 39.70659ms - id: 1 request: proto: HTTP/1.1 @@ -74,22 +74,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,12 +97,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 428baece-4abb-475e-a1da-a93b78580c04 + - b2534d02-8d6c-44e8-a5e0-108aa091ca93 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 148.449222ms + duration: 36.401994ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:04:34 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,24 +150,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4139ffb-855f-40d8-8565-67dd6e90a072 + - 96444c8c-5283-4bff-b553-c2b63d8fc48d X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 55.391693ms + duration: 40.872435ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 295 + content_length: 296 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-dreamy-meitner","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","state"]}' + body: '{"name":"tf-srv-focused-haslett","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","state"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b3239b2-b80e-4b3a-a7fe-9536085f5fdf + - 6862a597-a2d8-43be-b705-3de4bb208954 status: 201 Created code: 201 - duration: 352.377658ms + duration: 858.710527ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b104960a-67cb-4a44-8163-caeb27494819 + - 77c55d9c-d0d5-4f69-be84-08d83f3d6fa0 status: 200 OK code: 200 - duration: 83.248057ms + duration: 154.853631ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8109c7ee-9d15-43bf-a8b8-50cd67ac4f28 + - e9e8c247-d5c2-412b-a2d9-c3e9ba2d2fb5 status: 200 OK code: 200 - duration: 101.635148ms + duration: 128.946712ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -331,20 +331,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69d7cb06-a00d-42d3-9637-b50c86e9aabd + - bb9145d8-3a18-44eb-9fe1-b6c1c24f7f6a status: 200 OK code: 200 - duration: 93.766792ms + duration: 134.706279ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -380,20 +380,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 522 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -401,10 +401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b75043-3f7a-4704-ab1c-b0dc1604c05b + - 70cf0b85-b66b-47de-9c0d-9aab6b1ab085 status: 200 OK code: 200 - duration: 48.113771ms + duration: 138.07763ms - id: 8 request: proto: HTTP/1.1 @@ -421,7 +421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data method: GET response: proto: HTTP/2.0 @@ -440,9 +440,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -450,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dcf77621-d981-4966-ac2a-c88ca4149f39 + - eaded50d-ef24-4479-a8fb-b19838d49d28 status: 200 OK code: 200 - duration: 51.933136ms + duration: 101.345827ms - id: 9 request: proto: HTTP/1.1 @@ -470,7 +470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics method: GET response: proto: HTTP/2.0 @@ -489,11 +489,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -501,12 +501,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7e6fa51-2811-4815-8fff-1b0d81bd9d2e + - 3345b293-b86a-46b6-812c-703863f9375e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.454043ms + duration: 98.946268ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb864937-8c18-48a8-ad49-041878ebef01 + - 713cf825-eaa8-47fa-a71f-8702f6d669cc status: 200 OK code: 200 - duration: 89.696873ms + duration: 147.307375ms - id: 11 request: proto: HTTP/1.1 @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6da3147e-1484-428c-be94-cef7a3ecd278 + - 50d433db-c99c-470f-879c-ef99930c609e status: 200 OK code: 200 - duration: 44.102159ms + duration: 37.849168ms - id: 12 request: proto: HTTP/1.1 @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1692f28-1292-408a-a317-f7a4ced4d095 + - 2922a80c-729f-4d8a-beb2-4354ad9a2a97 status: 200 OK code: 200 - duration: 47.407131ms + duration: 51.897895ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -678,20 +678,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f5c6ac9-e3bf-475a-acab-e1e51ac03e9b + - 5a98b3ce-0e93-4a59-ab1a-25d73b7d1df2 status: 200 OK code: 200 - duration: 85.857831ms + duration: 143.134391ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -727,20 +727,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 522 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -748,10 +748,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05f930d2-68c2-4829-8e20-1b4b2e2122c6 + - 98bf1fe6-22af-4957-b1f5-03c2f941c7ed status: 200 OK code: 200 - duration: 48.843462ms + duration: 85.001877ms - id: 15 request: proto: HTTP/1.1 @@ -768,7 +768,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data method: GET response: proto: HTTP/2.0 @@ -787,9 +787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -797,10 +797,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 632cdf52-61cb-461a-9ea6-bd363de42c39 + - 569150cd-aa09-446c-8776-cfe13df46788 status: 200 OK code: 200 - duration: 63.987526ms + duration: 111.26779ms - id: 16 request: proto: HTTP/1.1 @@ -817,7 +817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics method: GET response: proto: HTTP/2.0 @@ -836,11 +836,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -848,12 +848,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89ae66b4-897f-4f2b-98e2-b4215a318510 + - ae788139-62f4-41b7-917c-fbdbed3ec8fd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.465824ms + duration: 98.337789ms - id: 17 request: proto: HTTP/1.1 @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 447e7061-9a20-4590-9b11-fd6bae279d00 + - 9185c94f-dbcf-4c3e-8e72-a6ad55f495dc status: 200 OK code: 200 - duration: 56.407174ms + duration: 94.791842ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -927,20 +927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db3744ff-b316-49cb-a76d-b06c436416f5 + - ad9cf7e3-8c7d-40f2-887c-5f81e1f2a5f2 status: 200 OK code: 200 - duration: 86.00277ms + duration: 138.081579ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -976,20 +976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 522 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 600e4bba-2f2e-4c18-b40f-43d3bb05b41d + - 1fde2bc6-5d05-471b-a15d-6664c178e9fc status: 200 OK code: 200 - duration: 50.69934ms + duration: 104.544897ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data method: GET response: proto: HTTP/2.0 @@ -1036,9 +1036,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1046,10 +1046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5024a936-37d9-4a0d-892c-d9e93c179581 + - 0e89a937-f516-4316-85ad-a91bfb4dc704 status: 200 OK code: 200 - duration: 50.893981ms + duration: 122.857629ms - id: 21 request: proto: HTTP/1.1 @@ -1066,7 +1066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics method: GET response: proto: HTTP/2.0 @@ -1085,11 +1085,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,12 +1097,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71de3857-29b2-4a5a-a4d6-9d9dcfa0f725 + - 9a7117c4-b839-49da-b748-50081dc9779c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.573197ms + duration: 105.402113ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1127,20 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 317ffa0a-6273-4760-ad05-d956da43f771 + - bb36967b-9e69-4feb-8a13-286d5a8b3d43 status: 200 OK code: 200 - duration: 90.671598ms + duration: 117.805136ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1176,20 +1176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2210 + content_length: 2213 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:44.915821+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:35.021215+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2210" + - "2213" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5539787c-d920-477f-b4c4-d75b0031a718 + - b8ec9222-4e00-4ffa-a4e0-331f19f20dfe status: 200 OK code: 200 - duration: 91.539676ms + duration: 166.195126ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action method: POST response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"682ec0cb-6cd9-4cab-9eef-7a9410807b6f","progress":0,"started_at":"2025-10-08T23:04:47.536163+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action","href_result":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe","id":"5a8a8f23-dfb5-4596-a223-3edd322d99ac","progress":0,"started_at":"2025-10-15T15:04:38.255376+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1238,11 +1238,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/682ec0cb-6cd9-4cab-9eef-7a9410807b6f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5a8a8f23-dfb5-4596-a223-3edd322d99ac Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8db8eebf-77cb-48b1-a344-603556a89ab0 + - b7ecff6b-618f-433b-ba66-e1d11e800a58 status: 202 Accepted code: 202 - duration: 362.429083ms + duration: 277.886572ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1278,20 +1278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2232 + content_length: 2235 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:38.046223+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2232" + - "2235" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89be8956-9842-4701-a48e-0057ef480959 + - 43e4d486-5324-4a77-8bdc-c09589379b63 status: 200 OK code: 200 - duration: 89.089878ms + duration: 128.932659ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:38.046223+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90119ffc-18b0-4136-ba46-256658e73696 + - 3b2895bc-2bc0-4b4b-b2d9-af04a9527f8c status: 200 OK code: 200 - duration: 90.816975ms + duration: 151.411387ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:38.046223+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:57 GMT + - Wed, 15 Oct 2025 15:04:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b45a84d8-97b9-4432-b44e-a6eb9b8a3875 + - 333f91bd-8b57-41e9-af67-d28fe028a93b status: 200 OK code: 200 - duration: 85.530901ms + duration: 124.786605ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1425,20 +1425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:04:47.220924+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:52.476134+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:02 GMT + - Wed, 15 Oct 2025 15:04:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,48 +1446,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26174919-3892-440e-ad51-baadf1a98409 + - ec146ddc-8e35-4d90-9210-070a3fd33320 status: 200 OK code: 200 - duration: 87.193669ms + duration: 129.242244ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 26 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"stop_in_place"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2367 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:06.517394+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action","href_result":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe","id":"b519b699-7a61-4011-b26e-e2d1f7f30b28","progress":0,"started_at":"2025-10-15T15:04:54.044159+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2367" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:54 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b519b699-7a61-4011-b26e-e2d1f7f30b28 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1495,52 +1499,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9bd37af-e8e0-46df-9dae-70d32a249c39 - status: 200 OK - code: 200 - duration: 94.090793ms + - 88b34d0b-2ce8-45ed-8b5b-216e789c1f2a + status: 202 Accepted + code: 202 + duration: 239.230971ms - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 26 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"stop_in_place"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2339 uncompressed: false - body: '{"task":{"description":"server_stop_in_place","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"9e527b48-8a71-427f-91f6-ee0d4f7a6b01","progress":0,"started_at":"2025-10-08T23:05:08.174161+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e527b48-8a71-427f-91f6-ee0d4f7a6b01 + - Wed, 15 Oct 2025 15:04:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1548,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c6b152d-a1b4-4147-a70c-d28b3f4d07ae - status: 202 Accepted - code: 202 - duration: 188.09772ms + - 6e0e47aa-4879-4052-9085-dec78038a1d2 + status: 200 OK + code: 200 + duration: 117.489129ms - id: 31 request: proto: HTTP/1.1 @@ -1568,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1576,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1597,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7b28817-5dcd-4a70-81c5-bf9f2ca5617d + - 5b1586b2-0734-4788-a2af-41210fca9353 status: 200 OK code: 200 - duration: 89.12304ms + duration: 122.040838ms - id: 32 request: proto: HTTP/1.1 @@ -1617,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1625,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:13 GMT + - Wed, 15 Oct 2025 15:05:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1646,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b210e735-c979-4c80-a9e1-bbcda7758134 + - 20a63e5f-cd0d-45c5-a6dc-227903992b18 status: 200 OK code: 200 - duration: 85.285651ms + duration: 160.256737ms - id: 33 request: proto: HTTP/1.1 @@ -1666,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1674,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:18 GMT + - Wed, 15 Oct 2025 15:05:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1695,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce7c8b8f-fd80-4a71-8ff9-145d06e0e34e + - 3196b7ec-e1ad-43f0-9bba-7dba011c5ef7 status: 200 OK code: 200 - duration: 84.76822ms + duration: 125.685732ms - id: 34 request: proto: HTTP/1.1 @@ -1715,7 +1715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1723,20 +1723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:23 GMT + - Wed, 15 Oct 2025 15:05:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 457d3c89-03ff-4ed0-a672-f115f9c5f096 + - 00a85064-38a7-4cc8-ac0e-a97e05999f1a status: 200 OK code: 200 - duration: 81.062985ms + duration: 148.009845ms - id: 35 request: proto: HTTP/1.1 @@ -1764,7 +1764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1772,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:28 GMT + - Wed, 15 Oct 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fd9c54f-5f75-425a-aa68-e4e054e50c9b + - 0c92b94a-9926-4f63-a9b5-e136c45fb2dc status: 200 OK code: 200 - duration: 87.188659ms + duration: 143.214038ms - id: 36 request: proto: HTTP/1.1 @@ -1813,7 +1813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1821,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:04:53.855606+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:05:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d85af47-d7c6-4371-a868-ea07a6417c3f + - ca3929f1-564a-410a-8a4b-c9a5742d9d81 status: 200 OK code: 200 - duration: 89.519725ms + duration: 147.863332ms - id: 37 request: proto: HTTP/1.1 @@ -1862,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1870,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04d2bdfd-a8ba-4350-a337-92dd8ed08dfe + - ef8548c1-106b-41a1-92ff-10c6ad428083 status: 200 OK code: 200 - duration: 86.65085ms + duration: 156.266615ms - id: 38 request: proto: HTTP/1.1 @@ -1911,7 +1911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1919,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c07e396-0297-4748-bcf5-14a98fefa693 + - eeee5280-47ff-491f-b143-d210692cbfab status: 200 OK code: 200 - duration: 77.886083ms + duration: 140.29749ms - id: 39 request: proto: HTTP/1.1 @@ -1960,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -1968,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:08.036602+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"stopping in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d83d864-bb18-4bd6-b436-dd6869a1c518 + - 8cea0133-4a99-4af2-9470-c8f4513d0995 status: 200 OK code: 200 - duration: 93.904962ms + duration: 164.022269ms - id: 40 request: proto: HTTP/1.1 @@ -2009,7 +2009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -2017,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 522 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bee7dd3-0bde-4743-9977-961c39e23004 + - ad23584b-aa53-4d4a-9022-43360c56bca7 status: 200 OK code: 200 - duration: 85.944265ms + duration: 131.470218ms - id: 41 request: proto: HTTP/1.1 @@ -2058,7 +2058,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2372" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3efcf27-f3ab-439c-8eec-e53188d2b521 + - e892186f-bc11-4988-b85a-21b02a616c21 status: 200 OK code: 200 - duration: 89.643857ms + duration: 93.364203ms - id: 42 request: proto: HTTP/1.1 @@ -2107,7 +2107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics method: GET response: proto: HTTP/2.0 @@ -2115,20 +2115,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2372" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:30 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2138,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc059bd5-305a-44c0-b89e-f7ea29733857 + - 2db9a804-d41c-4f4e-a6de-3598f03b757d + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 86.013683ms + duration: 124.57078ms - id: 43 request: proto: HTTP/1.1 @@ -2156,7 +2160,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2164,20 +2168,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 2375 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07bde9c8-4b13-4a27-a9dd-54cb58ce9683 + - e8320611-ae19-446a-a8da-dbf7820aa24f status: 200 OK code: 200 - duration: 53.553581ms + duration: 118.482414ms - id: 44 request: proto: HTTP/1.1 @@ -2205,7 +2209,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2213,20 +2217,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 423 uncompressed: false - body: '{"user_data":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "17" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 918ad3cd-9dab-4000-9964-acea907bcf90 + - c6148eca-bd4d-461f-b7bf-21fc5d9796a7 status: 200 OK code: 200 - duration: 60.176409ms + duration: 55.763666ms - id: 45 request: proto: HTTP/1.1 @@ -2254,7 +2258,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -2262,22 +2266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 423 uncompressed: false - body: '{"private_nics":[]}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "20" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2285,12 +2287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c457c4b0-e023-43a1-b524-cfd637cf43a7 - X-Total-Count: - - "0" + - fa2b18d7-fd2d-4595-991b-80c05a53ebcf status: 200 OK code: 200 - duration: 55.912621ms + duration: 54.09625ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +2307,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2315,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 2375 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2372" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dbee1c9-032a-416f-bd07-2e357c31ce87 + - d5f92ed4-5202-40ac-8c23-619d0b76e6d2 status: 200 OK code: 200 - duration: 88.549861ms + duration: 123.510062ms - id: 47 request: proto: HTTP/1.1 @@ -2356,7 +2356,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -2364,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 522 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "423" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:54 GMT + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94b25958-41ba-4e95-8ff6-759032f449a3 + - eafc2141-6c51-44bb-9c40-4da9babae605 status: 200 OK code: 200 - duration: 136.490948ms + duration: 99.601861ms - id: 48 request: proto: HTTP/1.1 @@ -2405,7 +2405,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_local&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/user_data method: GET response: proto: HTTP/2.0 @@ -2413,20 +2413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 17 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","STARDUST1-S","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB"],"id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","label":"ubuntu_focal","type":"instance_local","zone":"fr-par-1"}],"total_count":1}' + body: '{"user_data":[]}' headers: Content-Length: - - "423" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3effa2e0-235b-423d-875d-1c8c09231562 + - 4e78daf9-c942-4fc9-ad47-3f97ac49b994 status: 200 OK code: 200 - duration: 48.845011ms + duration: 106.807512ms - id: 49 request: proto: HTTP/1.1 @@ -2454,7 +2454,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/private_nics method: GET response: proto: HTTP/2.0 @@ -2462,20 +2462,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2372 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2372" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:31 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2485,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3b5f968-0f38-4d13-bb99-da93bbd41bf3 + - aa588ad9-00d7-4e96-8247-afd82ac7ce10 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 94.793395ms + duration: 98.404265ms - id: 50 request: proto: HTTP/1.1 @@ -2503,7 +2507,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2511,20 +2515,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 521 + content_length: 2375 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "521" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2536,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36ffa76b-1d66-4531-a833-934e337c7de3 + - 1c2c821c-2ac6-42ca-b8f5-a0177ccb4978 status: 200 OK code: 200 - duration: 57.321101ms + duration: 134.439558ms - id: 51 request: proto: HTTP/1.1 @@ -2552,7 +2556,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2560,20 +2564,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2375 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2375" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,113 +2585,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4a53924-ccc3-46bc-883f-26edb03916cd + - c78fd3c6-d83a-48f6-882c-bac5d7df9516 status: 200 OK code: 200 - duration: 64.557662ms + duration: 136.348137ms - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:55 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52ff4c4c-e0c6-4be4-b851-2ea929de2473 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 49.829433ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2372 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","poweroff","terminate","reboot","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped in place","state_detail":"stopped in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2372" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 08 Oct 2025 23:05:55 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e9161294-4924-457b-a736-6ce8a3de72de - status: 200 OK - code: 200 - duration: 87.295818ms - - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2705,7 +2607,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action method: POST response: proto: HTTP/2.0 @@ -2715,7 +2617,7 @@ interactions: trailer: {} content_length: 360 uncompressed: false - body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"2a23dedb-441c-4308-8cbe-15698b9634e3","progress":0,"started_at":"2025-10-08T23:05:55.808703+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweron_in_place","href_from":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action","href_result":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe","id":"4a111633-7ee3-4a26-a86a-cb3499670271","progress":0,"started_at":"2025-10-15T15:05:32.473910+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "360" @@ -2724,11 +2626,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a23dedb-441c-4308-8cbe-15698b9634e3 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4a111633-7ee3-4a26-a86a-cb3499670271 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2736,11 +2638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44726aa9-7520-43c9-91b3-0c78a4b7b439 + - 9edd0aa6-2b38-4c3f-a628-208431014339 status: 202 Accepted code: 202 - duration: 169.135941ms - - id: 55 + duration: 251.762529ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2756,7 +2658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2764,20 +2666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2336 + content_length: 2339 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:51.243043+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:27.085145+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"starting in place","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2336" + - "2339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:55 GMT + - Wed, 15 Oct 2025 15:05:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2785,11 +2687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - add94e75-2f05-4c50-8511-a1974d104cab + - e2d80e8b-7e68-412b-bb74-d2afb7794613 status: 200 OK code: 200 - duration: 99.402171ms - - id: 56 + duration: 140.612112ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2805,7 +2707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2813,20 +2715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2367 + content_length: 2370 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:05:57.372142+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:34.029373+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2367" + - "2370" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2834,11 +2736,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d036d8e8-7dfb-460f-bbe5-70527424d50e + - fb631d8a-da1e-481b-8248-4dc40cad8db9 status: 200 OK code: 200 - duration: 100.213121ms - - id: 57 + duration: 140.177232ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2856,7 +2758,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action method: POST response: proto: HTTP/2.0 @@ -2866,7 +2768,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5/action","href_result":"/servers/f0c2591e-77dd-470f-8cb4-874510a351c5","id":"93a3aeb7-c3bd-4c52-9fff-33b8f58f0f50","progress":0,"started_at":"2025-10-08T23:06:01.203762+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe/action","href_result":"/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe","id":"e32fbf0a-4635-461a-9552-8b3b417e8322","progress":0,"started_at":"2025-10-15T15:05:38.027722+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2875,11 +2777,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:38 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93a3aeb7-c3bd-4c52-9fff-33b8f58f0f50 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e32fbf0a-4635-461a-9552-8b3b417e8322 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2887,11 +2789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5049c62a-4f86-4b22-8d82-7edae88aa710 + - a298128c-e0cb-4d5c-89bb-297920dd2928 status: 202 Accepted code: 202 - duration: 191.651468ms - - id: 58 + duration: 287.42836ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2907,7 +2809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2915,20 +2817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2330 + content_length: 2333 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:44.915821+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-dreamy-meitner","id":"f0c2591e-77dd-470f-8cb4-874510a351c5","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1202","node_id":"41","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:87","maintenances":[],"modification_date":"2025-10-08T23:06:01.058874+00:00","name":"tf-srv-dreamy-meitner","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:04:44.915821+00:00","export_uri":null,"id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","modification_date":"2025-10-08T23:04:44.915821+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"f0c2591e-77dd-470f-8cb4-874510a351c5","name":"tf-srv-dreamy-meitner"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:35.021215+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-focused-haslett","id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"36","hypervisor_id":"1401","node_id":"21","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:71","maintenances":[],"modification_date":"2025-10-15T15:05:37.814033+00:00","name":"tf-srv-focused-haslett","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","state"],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:04:35.021215+00:00","export_uri":null,"id":"4d5e6c25-d736-4260-847b-2a942ea20311","modification_date":"2025-10-15T15:04:35.021215+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","name":"tf-srv-focused-haslett"},"size":10000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2330" + - "2333" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:01 GMT + - Wed, 15 Oct 2025 15:05:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,11 +2838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e149199-605f-4c18-ae98-bd9f6c7f4215 + - 7cd9acab-f179-4be2-b5fb-aea685bf8738 status: 200 OK code: 200 - duration: 92.750469ms - - id: 59 + duration: 145.788906ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2956,7 +2858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -2966,7 +2868,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f0c2591e-77dd-470f-8cb4-874510a351c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","type":"not_found"}' headers: Content-Length: - "143" @@ -2975,9 +2877,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,11 +2887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20f77bdf-6681-4c2a-9552-4ba8cbba54ed + - e7811007-9865-4c99-8a96-c2a34a41d297 status: 404 Not Found code: 404 - duration: 41.710093ms - - id: 60 + duration: 49.849079ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3005,7 +2907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -3015,7 +2917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4d5e6c25-d736-4260-847b-2a942ea20311","type":"not_found"}' headers: Content-Length: - "143" @@ -3024,9 +2926,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,11 +2936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cd7b605-36f8-46b4-80a8-17fb1c265b15 + - f44d5d81-5ebd-4024-b88a-70915fee0884 status: 404 Not Found code: 404 - duration: 30.037384ms - - id: 61 + duration: 25.346381ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3054,7 +2956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6fec8109-b3bf-455a-9e0a-135820a39b2d + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4d5e6c25-d736-4260-847b-2a942ea20311 method: GET response: proto: HTTP/2.0 @@ -3064,7 +2966,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"6fec8109-b3bf-455a-9e0a-135820a39b2d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"4d5e6c25-d736-4260-847b-2a942ea20311","type":"not_found"}' headers: Content-Length: - "127" @@ -3073,9 +2975,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,11 +2985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 111baae7-6a83-4061-8d92-872b52950169 + - 45c9edf1-a2ca-4700-8ae7-9873b4e56758 status: 404 Not Found code: 404 - duration: 18.689937ms - - id: 62 + duration: 22.82867ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3103,7 +3005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f0c2591e-77dd-470f-8cb4-874510a351c5 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/8f209cbe-9353-49bb-8e21-1729dbc80bfe method: GET response: proto: HTTP/2.0 @@ -3113,7 +3015,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f0c2591e-77dd-470f-8cb4-874510a351c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"8f209cbe-9353-49bb-8e21-1729dbc80bfe","type":"not_found"}' headers: Content-Length: - "143" @@ -3122,9 +3024,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:06 GMT + - Wed, 15 Oct 2025 15:05:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,7 +3034,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1a49b4c-305f-488f-b309-52f57961f427 + - f449c1cb-fe45-4f5e-bb72-d69cdb24a3e3 status: 404 Not Found code: 404 - duration: 40.767447ms + duration: 49.025876ms diff --git a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml index 9cb96d18a..3a97c6e42 100644 --- a/internal/services/instance/testdata/server-user-data-basic.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-basic.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:24 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19f0181b-66a8-4400-a926-d16377c635a4 + - 4e012de5-bdf7-4a92-ac26-2a12da2b8854 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 77.453819ms + duration: 35.407779ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c292cb9-78f5-43d1-86f9-8c670ef81739 + - 42f05c81-3ca6-4ce5-8ab3-0b75fea1fdc7 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 121.522087ms + duration: 58.37226ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f9f0438-cef1-4421-8765-c6c5ed82d66b + - 8744afbb-2a08-41ea-8dfd-24cb286f60cb status: 200 OK code: 200 - duration: 52.079778ms + duration: 58.37805ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 232 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-goofy-panini","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-silly-perlman","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:29.592758+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1734" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bee1f9a0-3e4a-4c77-befb-451648eb0c4d + - f00e0e2d-ae41-43a5-a487-c62f89519ced status: 201 Created code: 201 - duration: 523.968112ms + duration: 2.6150789s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:29.592758+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1734" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07368c65-b424-40ed-b6aa-c2037194918d + - acf6440a-7d5c-40aa-a368-818d8203004e status: 200 OK code: 200 - duration: 112.593699ms + duration: 139.239303ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1734 + content_length: 1736 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.367613+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:29.592758+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1734" + - "1736" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76fee9d7-ca23-478d-b245-45a4e70ff972 + - 16c435c8-b9d5-4531-9201-abefdfaf0275 status: 200 OK code: 200 - duration: 98.308348ms + duration: 146.266578ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:29.711093Z","id":"4f374d37-766c-4b43-9a28-9e709fadf056","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:29.711093Z","id":"1c7dac38-0e14-422f-86d5-2e57cfb1537e","product_resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:29.711093Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:25 GMT + - Wed, 15 Oct 2025 15:04:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bbc476e-2b6c-43fe-9bf0-11d919f5de52 + - 06d2d3f5-a3b7-4ea8-9742-267cd969fb0c status: 200 OK code: 200 - duration: 57.825581ms + duration: 98.53838ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action","href_result":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","id":"f2918482-f7ca-4c80-9c96-2138272f8381","progress":0,"started_at":"2025-10-08T23:05:26.153741+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action","href_result":"/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","id":"da8ead4c-0acf-4541-aaa4-74fda2bef6a7","progress":0,"started_at":"2025-10-15T15:04:32.187587+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f2918482-f7ca-4c80-9c96-2138272f8381 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/da8ead4c-0acf-4541-aaa4-74fda2bef6a7 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e33fbe7a-f35a-449b-af9d-7269808e57e1 + - 441459ff-b3e1-4914-8dc5-df435a412133 status: 202 Accepted code: 202 - duration: 207.024013ms + duration: 247.587176ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1756 + content_length: 1758 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:25.990198+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:31.992528+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1756" + - "1758" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c276b11f-90a8-444c-a0ee-c9276fef1b17 + - 0bdf8b11-348c-4f4d-b41f-2773516d6830 status: 200 OK code: 200 - duration: 93.023198ms + duration: 131.250218ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6685e41d-d9bf-4e59-bda0-dc788910f619 + - bf69b90c-45f2-40b2-afcf-6556e708f19f status: 200 OK code: 200 - duration: 104.263235ms + duration: 199.992076ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1068477-897f-46ce-877c-f7cebbe26237 + - cc122380-95e3-40b7-a7c8-df99c4ff7498 status: 200 OK code: 200 - duration: 130.780733ms + duration: 163.648191ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eeebb98-2c8c-4ccf-97bb-7d25db291082 + - b3185651-67ed-4cea-bb28-4d5cf9105aa9 status: 404 Not Found code: 404 - duration: 30.666954ms + duration: 28.61721ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:29.711093Z","id":"4f374d37-766c-4b43-9a28-9e709fadf056","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:29.711093Z","id":"1c7dac38-0e14-422f-86d5-2e57cfb1537e","product_resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:29.711093Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09e4e1fd-3cdf-42fe-8581-51766391c56b + - 3dbe6a77-8f7e-4354-a908-ba1c0edd9f9c status: 200 OK code: 200 - duration: 48.262205ms + duration: 88.690062ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2942b866-10cd-4643-a7c5-09eea39037bf + - f7a1954f-5f46-4e46-a857-15083822eb59 status: 200 OK code: 200 - duration: 52.237269ms + duration: 93.319792ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36ddfbdd-21e8-4f7d-973c-85466d1fb890 + - ec68d87d-2446-47cb-8059-e4534cd2a276 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.243153ms + duration: 98.390368ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e57cd2f1-4831-4f97-99fa-e2e217123f54 + - f743af75-25bf-49e0-942e-622bdf7608c6 status: 200 OK code: 200 - duration: 128.048932ms + duration: 146.627863ms - id: 16 request: proto: HTTP/1.1 @@ -826,7 +826,7 @@ interactions: - text/plain User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -843,9 +843,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:05:31 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -853,10 +853,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6857eff0-ca19-489e-81ab-e9934bc18aa9 + - 792db622-4504-42c3-9e31-0e67c8fcfe57 status: 204 No Content code: 204 - duration: 74.298151ms + duration: 168.42107ms - id: 17 request: proto: HTTP/1.1 @@ -873,7 +873,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -881,20 +881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -902,10 +902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b379d84-04b7-437f-8c3b-bd9f2a33d459 + - 8d0b184d-4329-47ac-a284-c9a00e074b3d status: 200 OK code: 200 - duration: 100.908912ms + duration: 147.845075ms - id: 18 request: proto: HTTP/1.1 @@ -922,7 +922,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -944,9 +944,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -954,10 +954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6772680e-51f9-4477-bb5b-405bcd1d96f9 + - f599591d-6d13-4548-88fe-cca7085fdb29 status: 200 OK code: 200 - duration: 55.801109ms + duration: 109.308648ms - id: 19 request: proto: HTTP/1.1 @@ -974,7 +974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -982,20 +982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1003,10 +1003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ae18f13-aa01-489f-912b-0cb2be78de96 + - 5363798c-7bea-4e11-8852-80388ec7f156 status: 200 OK code: 200 - duration: 90.592112ms + duration: 172.334647ms - id: 20 request: proto: HTTP/1.1 @@ -1023,7 +1023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -1033,7 +1033,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' headers: Content-Length: - "143" @@ -1042,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 769198e4-59eb-4c3a-9a07-a343aefd0142 + - 45d3c20c-3242-434d-97f6-821c394ab1fc status: 404 Not Found code: 404 - duration: 26.266853ms + duration: 32.364887ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +1072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -1082,7 +1082,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:05:25.456665Z","id":"ed60b4f9-7710-454a-bf12-11fcfc350bf7","product_resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:25.456665Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:29.711093Z","id":"4f374d37-766c-4b43-9a28-9e709fadf056","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:29.711093Z","id":"1c7dac38-0e14-422f-86d5-2e57cfb1537e","product_resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:29.711093Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1091,9 +1091,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2ff49ad-b4f5-4dce-85da-ba4aa636c26e + - c50e8f45-f53f-4798-bdea-e1e1f7f38fda status: 200 OK code: 200 - duration: 44.014007ms + duration: 95.933414ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data method: GET response: proto: HTTP/2.0 @@ -1140,9 +1140,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9125dce-87ab-4570-995b-87ee7df6e739 + - acf1c0ed-c7da-49be-81d5-156a4a934e6b status: 200 OK code: 200 - duration: 48.549958ms + duration: 99.624273ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1192,9 +1192,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1202,10 +1202,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bacdceb9-4c2d-4d47-94f7-a7db008590f4 + - 9900f56c-5b1e-428a-8371-1835cf6faf45 status: 200 OK code: 200 - duration: 55.467271ms + duration: 95.743297ms - id: 24 request: proto: HTTP/1.1 @@ -1222,7 +1222,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/private_nics method: GET response: proto: HTTP/2.0 @@ -1241,11 +1241,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1253,12 +1253,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7634aacb-30c4-4ab8-99ba-db511d5a92dc + - 416c6907-c9e9-449d-aa94-2b6287783d1c X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.651528ms + duration: 113.747009ms - id: 25 request: proto: HTTP/1.1 @@ -1275,7 +1275,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -1283,20 +1283,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1304,10 +1304,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f55635ae-e5ac-4b51-aa69-fbe8b2c6bc4f + - 2d6b0ad3-6366-4043-acaf-96a6092e8ea7 status: 200 OK code: 200 - duration: 112.551126ms + duration: 138.282839ms - id: 26 request: proto: HTTP/1.1 @@ -1324,7 +1324,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1346,9 +1346,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1356,10 +1356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0053d62-cab4-4c11-8aa5-37411eb522da + - fdbe21cd-3a2d-4c6e-a613-617abe31c3b7 status: 200 OK code: 200 - duration: 60.904162ms + duration: 89.204939ms - id: 27 request: proto: HTTP/1.1 @@ -1376,7 +1376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/user_data/cloud-init method: DELETE response: proto: HTTP/2.0 @@ -1393,9 +1393,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,10 +1403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba7f6fc1-7d5f-4d01-9d1a-7a1fe915a296 + - 0f68ba25-e8ea-49d7-b019-5ee9b095b48d status: 204 No Content code: 204 - duration: 66.716347ms + duration: 137.36013ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -1431,20 +1431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1891 + content_length: 1892 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:28.797697+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1891" + - "1892" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,11 +1452,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91646985-e405-4b95-8b88-cedd02d7713a + - a4a4f3ec-7a38-4c9a-b461-e7660ce33b4c status: 200 OK code: 200 - duration: 118.650713ms + duration: 141.467521ms - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1892 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:36.168749+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1892" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e7401f43-bc42-454c-ad6b-b8ad0037c232 + status: 200 OK + code: 200 + duration: 159.396563ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1474,7 +1523,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action method: POST response: proto: HTTP/2.0 @@ -1484,7 +1533,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2/action","href_result":"/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","id":"0161fbe0-1b33-4949-8ab3-d836db6398f5","progress":0,"started_at":"2025-10-08T23:05:33.533769+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca/action","href_result":"/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","id":"d9241a33-de5a-4636-913c-f0d9c7358ade","progress":0,"started_at":"2025-10-15T15:04:40.642650+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1493,11 +1542,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0161fbe0-1b33-4949-8ab3-d836db6398f5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d9241a33-de5a-4636-913c-f0d9c7358ade Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1505,11 +1554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4da2e08d-172d-45b1-9f93-4a9798ec00da + - 64d69928-f0c0-4034-a25e-9276002b37f1 status: 202 Accepted code: 202 - duration: 174.804988ms - - id: 30 + duration: 325.286281ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1525,7 +1574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -1533,20 +1582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1854 + content_length: 1855 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:25.367613+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-goofy-panini","id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1702","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:a9","maintenances":[],"modification_date":"2025-10-08T23:05:33.407100+00:00","name":"tf-srv-goofy-panini","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:29.592758+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-silly-perlman","id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"34","hypervisor_id":"1502","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:69","maintenances":[],"modification_date":"2025-10-15T15:04:40.381269+00:00","name":"tf-srv-silly-perlman","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"4f374d37-766c-4b43-9a28-9e709fadf056","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1854" + - "1855" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:33 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1554,11 +1603,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c20c8297-28ea-4867-8b3b-f7990d3d88b7 + - 7380fa5a-25e4-47a5-bf06-3438174c16e8 status: 200 OK code: 200 - duration: 122.563231ms - - id: 31 + duration: 127.872283ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1574,7 +1623,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -1584,7 +1633,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","type":"not_found"}' headers: Content-Length: - "143" @@ -1593,9 +1642,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1603,11 +1652,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6234516-f926-430a-8aa7-af469740c3a8 + - 0b4b182c-984b-43d3-b14b-ca17ed7a20a1 status: 404 Not Found code: 404 - duration: 52.16882ms - - id: 32 + duration: 39.506798ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1623,7 +1672,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -1633,7 +1682,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"4f374d37-766c-4b43-9a28-9e709fadf056","type":"not_found"}' headers: Content-Length: - "143" @@ -1642,9 +1691,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1652,11 +1701,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 900980c8-4c9c-4572-9ca7-43a63a9f5125 + - 1b8f22a6-13a8-49d0-b3cd-d3678e5c655e status: 404 Not Found code: 404 - duration: 29.375491ms - - id: 33 + duration: 28.888742ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1672,7 +1721,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: GET response: proto: HTTP/2.0 @@ -1682,7 +1731,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:05:25.456665Z","id":"1d814614-14f6-49c1-86f7-60a2cf24b6c6","last_detached_at":"2025-10-08T23:05:34.797080Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:34.797080Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:29.711093Z","id":"4f374d37-766c-4b43-9a28-9e709fadf056","last_detached_at":"2025-10-15T15:04:42.188205Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:42.188205Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -1691,9 +1740,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1701,11 +1750,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed3d7e75-770e-4964-a850-cada53489735 + - d8d045f7-b7f2-4532-8e00-035d171db3bf status: 200 OK code: 200 - duration: 43.754795ms - - id: 34 + duration: 93.764592ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1721,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/1d814614-14f6-49c1-86f7-60a2cf24b6c6 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/4f374d37-766c-4b43-9a28-9e709fadf056 method: DELETE response: proto: HTTP/2.0 @@ -1738,9 +1787,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1748,11 +1797,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 361e9dcb-e051-4f9d-a9a8-b76cce3aba39 + - 475f74ff-1019-4a75-ae7f-637fb10f541b status: 204 No Content code: 204 - duration: 74.516073ms - - id: 35 + duration: 168.450465ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1768,7 +1817,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/55a9f14b-3a65-44c5-8bdb-fbc2d1884dca method: GET response: proto: HTTP/2.0 @@ -1778,7 +1827,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"03b1e9f9-f2e8-4fa2-90ab-ea19389d1ae2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"55a9f14b-3a65-44c5-8bdb-fbc2d1884dca","type":"not_found"}' headers: Content-Length: - "143" @@ -1787,9 +1836,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1797,7 +1846,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62f32a96-4eeb-4a7d-8651-e09724e54759 + - 8d5b7e92-df9d-4606-b058-8edaccca885e status: 404 Not Found code: 404 - duration: 47.828119ms + duration: 38.626298ms diff --git a/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml b/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml index e086cb6fe..3c370c717 100644 --- a/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-with-cloud-init-at-start.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 439410bf-7697-4cbd-8da9-2f447b8c7f6f + - 91a3ec34-9797-449d-8aeb-8b931ec77611 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.80025ms + duration: 58.346193ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b191a09-1ff9-4b18-84f3-fec65eec99c7 + - c1b4d246-ef2a-433a-8796-f94b31329142 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 47.987607ms + duration: 41.861429ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:04:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca7a9857-e908-4cff-a41c-53786f96573f + - 63e5f394-6275-4d2e-9630-5e4d4b7bcd60 status: 200 OK code: 200 - duration: 53.660707ms + duration: 44.827289ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 235 + content_length: 234 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-vigorous-beaver","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-charming-tesla","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1738 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:34.088923+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1740" + - "1738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bf2a613-7405-4646-927f-3c3e7103cd07 + - f3fe8e6b-33f9-48fa-9453-2f68f61a1703 status: 201 Created code: 201 - duration: 586.957862ms + duration: 2.018418067s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1738 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:34.088923+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1740" + - "1738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed348ff5-81fa-4164-8d21-059a6822d6f7 + - 86bad24f-bcab-4a0c-a21b-ba25469c2f85 status: 200 OK code: 200 - duration: 98.772466ms + duration: 129.342554ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1738 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:34.088923+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1740" + - "1738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 447f74c0-323f-4948-8454-ffe6e0c1e67a + - ca1a5b2a-d6a0-4210-bf0c-b37ada8e01c7 status: 200 OK code: 200 - duration: 94.865749ms + duration: 156.168226ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data method: GET response: proto: HTTP/2.0 @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,32 +352,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85329244-8c37-40e5-8a40-36e3f1c945bb + - f679519f-094d-499b-a8fb-17c52a69c9f0 status: 200 OK code: 200 - duration: 61.04194ms + duration: 122.874518ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 49 + content_length: 3 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: | - #cloud-config - apt_update: true - apt_upgrade: true + body: bar form: {} headers: Content-Type: - text/plain User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/foo method: PATCH response: proto: HTTP/2.0 @@ -394,9 +391,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -404,29 +401,32 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b394a2e-4481-474c-9888-192a4dcc3dd1 + - 54925592-3ff3-44b7-b12d-37fad2a3f1bf status: 204 No Content code: 204 - duration: 77.062158ms + duration: 135.174898ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 3 + content_length: 49 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: bar + body: | + #cloud-config + apt_update: true + apt_upgrade: true form: {} headers: Content-Type: - text/plain User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -443,9 +443,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -453,10 +453,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97c51cf9-279c-4260-9fca-e1fed57eaa1a + - 98fa4dab-fcf8-4bb4-806e-3862d79384b2 status: 204 No Content code: 204 - duration: 56.808118ms + duration: 127.362232ms - id: 9 request: proto: HTTP/1.1 @@ -473,7 +473,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -481,20 +481,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1740 + content_length: 1738 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:43.059580+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:34.088923+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1740" + - "1738" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -502,10 +502,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 100d8603-491c-4532-819b-02d1b701504d + - 6e93857d-38fa-47de-a478-d7a065f28052 status: 200 OK code: 200 - duration: 96.890299ms + duration: 153.296693ms - id: 10 request: proto: HTTP/1.1 @@ -522,7 +522,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -532,7 +532,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:34.232542Z","id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:34.232542Z","id":"24291e07-e8ed-47a5-8b10-209edccd80bd","product_resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:34.232542Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -541,9 +541,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -551,10 +551,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6756814-c157-4fbf-b2fc-1827844e9800 + - 3d4ea8b8-eb44-45b8-9ecb-8397ece1e25f status: 200 OK code: 200 - duration: 39.121032ms + duration: 87.572818ms - id: 11 request: proto: HTTP/1.1 @@ -573,7 +573,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action method: POST response: proto: HTTP/2.0 @@ -583,7 +583,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action","href_result":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","id":"f2bc8806-f03f-431e-b32d-be9bcb83b35e","progress":0,"started_at":"2025-10-08T23:04:44.157917+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action","href_result":"/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8","id":"36d39963-a076-47c8-97f1-e9723deae65f","progress":0,"started_at":"2025-10-15T15:04:36.542455+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -592,11 +592,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/f2bc8806-f03f-431e-b32d-be9bcb83b35e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/36d39963-a076-47c8-97f1-e9723deae65f Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -604,10 +604,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2cfd3d5-12ed-4516-ad52-cc6d750eda36 + - 5a0ca6d0-daac-478f-a55a-e1b3c29f3f8b status: 202 Accepted code: 202 - duration: 202.471929ms + duration: 267.305141ms - id: 12 request: proto: HTTP/1.1 @@ -624,7 +624,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -632,20 +632,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1762 + content_length: 1760 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:44.013611+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:36.328238+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1762" + - "1760" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:04:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -653,10 +653,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1045ea0-2412-4909-bfbe-80adf4e4cb31 + - e8daab9c-09cf-476c-ac0e-352e3ad6ec31 status: 200 OK code: 200 - duration: 95.780674ms + duration: 142.641988ms - id: 13 request: proto: HTTP/1.1 @@ -673,7 +673,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -681,20 +681,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1895 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1897" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -702,10 +702,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50c4b46e-10ce-45c8-bb2a-76caf61a6df3 + - 23708ee5-b7d0-45b5-991d-1d8fb047ad84 status: 200 OK code: 200 - duration: 95.577124ms + duration: 156.500345ms - id: 14 request: proto: HTTP/1.1 @@ -722,7 +722,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -730,20 +730,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1895 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1897" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -751,10 +751,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9441b9d-d71f-4ba1-8ac1-e50eef25c887 + - 04940aff-1fe0-4e1e-ba78-8168ea85a8aa status: 200 OK code: 200 - duration: 101.96095ms + duration: 188.199656ms - id: 15 request: proto: HTTP/1.1 @@ -771,7 +771,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -781,7 +781,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' headers: Content-Length: - "143" @@ -790,9 +790,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -800,10 +800,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fa2c5d0-31e7-468c-93cc-0095e1cd6fe8 + - a2f023de-786b-4d8f-8b8b-5d03e0da00c3 status: 404 Not Found code: 404 - duration: 29.071254ms + duration: 26.581314ms - id: 16 request: proto: HTTP/1.1 @@ -820,7 +820,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -830,7 +830,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:34.232542Z","id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:34.232542Z","id":"24291e07-e8ed-47a5-8b10-209edccd80bd","product_resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:34.232542Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -839,9 +839,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -849,10 +849,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f99f244-5887-4d7d-89d7-bf16ba533fbd + - 631d5624-1262-40f5-9a5f-0a2ee6444415 status: 200 OK code: 200 - duration: 40.903413ms + duration: 108.147235ms - id: 17 request: proto: HTTP/1.1 @@ -869,7 +869,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data method: GET response: proto: HTTP/2.0 @@ -888,9 +888,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -898,10 +898,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85044fa5-602f-46ef-a3c4-87e7d9711a2f + - 1feb112f-4df7-40ae-bff9-f808385e0da7 status: 200 OK code: 200 - duration: 59.165313ms + duration: 116.439481ms - id: 18 request: proto: HTTP/1.1 @@ -918,7 +918,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -940,9 +940,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,10 +950,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e58074d-ab04-4c65-ae71-38e4d5ee6175 + - ccc1097a-4d71-4c62-8311-30c25ac9d284 status: 200 OK code: 200 - duration: 61.870113ms + duration: 99.304115ms - id: 19 request: proto: HTTP/1.1 @@ -970,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/foo method: GET response: proto: HTTP/2.0 @@ -989,9 +989,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,10 +999,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb17211a-6e48-4328-b69b-d65faf752411 + - 5f5b1a96-8b2b-4515-8b8f-17e0467181d0 status: 200 OK code: 200 - duration: 57.312329ms + duration: 103.786098ms - id: 20 request: proto: HTTP/1.1 @@ -1019,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/private_nics method: GET response: proto: HTTP/2.0 @@ -1038,11 +1038,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:49 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,12 +1050,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4439730b-1524-47bf-804e-4ffdc03545fa + - e9481eb9-2e47-419c-97bd-1bcd56f97055 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 54.600927ms + duration: 109.343817ms - id: 21 request: proto: HTTP/1.1 @@ -1072,7 +1072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1080,20 +1080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1895 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1897" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93a99fab-3280-484b-ae1e-3f5ca857167c + - d6f08a53-1ba2-4a3d-9d88-4f904407ead9 status: 200 OK code: 200 - duration: 106.483317ms + duration: 159.065596ms - id: 22 request: proto: HTTP/1.1 @@ -1121,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1129,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1895 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1897" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57c476f0-be91-4478-b450-e087c4382943 + - 34515ef7-6950-4841-b433-0f5ce671091d status: 200 OK code: 200 - duration: 102.39865ms + duration: 141.083474ms - id: 23 request: proto: HTTP/1.1 @@ -1170,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -1180,7 +1180,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' headers: Content-Length: - "143" @@ -1189,9 +1189,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93ac47e6-fe95-4cb7-aa01-667f51c045fd + - f7a193e3-19ae-4aba-b25e-235e6a7d1901 status: 404 Not Found code: 404 - duration: 25.308824ms + duration: 30.035431ms - id: 24 request: proto: HTTP/1.1 @@ -1219,7 +1219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -1229,7 +1229,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:43.152644Z","id":"9fc6a076-7c9d-4ed7-aa5e-968b96f184e4","product_resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.152644Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:34.232542Z","id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:34.232542Z","id":"24291e07-e8ed-47a5-8b10-209edccd80bd","product_resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:34.232542Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1238,9 +1238,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1fbddc3-dd15-4079-ac0e-f1d1752f2a95 + - 4a9de9f8-0e85-476c-994b-1c93e972c6db status: 200 OK code: 200 - duration: 44.935191ms + duration: 89.775923ms - id: 25 request: proto: HTTP/1.1 @@ -1268,7 +1268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data method: GET response: proto: HTTP/2.0 @@ -1287,9 +1287,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7df0160-079a-433f-9d3c-8d62be8192ea + - bc636c17-4c16-4844-a0d4-3a74ded7b18c status: 200 OK code: 200 - duration: 56.871713ms + duration: 110.800419ms - id: 26 request: proto: HTTP/1.1 @@ -1317,7 +1317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1339,9 +1339,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1349,10 +1349,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d36f0921-b938-442b-9287-c8adb732f809 + - 943d6e47-6285-451e-9d91-28b218fdb9f8 status: 200 OK code: 200 - duration: 71.924007ms + duration: 115.528633ms - id: 27 request: proto: HTTP/1.1 @@ -1369,7 +1369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/user_data/foo + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/user_data/foo method: GET response: proto: HTTP/2.0 @@ -1388,9 +1388,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1398,10 +1398,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a7c06d7-992e-4863-a149-2935a93ba8b4 + - 08fdf630-0518-4d54-9758-3346a9bbf3e9 status: 200 OK code: 200 - duration: 52.682593ms + duration: 98.145975ms - id: 28 request: proto: HTTP/1.1 @@ -1418,7 +1418,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/private_nics method: GET response: proto: HTTP/2.0 @@ -1437,11 +1437,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:43 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1449,12 +1449,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c68964c6-19eb-4ded-8958-1fc5b1410eeb + - a69bb63d-5830-4ff4-96fc-71a11d77ae24 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 50.688018ms + duration: 95.559446ms - id: 29 request: proto: HTTP/1.1 @@ -1471,7 +1471,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1479,20 +1479,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1897 + content_length: 1895 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:46.692822+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1897" + - "1895" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1500,11 +1500,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6c1e3c1-112e-428c-9a8f-7deb3aea05c7 + - 4e198227-da2a-4d0f-ad11-953139f5ca53 status: 200 OK code: 200 - duration: 98.996769ms + duration: 137.029715ms - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1895 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:39.244370+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1895" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:44 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4b417918-770c-49fe-a049-e7872f9fc39d + status: 200 OK + code: 200 + duration: 145.133508ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1522,7 +1571,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action method: POST response: proto: HTTP/2.0 @@ -1532,7 +1581,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6/action","href_result":"/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","id":"6a435266-7db9-4728-85f7-ded36f8e959e","progress":0,"started_at":"2025-10-08T23:04:51.168204+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8/action","href_result":"/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8","id":"d0690a47-c3a5-4735-a32e-167f54c82cc9","progress":0,"started_at":"2025-10-15T15:04:44.714663+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1541,11 +1590,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/6a435266-7db9-4728-85f7-ded36f8e959e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d0690a47-c3a5-4735-a32e-167f54c82cc9 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1553,11 +1602,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cd598c7-1e47-4a21-958b-d3beb30f6705 + - a47adac0-a4dd-40d7-a8f0-3faeb19996c6 status: 202 Accepted code: 202 - duration: 159.421373ms - - id: 31 + duration: 593.517194ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1573,7 +1622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1581,20 +1630,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1860 + content_length: 1858 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:43.059580+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-vigorous-beaver","id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"1802","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:85","maintenances":[],"modification_date":"2025-10-08T23:04:51.045282+00:00","name":"tf-srv-vigorous-beaver","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"dee16775-d9dc-4b28-acc6-432978a946ce","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:04:34.088923+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-charming-tesla","id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"17","hypervisor_id":"1501","node_id":"30","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:73","maintenances":[],"modification_date":"2025-10-15T15:04:44.186005+00:00","name":"tf-srv-charming-tesla","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1860" + - "1858" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1602,11 +1651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5597215-d1de-49f3-8eb5-0c0a24738a32 + - 26376800-7b4c-4b8d-8e80-226f8959de4c status: 200 OK code: 200 - duration: 116.549263ms - - id: 32 + duration: 178.96159ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1622,7 +1671,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1632,7 +1681,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1641,9 +1690,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1651,11 +1700,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5df8fd-3ae7-4f0f-b255-9ff90a710a80 + - 165dfceb-579d-41c3-8c12-b3eb93343f23 status: 404 Not Found code: 404 - duration: 49.5404ms - - id: 33 + duration: 42.746594ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1671,7 +1720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -1681,7 +1730,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dee16775-d9dc-4b28-acc6-432978a946ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","type":"not_found"}' headers: Content-Length: - "143" @@ -1690,9 +1739,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1700,11 +1749,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b345a84-f0ce-4115-a529-52773831b209 + - aa628724-ab89-4252-a323-d88af38ba52f status: 404 Not Found code: 404 - duration: 24.265691ms - - id: 34 + duration: 32.271104ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1720,7 +1769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: GET response: proto: HTTP/2.0 @@ -1730,7 +1779,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:43.152644Z","id":"dee16775-d9dc-4b28-acc6-432978a946ce","last_detached_at":"2025-10-08T23:04:52.436115Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:52.436115Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:04:34.232542Z","id":"aa0b6a53-6109-4444-8de1-2049bd1e7d73","last_detached_at":"2025-10-15T15:04:46.154032Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:46.154032Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -1739,9 +1788,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1749,11 +1798,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97d8474a-a67b-48ef-9675-b695e78efd74 + - 7b560614-551e-4304-9ff6-8ee4e109acea status: 200 OK code: 200 - duration: 36.383058ms - - id: 35 + duration: 106.346826ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1769,7 +1818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/dee16775-d9dc-4b28-acc6-432978a946ce + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/aa0b6a53-6109-4444-8de1-2049bd1e7d73 method: DELETE response: proto: HTTP/2.0 @@ -1786,9 +1835,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1796,11 +1845,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 396abc07-e1a4-46d3-b07d-300006bdc8d8 + - cf276940-1219-494e-9cb1-98d60441c784 status: 204 No Content code: 204 - duration: 75.634809ms - - id: 36 + duration: 166.34795ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1816,7 +1865,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/1a099bee-bd98-482f-b0ca-b3a7d2b75cd6 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a5b46f68-bc58-4c76-9901-53b3b683e9e8 method: GET response: proto: HTTP/2.0 @@ -1826,7 +1875,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"1a099bee-bd98-482f-b0ca-b3a7d2b75cd6","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a5b46f68-bc58-4c76-9901-53b3b683e9e8","type":"not_found"}' headers: Content-Length: - "143" @@ -1835,9 +1884,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:56 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1845,7 +1894,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a61e87b6-deba-4f93-a8c5-ae32b87d1257 + - ffe625c9-e486-47e5-8d91-e04999f251e9 status: 404 Not Found code: 404 - duration: 302.95666ms + duration: 48.970803ms diff --git a/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml b/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml index 00c61cc82..1ae5afb11 100644 --- a/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml +++ b/internal/services/instance/testdata/server-user-data-without-cloud-init-at-start.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07b016b3-9659-48c4-8764-803f72cfbdfc + - 45168890-a520-448c-8f1e-1b82b5d5724f X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 57.791101ms + duration: 44.937147ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f65a92f6-edee-4be4-9d17-fe40569b4835 + - ea61961d-a659-4e82-bc6d-d2400cedb4d2 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 60.066036ms + duration: 44.307939ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eacb55ac-df2c-498e-83e7-2010fa009f37 + - 17bb8628-81d1-42b0-a7ac-94688bae44d7 status: 200 OK code: 200 - duration: 56.267589ms + duration: 60.176865ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 317 + content_length: 325 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-amazing-bassi","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false,"size":20000000000}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","user_data"]}' + body: '{"name":"tf-srv-condescending-vaughan","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false,"size":20000000000}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","user_data"]}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1793 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:02:59.898684+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1793" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e9e033f-2ddd-4cc8-a333-96b5e27ccd07 + - d9cadf39-f00d-4362-ada9-0357650e07f9 status: 201 Created code: 201 - duration: 523.512095ms + duration: 1.197671983s - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1793 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:02:59.898684+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1793" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9b6f713-5f77-4021-be95-0922e3ccd6cc + - d7fd56bd-e551-485a-b2d6-52b048124409 status: 200 OK code: 200 - duration: 93.472182ms + duration: 151.15499ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1793 + content_length: 1809 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.191550+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:02:59.898684+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1793" + - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fa45a24-d162-4920-a02d-68c857158eb5 + - dd4a2a2b-f0d7-43a9-88ff-502d2683678b status: 200 OK code: 200 - duration: 99.433777ms + duration: 167.343385ms - id: 6 request: proto: HTTP/1.1 @@ -323,7 +323,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -333,7 +333,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -342,9 +342,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,10 +352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d35c1bb7-03a4-4197-bcc2-862ccf111e64 + - 715109db-ee8d-4bbd-9db1-f74e726ed95d status: 200 OK code: 200 - duration: 34.542932ms + duration: 92.419165ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/action method: POST response: proto: HTTP/2.0 @@ -384,7 +384,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action","href_result":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","id":"419bce87-5401-41c6-901b-3bcca4a28cdd","progress":0,"started_at":"2025-10-08T23:04:32.935538+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/action","href_result":"/servers/4159ae83-90dd-4406-959d-3eea40afe3ea","id":"3b95848a-92be-4565-af03-f68c42f7efd1","progress":0,"started_at":"2025-10-15T15:03:01.114316+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -393,11 +393,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:32 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/419bce87-5401-41c6-901b-3bcca4a28cdd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/3b95848a-92be-4565-af03-f68c42f7efd1 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9c7f7f-8745-414c-8d2a-eab29610265b + - 28a606ac-f4fa-4a19-a45d-9d7680ccd2a6 status: 202 Accepted code: 202 - duration: 183.120762ms + duration: 262.50505ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1815 + content_length: 1831 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:32.797980+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:00.902555+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1815" + - "1831" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:33 GMT + - Wed, 15 Oct 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5eadee24-352d-4de8-b64a-2a1d59754ec4 + - d1fd34c0-7870-4e37-b1b3-4b937b8fcc46 status: 200 OK code: 200 - duration: 97.532554ms + duration: 158.13973ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 496ab7ad-487b-43f8-8fbc-273b29e22860 + - 04957738-54fd-4853-90aa-ad54cf7b3159 status: 200 OK code: 200 - duration: 98.825275ms + duration: 147.752653ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 666d201e-a1be-46df-ba38-19b936368874 + - 345ba416-c03c-4b83-b6ea-22fcd229cda5 status: 200 OK code: 200 - duration: 93.840682ms + duration: 159.265317ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -582,7 +582,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -591,9 +591,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91666f61-7360-466f-8a6e-6cacf500c2b0 + - 7c573593-e2dd-4a23-8a2f-2d1e5a7344f7 status: 404 Not Found code: 404 - duration: 31.018733ms + duration: 25.282318ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -631,7 +631,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -640,9 +640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,10 +650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a24b190c-b006-48cd-8704-d075bec78d84 + - 5ad0f1f3-5744-45ce-9a61-c4407f20771e status: 200 OK code: 200 - duration: 66.1966ms + duration: 88.769039ms - id: 13 request: proto: HTTP/1.1 @@ -670,7 +670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -689,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -699,10 +699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb5d6cb5-d113-464d-99e9-8c8c4c9a348a + - 765fa64f-cf59-4472-86d2-22269d5cded7 status: 200 OK code: 200 - duration: 74.338454ms + duration: 93.39621ms - id: 14 request: proto: HTTP/1.1 @@ -719,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics method: GET response: proto: HTTP/2.0 @@ -738,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -750,12 +750,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa0c601a-70e7-4759-a4be-e020335b0877 + - 1e1e309b-50a0-4685-9768-1b80c7bcf3f7 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 46.688582ms + duration: 115.540969ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -780,20 +780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb642719-1600-44f5-a2e2-1a8e9dd66b76 + - a35e124d-d7d7-40f4-b667-036364366888 status: 200 OK code: 200 - duration: 98.142141ms + duration: 136.108723ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -829,20 +829,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +850,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 910d9bda-d5ed-46ab-acaa-d351475bfd9a + - 3b6da647-867a-43a8-a014-354ed92c545d status: 200 OK code: 200 - duration: 120.118984ms + duration: 161.009176ms - id: 17 request: proto: HTTP/1.1 @@ -870,7 +870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -880,7 +880,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -889,9 +889,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86882909-e2c7-42cd-bb7a-587405e109d3 + - a42710ab-5698-4de5-9654-648ba857e2c9 status: 404 Not Found code: 404 - duration: 29.367033ms + duration: 23.059563ms - id: 18 request: proto: HTTP/1.1 @@ -919,7 +919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -929,7 +929,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -938,9 +938,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -948,10 +948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0da36c67-3cd6-4d0f-b855-6a47a7af0484 + - 7cc54bca-7a19-4cf0-8353-75cfc8e4756c status: 200 OK code: 200 - duration: 61.592121ms + duration: 963.738151ms - id: 19 request: proto: HTTP/1.1 @@ -968,7 +968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -987,9 +987,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -997,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1bdd6ef-9a2a-46cd-8490-dcb622aa3a3b + - dde10919-98a3-4dbf-8bbe-4883225c0fb0 status: 200 OK code: 200 - duration: 44.866847ms + duration: 124.805152ms - id: 20 request: proto: HTTP/1.1 @@ -1017,7 +1017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics method: GET response: proto: HTTP/2.0 @@ -1036,11 +1036,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,12 +1048,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c09bd822-f078-4cda-8ccd-88bef451cad4 + - 16663d8b-65ab-46ba-a70a-7fd9ab94cbcf X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.035833ms + duration: 111.96496ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1078,20 +1078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 415383ac-6eae-4769-912b-9b9765ecc614 + - 8fa023a0-882f-48f9-9681-038d5bc2be21 status: 200 OK code: 200 - duration: 116.057158ms + duration: 154.448975ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -1129,7 +1129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7036c8ad-b9ba-4bba-a2c9-48b1a95dac46 + - 999953fa-56f8-48b2-ad03-ed42c047aa15 status: 404 Not Found code: 404 - duration: 24.734482ms + duration: 41.832263ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -1178,7 +1178,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1187,9 +1187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1197,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee0c2b49-c20e-4efb-9b04-04f790539ff0 + - 050f003e-7789-4430-8562-206e21964627 status: 200 OK code: 200 - duration: 38.839481ms + duration: 85.735337ms - id: 24 request: proto: HTTP/1.1 @@ -1217,7 +1217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -1236,9 +1236,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1246,10 +1246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cca7e724-1d5a-4a1f-9748-0ed9ae3285b6 + - c78d9bb9-13b5-4b2e-82a2-788b5626429c status: 200 OK code: 200 - duration: 55.48674ms + duration: 107.288187ms - id: 25 request: proto: HTTP/1.1 @@ -1266,7 +1266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics method: GET response: proto: HTTP/2.0 @@ -1285,11 +1285,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,12 +1297,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0cd5fe04-ce5b-4eb6-812f-265bfd2f6585 + - 5649ec61-abe0-47bb-bab7-e78f0b995ddb X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.147517ms + duration: 100.344124ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1327,20 +1327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaafe333-9477-4543-b365-2094a9014ec4 + - 812e6cda-fe1d-4e0c-ac36-46f66c7558a8 status: 200 OK code: 200 - duration: 102.857676ms + duration: 136.074622ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1376,20 +1376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec7a285a-9ed3-4a00-a89c-2bc432690b1c + - 3ccbc15c-a636-43c0-843e-80f1219614fc status: 200 OK code: 200 - duration: 99.935082ms + duration: 145.626913ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c56de499-30ed-41ac-b76f-886a00872b89 + - 7bb6dbcf-b593-4285-bd9a-ea0cc8d1a221 status: 200 OK code: 200 - duration: 55.664699ms + duration: 89.170154ms - id: 29 request: proto: HTTP/1.1 @@ -1471,7 +1471,7 @@ interactions: - text/plain User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data/cloud-init method: PATCH response: proto: HTTP/2.0 @@ -1488,9 +1488,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1498,10 +1498,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d29410a9-3284-4300-b774-a27ced395c70 + - 463b1c77-a544-46c0-9146-fa2495dc8121 status: 204 No Content code: 204 - duration: 102.153721ms + duration: 119.558953ms - id: 30 request: proto: HTTP/1.1 @@ -1518,7 +1518,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1526,20 +1526,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1547,10 +1547,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 205397c3-45aa-42bf-b6b0-ecd3929bc21f + - 39d5dfb4-a8b0-42de-b035-633e2bc61f03 status: 200 OK code: 200 - duration: 98.203885ms + duration: 140.52854ms - id: 31 request: proto: HTTP/1.1 @@ -1567,7 +1567,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1575,20 +1575,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1596,10 +1596,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7861fc84-a64a-4164-9d96-a9b6a467117a + - 0c99a2a1-f75e-4b49-a52b-55482982e7b5 status: 200 OK code: 200 - duration: 87.45424ms + duration: 136.980552ms - id: 32 request: proto: HTTP/1.1 @@ -1616,7 +1616,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -1626,7 +1626,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -1635,9 +1635,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1645,10 +1645,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3910afb5-e2d7-4035-85cb-b08fad6ac887 + - 7474b9c6-82b6-4144-bf7f-97fa41a0a68f status: 404 Not Found code: 404 - duration: 30.625445ms + duration: 28.621206ms - id: 33 request: proto: HTTP/1.1 @@ -1665,7 +1665,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -1675,7 +1675,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1684,9 +1684,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1694,10 +1694,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42537354-e0aa-424c-8902-95ebf644164a + - 22ce53c3-b823-40a5-9b0d-6e6608cb2cfd status: 200 OK code: 200 - duration: 39.797605ms + duration: 98.87442ms - id: 34 request: proto: HTTP/1.1 @@ -1714,7 +1714,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -1733,9 +1733,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1743,10 +1743,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbbca08d-3e90-45f8-9e64-43514ff9dd09 + - 56c034a9-86cd-4da6-83ec-1d95f16d16f4 status: 200 OK code: 200 - duration: 56.672006ms + duration: 88.054043ms - id: 35 request: proto: HTTP/1.1 @@ -1763,7 +1763,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -1785,9 +1785,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c74b32cc-ce63-4490-8fe0-c26931e963f5 + - e0fe02ca-9b38-4c7f-be71-5921da9ab5e4 status: 200 OK code: 200 - duration: 46.975754ms + duration: 96.681811ms - id: 36 request: proto: HTTP/1.1 @@ -1815,7 +1815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics method: GET response: proto: HTTP/2.0 @@ -1834,11 +1834,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1846,12 +1846,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0312ed49-bef0-47ad-8e50-aadc80557908 + - 9056cb07-85c8-486d-9cb1-14888dba4369 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.249578ms + duration: 100.537176ms - id: 37 request: proto: HTTP/1.1 @@ -1868,7 +1868,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1876,20 +1876,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1897,10 +1897,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 714f0d7d-a8ca-4c38-9aa0-78df5f974817 + - ee982927-03c6-4ca0-b6d7-baaaecce036b status: 200 OK code: 200 - duration: 106.576725ms + duration: 141.320996ms - id: 38 request: proto: HTTP/1.1 @@ -1917,7 +1917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -1925,20 +1925,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1946,10 +1946,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56aaf411-fbb3-4638-b6cf-497870ff17d5 + - 5bcd641a-3829-4087-92f6-cee614378cc7 status: 200 OK code: 200 - duration: 103.841288ms + duration: 182.628176ms - id: 39 request: proto: HTTP/1.1 @@ -1966,7 +1966,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -1976,7 +1976,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -1985,9 +1985,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1995,10 +1995,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2976f539-145e-491b-a5db-4531efd7f0d7 + - 629af7a8-00dd-4534-af9c-aafc1ad4b623 status: 404 Not Found code: 404 - duration: 30.036503ms + duration: 27.906307ms - id: 40 request: proto: HTTP/1.1 @@ -2015,7 +2015,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -2025,7 +2025,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:32.269009Z","id":"d5f08963-08b8-44ee-b974-1e17578ceb1c","product_resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:32.269009Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:00.050968Z","id":"cee621fa-3fb1-4e3e-ad9f-b8a615073533","product_resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:00.050968Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2034,9 +2034,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2044,10 +2044,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b035f11-abd4-4466-a138-7e9998eaf0fe + - 131efeed-c4df-4342-8f63-e131e6813587 status: 200 OK code: 200 - duration: 52.379062ms + duration: 88.942529ms - id: 41 request: proto: HTTP/1.1 @@ -2064,7 +2064,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data method: GET response: proto: HTTP/2.0 @@ -2083,9 +2083,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2093,10 +2093,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8514b529-3738-4c58-b39c-8c80466a7828 + - 494c8a24-0505-4359-b848-472837fe1260 status: 200 OK code: 200 - duration: 53.292956ms + duration: 95.637034ms - id: 42 request: proto: HTTP/1.1 @@ -2113,7 +2113,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/user_data/cloud-init + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/user_data/cloud-init method: GET response: proto: HTTP/2.0 @@ -2135,9 +2135,9 @@ interactions: Content-Type: - text/plain Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2145,10 +2145,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7470bba8-5193-497e-ba2b-02106778e3ae + - b48a9584-635f-435e-aff9-28024a22e6fe status: 200 OK code: 200 - duration: 54.749815ms + duration: 131.231589ms - id: 43 request: proto: HTTP/1.1 @@ -2165,7 +2165,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/private_nics method: GET response: proto: HTTP/2.0 @@ -2184,11 +2184,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2196,12 +2196,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecec86f7-e169-4cb5-b832-187d7c0e9702 + - 6b5cd2b7-2705-4972-90bd-ee9dfe99058f X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.331016ms + duration: 103.976663ms - id: 44 request: proto: HTTP/1.1 @@ -2218,7 +2218,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -2226,20 +2226,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1949 + content_length: 1966 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:36.070582+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1949" + - "1966" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2247,11 +2247,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 104c8c06-2842-4d24-882e-fd809ba9f03b + - 4befef42-6d31-47ec-aa28-2b4f099d2c17 status: 200 OK code: 200 - duration: 104.261507ms + duration: 157.83815ms - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1966 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:03.999391+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1966" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4c0067d3-75e0-4adf-b5c4-041d7695885b + status: 200 OK + code: 200 + duration: 147.402515ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2269,7 +2318,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/action method: POST response: proto: HTTP/2.0 @@ -2279,7 +2328,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d/action","href_result":"/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","id":"b13e0de6-3dd9-48f4-a57b-fa4224af177c","progress":0,"started_at":"2025-10-08T23:04:42.205396+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/4159ae83-90dd-4406-959d-3eea40afe3ea/action","href_result":"/servers/4159ae83-90dd-4406-959d-3eea40afe3ea","id":"7be1d7d0-401c-4e5d-a7dd-cd1a2963b567","progress":0,"started_at":"2025-10-15T15:03:12.399877+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -2288,11 +2337,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b13e0de6-3dd9-48f4-a57b-fa4224af177c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7be1d7d0-401c-4e5d-a7dd-cd1a2963b567 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2300,11 +2349,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95f44942-12d2-4fcf-90f5-53f9e7e12d91 + - bb48cb26-5205-44ec-838e-a33d35d6952d status: 202 Accepted code: 202 - duration: 430.915356ms - - id: 46 + duration: 296.781924ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2320,7 +2369,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -2328,20 +2377,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1912 + content_length: 1929 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:32.191550+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-amazing-bassi","id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"54","hypervisor_id":"501","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:81","maintenances":[],"modification_date":"2025-10-08T23:04:41.817836+00:00","name":"tf-srv-amazing-bassi","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:02:59.898684+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-condescending-vaughan","id":"4159ae83-90dd-4406-959d-3eea40afe3ea","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"35","hypervisor_id":"1302","node_id":"25","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b6:fb","maintenances":[],"modification_date":"2025-10-15T15:03:12.167751+00:00","name":"tf-srv-condescending-vaughan","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","user_data"],"volumes":{"0":{"boot":false,"id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1912" + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2349,11 +2398,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c388ae23-f568-4024-a350-98220456af6c + - d9ded014-833e-4abd-ae44-f4500a57988c status: 200 OK code: 200 - duration: 105.065875ms - - id: 47 + duration: 156.405467ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2369,7 +2418,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -2379,7 +2428,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","type":"not_found"}' headers: Content-Length: - "143" @@ -2388,9 +2437,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2398,11 +2447,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9001c842-a0d5-46b2-94a7-b925c5d9696d + - e03f2d2d-494f-42cf-8322-8b69c7f8f372 status: 404 Not Found code: 404 - duration: 39.277822ms - - id: 48 + duration: 65.311598ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2418,7 +2467,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -2428,7 +2477,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","type":"not_found"}' headers: Content-Length: - "143" @@ -2437,9 +2486,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2447,11 +2496,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8684a59-2788-40de-bd45-164c08f4c63f + - 9935ad9c-6293-44ac-843d-41d2e2a280bc status: 404 Not Found code: 404 - duration: 31.649931ms - - id: 49 + duration: 23.900582ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2467,7 +2516,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: GET response: proto: HTTP/2.0 @@ -2477,7 +2526,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:32.269009Z","id":"8e5d2f61-ec2f-45fc-a930-a55cd240d474","last_detached_at":"2025-10-08T23:04:43.292005Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:43.292005Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:00.050968Z","id":"c5e19d6e-420d-4574-8918-3435e88dd5ff","last_detached_at":"2025-10-15T15:03:13.891673Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":20000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:13.891673Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -2486,9 +2535,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2496,11 +2545,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce16c7a0-9497-4765-adff-e8a6e4d8c8b0 + - bd14a24f-331d-41ca-9ad4-c775baabfff7 status: 200 OK code: 200 - duration: 54.688069ms - - id: 50 + duration: 87.701258ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2516,7 +2565,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8e5d2f61-ec2f-45fc-a930-a55cd240d474 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c5e19d6e-420d-4574-8918-3435e88dd5ff method: DELETE response: proto: HTTP/2.0 @@ -2533,9 +2582,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2543,11 +2592,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8191b3f0-986f-45fc-8fb5-b58864ed71fb + - 2319dca3-9030-413b-8556-a0c7ad3d5728 status: 204 No Content code: 204 - duration: 70.173104ms - - id: 51 + duration: 142.041255ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2563,7 +2612,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/c5cf1797-98b7-4cd4-80ca-a54d62e0d22d + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4159ae83-90dd-4406-959d-3eea40afe3ea method: GET response: proto: HTTP/2.0 @@ -2573,7 +2622,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"c5cf1797-98b7-4cd4-80ca-a54d62e0d22d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4159ae83-90dd-4406-959d-3eea40afe3ea","type":"not_found"}' headers: Content-Length: - "143" @@ -2582,9 +2631,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2592,7 +2641,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bead1fb-b7cc-41bf-be26-3902b1305ec6 + - 71b2a28c-0495-499b-9464-63d56835ee9b status: 404 Not Found code: 404 - duration: 43.755146ms + duration: 52.000122ms diff --git a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml index 8b40d4299..22eaa887a 100644 --- a/internal/services/instance/testdata/server-with-placement-group.cassette.yaml +++ b/internal/services/instance/testdata/server-with-placement-group.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 139 + content_length: 137 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pg-charming-snyder","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","policy_mode":"enforced","policy_type":"max_availability"}' + body: '{"name":"tf-pg-tender-jepsen","project":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_type":"max_availability"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 327 + content_length: 325 uncompressed: false - body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "327" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fe6037a-3791-45b7-8d42-3f720f4b72f2 + - 6d85f6ef-071f-4cdc-bf0a-10ed48b1589a status: 201 Created code: 201 - duration: 133.535074ms + duration: 240.577758ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 327 + content_length: 325 uncompressed: false - body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "327" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52071e66-4fe9-4a3d-8362-bac4eb7ad83d + - 62cca831-a572-43a6-bf0e-56de686edd31 status: 200 OK code: 200 - duration: 59.76572ms + duration: 109.004418ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f695b2b-9598-478e-b88b-a53621c7a3d3 + - 04379339-42a8-401a-9b8b-95fa3adf8676 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 43.757304ms + duration: 40.212892ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:28 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a367308-3458-4c5e-977c-7e225b7da35c + - 5dce7a82-eef8-472e-a8c5-e2ff0ac41840 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 45.211648ms + duration: 50.214217ms - id: 4 request: proto: HTTP/1.1 @@ -233,22 +233,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -256,12 +256,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4065589d-86f2-41f1-b99d-5a3ebd1ca0de + - cfc90ca0-75f1-40a5-9445-93d783aaf6e6 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 53.054928ms + duration: 50.688516ms - id: 5 request: proto: HTTP/1.1 @@ -286,22 +286,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -309,12 +309,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bd31cc7-bb38-4dce-93d3-204c28607e2d + - 40355bb6-866b-4dfa-85be-2b3949613c9b X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 59.173243ms + duration: 45.53662ms - id: 6 request: proto: HTTP/1.1 @@ -339,22 +339,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -362,12 +362,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dee020f0-6290-4c45-9f2f-b8eb2d74acd4 + - 31102301-0252-4451-a7a3-ca6e18b03861 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.868929ms + duration: 39.128298ms - id: 7 request: proto: HTTP/1.1 @@ -392,22 +392,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -415,12 +415,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93fb8de7-c4e8-4094-a1fe-5a838680f5ae + - 44e50e35-f4dd-43f0-ae77-4f93cba5aa0e X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 69.860602ms + duration: 43.148173ms - id: 8 request: proto: HTTP/1.1 @@ -456,9 +456,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -466,10 +466,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3dc715c0-b694-48a7-b583-967c492cafb3 + - a9435eff-78ef-439c-ac96-b29cc16ca529 status: 200 OK code: 200 - duration: 49.15853ms + duration: 34.506706ms - id: 9 request: proto: HTTP/1.1 @@ -505,9 +505,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -515,10 +515,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd4856b8-6807-4515-9ff4-8f0bc25a2350 + - 93be3fef-9851-4189-b683-137b2b01b0d9 status: 200 OK code: 200 - duration: 54.598117ms + duration: 45.449797ms - id: 10 request: proto: HTTP/1.1 @@ -554,9 +554,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -564,10 +564,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0527500-c6b7-402c-bbec-5f5a2a07d28f + - 983e26d0-fc49-41f5-9b62-d89b8ac6715b status: 200 OK code: 200 - duration: 67.245577ms + duration: 59.618033ms - id: 11 request: proto: HTTP/1.1 @@ -579,7 +579,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' + body: '{"name":"tf-tests-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b"}' form: {} headers: Content-Type: @@ -594,22 +594,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:45.336587+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -617,10 +617,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd4d3a32-6f3c-4607-99b7-8e11c3106323 + - ff7a9ff5-aac5-4d90-89f3-3a709cf27823 status: 201 Created code: 201 - duration: 515.764389ms + duration: 1.561037997s - id: 12 request: proto: HTTP/1.1 @@ -637,7 +637,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -645,20 +645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:45.336587+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -666,52 +666,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15df9c5b-43b2-416d-a153-97ed915084bf + - c7397c54-31b2-44e2-bfb2-df4291c7c1fb status: 200 OK code: 200 - duration: 106.654615ms + duration: 172.580653ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-2-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:45.336587+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -719,48 +715,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 109cae56-9afa-4cb5-a14b-60f5324bb264 - status: 201 Created - code: 201 - duration: 705.553437ms + - 482854de-b056-4c28-a09a-a733c0d47e76 + status: 200 OK + code: 200 + duration: 136.625391ms - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 383 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.282811+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:46.493450+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:46 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -768,10 +768,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b32e4d8-c8fa-4f09-9f70-17d0e0715bc4 - status: 200 OK - code: 200 - duration: 106.968787ms + - 82d456bd-f744-48b1-9a52-ca4e6f8784da + status: 201 Created + code: 201 + duration: 1.873598058s - id: 15 request: proto: HTTP/1.1 @@ -788,7 +788,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -796,20 +796,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:45.485885Z","id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.485885Z","id":"8d84b748-e685-43e9-95a6-998db2346b07","product_resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.485885Z","zone":"fr-par-1"}' headers: Content-Length: - - "2142" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -817,10 +817,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b011bd-e966-4725-afd7-45c25d045e57 + - 5a81d416-179b-4aa5-aa8c-d946fbc0c52f status: 200 OK code: 200 - duration: 88.831056ms + duration: 97.3681ms - id: 16 request: proto: HTTP/1.1 @@ -837,7 +837,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -845,20 +845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2140 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:46.493450+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -866,10 +866,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 450af152-c40b-438b-81c1-bfe765a9adab + - 11cc62ce-f924-49f8-8cc0-a5ab8359dda8 status: 200 OK code: 200 - duration: 46.172818ms + duration: 144.791227ms - id: 17 request: proto: HTTP/1.1 @@ -886,7 +886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -894,20 +894,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:29.603664+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:46.493450+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -915,29 +915,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66b6bf57-33a9-487a-97c4-7d10ac5f8664 + - e8fb8b86-2d7f-44e8-a3cf-6b4fdeb7c0f9 status: 200 OK code: 200 - duration: 105.860444ms + duration: 152.448799ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 383 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-server-1-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"b0f8e318-2299-4980-b645-1f90edc5dc71"}' + body: '{"action":"poweron"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action method: POST response: proto: HTTP/2.0 @@ -945,22 +945,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action","href_result":"/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af","id":"5d2f6624-899e-450b-bded-bcc3f6d5e7cc","progress":0,"started_at":"2025-10-15T15:03:47.036209+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/5d2f6624-899e-450b-bded-bcc3f6d5e7cc Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -968,48 +968,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84787122-6307-4b66-845a-afe86c1e761a - status: 201 Created - code: 201 - duration: 900.969489ms + - 9db18be1-c9cd-41ad-8299-1843570e114c + status: 202 Accepted + code: 202 + duration: 282.940545ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 383 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-server-0-with-placement-group","dynamic_ip_required":false,"commercial_type":"PLAY2-PICO","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","placement_group"],"placement_group":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2140 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:46.660699+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1017,10 +1021,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d3d1f78-172b-4fa3-b29f-0cc7725919d5 - status: 200 OK - code: 200 - duration: 47.207165ms + - af6a5b63-42e2-4045-a186-01fd7a643a23 + status: 201 Created + code: 201 + duration: 2.233036925s - id: 20 request: proto: HTTP/1.1 @@ -1037,7 +1041,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -1045,20 +1049,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:45.556206Z","id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.556206Z","id":"fa819b7e-28de-42aa-ba97-498f60a09513","product_resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.556206Z","zone":"fr-par-1"}' headers: Content-Length: - - "2142" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1066,10 +1070,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ecb9ab4-6f96-4ee4-8554-a9c4009d67f8 + - 9e21386a-0135-47d6-9bed-93b443164933 status: 200 OK code: 200 - duration: 105.008575ms + duration: 77.944765ms - id: 21 request: proto: HTTP/1.1 @@ -1086,7 +1090,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -1094,20 +1098,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2142 + content_length: 2140 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:29.762900+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:46.660699+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2142" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1115,52 +1119,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63772870-5869-4c23-9f6b-40bdcbb738db + - 7673bfc5-1819-4a2e-9046-247cb9b3fece status: 200 OK code: 200 - duration: 110.895121ms + duration: 141.851908ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2162 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/3486feb6-39cc-485c-9746-db487fed0c26/action","href_result":"/servers/3486feb6-39cc-485c-9746-db487fed0c26","id":"458885cc-a5b0-4d82-b5d4-a8ecb85a3d5d","progress":0,"started_at":"2025-10-08T23:04:30.247452+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:46.832396+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/458885cc-a5b0-4d82-b5d4-a8ecb85a3d5d + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1168,48 +1168,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56d67fa6-cf88-43fc-b5ca-c6f8518f9912 - status: 202 Accepted - code: 202 - duration: 212.939805ms + - 0e703369-88cb-4df6-b468-7933a53e6dfd + status: 200 OK + code: 200 + duration: 143.855795ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/action","href_result":"/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734","id":"7090c45e-26d3-4323-860d-49a5298a2823","progress":0,"started_at":"2025-10-15T15:03:47.347980+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7090c45e-26d3-4323-860d-49a5298a2823 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1217,52 +1221,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccc1e88c-b44e-4cbf-9740-f0cc253a1912 - status: 200 OK - code: 200 - duration: 44.472118ms + - 1b758c16-31dd-45fe-b217-1bfd1b49e9fb + status: 202 Accepted + code: 202 + duration: 284.673765ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 2140 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action","href_result":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71","id":"cf662c5b-aa81-44a5-918e-59ee0ec963fd","progress":0,"started_at":"2025-10-08T23:04:30.266717+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:46.660699+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "2140" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cf662c5b-aa81-44a5-918e-59ee0ec963fd + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1270,10 +1270,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d74cf796-a65f-4635-9670-c83b472529ba - status: 202 Accepted - code: 202 - duration: 384.262422ms + - 56a37aad-143a-499b-a8a5-6038ec6656ee + status: 200 OK + code: 200 + duration: 170.778236ms - id: 25 request: proto: HTTP/1.1 @@ -1290,7 +1290,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -1298,20 +1298,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 701 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-10-15T15:03:45.628001Z","id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.628001Z","id":"9a3c05d2-0bc2-44b5-9de5-1bd5d4685800","product_resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.628001Z","zone":"fr-par-1"}' headers: Content-Length: - - "2164" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1319,10 +1319,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 371d0d4b-b208-440f-b5a9-d8166540acb8 + - 8036d7b8-1791-45e4-97c2-4d989503a865 status: 200 OK code: 200 - duration: 111.414834ms + duration: 74.105128ms - id: 26 request: proto: HTTP/1.1 @@ -1339,7 +1339,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -1347,20 +1347,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 2162 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:29.938447+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:47.141301+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2164" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1368,10 +1368,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81898c9d-91b8-4054-bde6-f2bc43c4cc93 + - 806ee57a-3999-4f49-afb2-6b16c9263d53 status: 200 OK code: 200 - duration: 101.460082ms + duration: 149.793734ms - id: 27 request: proto: HTTP/1.1 @@ -1390,7 +1390,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action method: POST response: proto: HTTP/2.0 @@ -1400,7 +1400,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action","href_result":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09","id":"16fc436c-6225-48de-877d-3c9242e321cb","progress":0,"started_at":"2025-10-08T23:04:30.469361+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action","href_result":"/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","id":"643566ed-60d5-4e25-801e-bdf4d5a9e27b","progress":0,"started_at":"2025-10-15T15:03:47.694363+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -1409,11 +1409,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16fc436c-6225-48de-877d-3c9242e321cb + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/643566ed-60d5-4e25-801e-bdf4d5a9e27b Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1421,10 +1421,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48b65fe5-d6e0-48e0-aa81-774ce7c05a0b + - 66ea7a59-5a7b-41a2-9df9-6b83f7ab1cc5 status: 202 Accepted code: 202 - duration: 214.813266ms + duration: 255.637902ms - id: 28 request: proto: HTTP/1.1 @@ -1441,7 +1441,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -1449,20 +1449,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 2162 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:47.502409+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2164" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1470,10 +1470,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1538796-cf6b-4f6d-aeae-1c70960aead3 + - c85374c4-c017-499d-92a2-d7845b429400 status: 200 OK code: 200 - duration: 119.005686ms + duration: 152.868577ms - id: 29 request: proto: HTTP/1.1 @@ -1490,7 +1490,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -1498,20 +1498,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:49.607899+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2164" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1519,10 +1519,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85c46c53-5756-4ebf-a7a7-e8a8eeaeacb6 + - 480955c9-056f-4358-8962-883c5e846472 status: 200 OK code: 200 - duration: 112.214943ms + duration: 153.641232ms - id: 30 request: proto: HTTP/1.1 @@ -1539,7 +1539,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -1547,20 +1547,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:49.607899+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2298" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1568,10 +1568,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c2b415-2a06-4e01-9452-791b9e655cd8 + - 2b077059-85eb-49b0-aec8-592de5391844 status: 200 OK code: 200 - duration: 103.569947ms + duration: 156.917724ms - id: 31 request: proto: HTTP/1.1 @@ -1588,7 +1588,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -1596,20 +1596,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","type":"not_found"}' headers: Content-Length: - - "2298" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1617,10 +1617,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac8ffaea-a291-4e3a-8962-ac73840e99fd - status: 200 OK - code: 200 - duration: 91.29612ms + - 0e45cc17-6bb3-4592-9273-18f45cb0ff77 + status: 404 Not Found + code: 404 + duration: 25.553658ms - id: 32 request: proto: HTTP/1.1 @@ -1637,7 +1637,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -1645,20 +1645,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 701 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:03:45.485885Z","id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.485885Z","id":"8d84b748-e685-43e9-95a6-998db2346b07","product_resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.485885Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1666,10 +1666,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cdfd3214-fdea-44c6-af62-b48b010a44e4 - status: 404 Not Found - code: 404 - duration: 27.471933ms + - 0d2b5311-3beb-4f00-bbf2-47e1c2a2078b + status: 200 OK + code: 200 + duration: 93.850051ms - id: 33 request: proto: HTTP/1.1 @@ -1686,7 +1686,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -1694,20 +1694,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 2162 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:47.141301+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "701" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1715,10 +1715,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6a3fa58-fb0f-4e02-a3eb-3c3f3cd54b3f + - 17baef5d-7792-4a40-b216-2e53c4f3005a status: 200 OK code: 200 - duration: 53.760553ms + duration: 169.058681ms - id: 34 request: proto: HTTP/1.1 @@ -1735,7 +1735,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/user_data method: GET response: proto: HTTP/2.0 @@ -1743,20 +1743,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "2164" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1764,10 +1764,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1647bf43-d111-4c66-9cbe-c23d120bff10 + - e66a5065-b2aa-4ac7-b0b6-457314fb8379 status: 200 OK code: 200 - duration: 111.691313ms + duration: 89.89113ms - id: 35 request: proto: HTTP/1.1 @@ -1784,7 +1784,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/private_nics method: GET response: proto: HTTP/2.0 @@ -1792,20 +1792,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT + - Wed, 15 Oct 2025 15:03:52 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1813,10 +1815,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33457f46-c6f0-4e8e-9ff9-73cf5474c13d + - 01357e6c-be9d-41b6-b859-7e96dcec7fc0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 53.249257ms + duration: 102.560317ms - id: 36 request: proto: HTTP/1.1 @@ -1833,7 +1837,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -1841,22 +1845,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 2162 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:47.502409+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:35 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1864,12 +1866,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea6c5f6d-8af4-4e45-91ad-be2bbe7073a0 - X-Total-Count: - - "0" + - 3f277b24-a483-4925-9397-ed97e53ea913 status: 200 OK code: 200 - duration: 53.222027ms + duration: 156.219796ms - id: 37 request: proto: HTTP/1.1 @@ -1886,7 +1886,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -1894,20 +1894,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 2162 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:47.141301+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2164" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1915,10 +1915,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 064acdab-c095-425d-ba28-a9ff9938e904 + - 1d396340-e9f3-4fdc-bc4c-bc9bfc599a1c status: 200 OK code: 200 - duration: 121.776673ms + duration: 169.959687ms - id: 38 request: proto: HTTP/1.1 @@ -1935,7 +1935,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -1943,20 +1943,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2164 + content_length: 2162 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:47.502409+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2164" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1964,10 +1964,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd0c7815-2e2f-406f-9b72-846daa7f39ad + - 81ced361-7771-4f52-815e-252683df9d64 status: 200 OK code: 200 - duration: 110.425525ms + duration: 201.013056ms - id: 39 request: proto: HTTP/1.1 @@ -1984,7 +1984,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -1992,20 +1992,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2268 + content_length: 2265 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:30.094712+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:03:47.141301+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2268" + - "2265" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2013,10 +2013,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473fc8ad-fa5f-40aa-aaad-dd324f31895d + - a9ec9820-7518-4477-8d81-7a09b60cddff status: 200 OK code: 200 - duration: 113.744421ms + duration: 138.027389ms - id: 40 request: proto: HTTP/1.1 @@ -2033,7 +2033,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2041,20 +2041,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2266 + content_length: 2162 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:30.303317+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:47.502409+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2266" + - "2162" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2062,10 +2062,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67afe5aa-b36b-4035-8313-19dbf9b9d033 + - f61f769b-8186-4d2a-ba4b-15936b52337f status: 200 OK code: 200 - duration: 116.290116ms + duration: 171.423529ms - id: 41 request: proto: HTTP/1.1 @@ -2082,7 +2082,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -2090,20 +2090,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:03.676721+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2299" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2111,10 +2111,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60c44e22-1c81-4777-8680-ee1a0849fe92 + - d2baf3f7-f19b-4f32-9280-617d56bcdca0 status: 200 OK code: 200 - duration: 122.857871ms + duration: 145.143254ms - id: 42 request: proto: HTTP/1.1 @@ -2131,7 +2131,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -2139,20 +2139,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:03.676721+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2299" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:50 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2160,10 +2160,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 452a3085-1abc-43d7-8be8-3eb7614fa8d8 + - 95dd8ded-f792-454e-9c3a-4cbe3aba4860 status: 200 OK code: 200 - duration: 117.861645ms + duration: 171.464303ms - id: 43 request: proto: HTTP/1.1 @@ -2180,7 +2180,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -2190,7 +2190,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' headers: Content-Length: - "143" @@ -2199,9 +2199,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2209,10 +2209,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2414d404-5653-47a5-b0aa-498841d81f7a + - 5f1cc559-f27a-4a85-b988-942e42de0977 status: 404 Not Found code: 404 - duration: 28.863859ms + duration: 27.801825ms - id: 44 request: proto: HTTP/1.1 @@ -2229,7 +2229,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -2239,7 +2239,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.556206Z","id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.556206Z","id":"fa819b7e-28de-42aa-ba97-498f60a09513","product_resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.556206Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2248,9 +2248,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2258,10 +2258,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4839d4ba-4d01-438b-8f76-7f4d45e5a74d + - 70b20759-4cbf-4a56-8e96-c934da4e64ea status: 200 OK code: 200 - duration: 40.96675ms + duration: 80.889158ms - id: 45 request: proto: HTTP/1.1 @@ -2278,7 +2278,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2286,20 +2286,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 2266 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:03:47.502409+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "2266" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2307,10 +2307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e143aa9-5b0b-4462-b984-a645fbc3cfc4 + - 9ecca56d-05cc-43fd-a96a-0b04a61206ad status: 200 OK code: 200 - duration: 105.578301ms + duration: 142.965302ms - id: 46 request: proto: HTTP/1.1 @@ -2327,7 +2327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/user_data method: GET response: proto: HTTP/2.0 @@ -2346,9 +2346,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2356,10 +2356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b3bbff1-69f6-4b72-8036-fcfd99c0881d + - 9357cd50-8d51-43a3-825c-d09ce48de315 status: 200 OK code: 200 - duration: 52.898132ms + duration: 104.355026ms - id: 47 request: proto: HTTP/1.1 @@ -2376,7 +2376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/private_nics method: GET response: proto: HTTP/2.0 @@ -2395,11 +2395,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2407,12 +2407,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c330d01-eb61-40dd-b39d-415fd0657574 + - 25dae2b3-bbc5-4c1d-9c7f-d4d8abbfc5df X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.415671ms + duration: 93.933059ms - id: 48 request: proto: HTTP/1.1 @@ -2429,7 +2429,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2439,7 +2439,7 @@ interactions: trailer: {} content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:08.577486+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2297" @@ -2448,9 +2448,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2458,10 +2458,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 915ce5a8-3fa2-4e37-9a94-3d16f4327843 + - 0dfeac73-c601-4574-b29c-5e6a66b7ffc4 status: 200 OK code: 200 - duration: 101.015408ms + duration: 155.683488ms - id: 49 request: proto: HTTP/1.1 @@ -2478,7 +2478,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2486,20 +2486,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2297 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:08.577486+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2507,10 +2507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1052c18b-b415-4d7a-94a0-7868577a35c4 - status: 404 Not Found - code: 404 - duration: 27.306394ms + - 64ac90c4-7a62-4525-9748-a2b28df2ed40 + status: 200 OK + code: 200 + duration: 142.948035ms - id: 50 request: proto: HTTP/1.1 @@ -2527,7 +2527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -2535,20 +2535,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2556,10 +2556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254acc95-4eca-4d55-8f2c-17dd5e5557ea - status: 200 OK - code: 200 - duration: 46.252581ms + - b93af08f-7cd2-451a-be88-5528af7f3212 + status: 404 Not Found + code: 404 + duration: 35.181661ms - id: 51 request: proto: HTTP/1.1 @@ -2576,7 +2576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -2584,20 +2584,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:45.628001Z","id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.628001Z","id":"9a3c05d2-0bc2-44b5-9de5-1bd5d4685800","product_resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.628001Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2605,10 +2605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb435770-29ff-499b-83e5-5daaddbbcca9 + - ff5851be-1ceb-4264-8d9a-b892d5d7c75d status: 200 OK code: 200 - duration: 56.333646ms + duration: 74.418622ms - id: 52 request: proto: HTTP/1.1 @@ -2625,7 +2625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/user_data method: GET response: proto: HTTP/2.0 @@ -2633,22 +2633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2656,12 +2654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2810df3-b3a4-40fb-949f-6b5683a902b9 - X-Total-Count: - - "0" + - 26003f84-dd3a-41e3-b021-8318aac09f91 status: 200 OK code: 200 - duration: 46.006505ms + duration: 113.506075ms - id: 53 request: proto: HTTP/1.1 @@ -2678,7 +2674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/private_nics method: GET response: proto: HTTP/2.0 @@ -2686,20 +2682,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "2298" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:14 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2707,10 +2705,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad866c08-d379-4c02-a25e-21b6073518a0 + - 2cc76966-689d-4ecc-99f4-b8693dffc4c0 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 103.546476ms + duration: 90.382909ms - id: 54 request: proto: HTTP/1.1 @@ -2727,7 +2727,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2737,7 +2737,7 @@ interactions: trailer: {} content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:08.577486+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2297" @@ -2746,9 +2746,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2756,10 +2756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2faeff4b-014a-4abd-9230-6b1c928c1c1a + - c3c5e1bb-b982-43ec-a406-c3b78a82c1a7 status: 200 OK code: 200 - duration: 103.239799ms + duration: 187.115792ms - id: 55 request: proto: HTTP/1.1 @@ -2776,7 +2776,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -2784,20 +2784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:03.676721+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2299" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2805,10 +2805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 939651f0-60c0-4aca-b6a8-45199e0f8e1e + - 6cfb3ea7-a0c4-4b63-b801-b457a374b930 status: 200 OK code: 200 - duration: 110.905228ms + duration: 159.198959ms - id: 56 request: proto: HTTP/1.1 @@ -2825,7 +2825,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -2833,20 +2833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 327 + content_length: 2296 uncompressed: false - body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:49.607899+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "327" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:51 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2854,10 +2854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cab63117-a40b-464f-b4b4-4440e5d6ab4b + - ee8a84d9-81d1-4271-959e-b613450ac9b2 status: 200 OK code: 200 - duration: 58.115146ms + duration: 203.794106ms - id: 57 request: proto: HTTP/1.1 @@ -2874,7 +2874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b method: GET response: proto: HTTP/2.0 @@ -2882,20 +2882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 327 + content_length: 325 uncompressed: false - body: '{"placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "327" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2903,10 +2903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5e24b85-a8c4-4f6a-9c12-068fe84b6197 + - 2838efff-8600-4f88-a6e8-1c7d2ac1f2d4 status: 200 OK code: 200 - duration: 63.188333ms + duration: 104.661675ms - id: 58 request: proto: HTTP/1.1 @@ -2923,7 +2923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b method: GET response: proto: HTTP/2.0 @@ -2931,20 +2931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2297 + content_length: 325 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:46.294601+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":true,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2297" + - "325" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2952,10 +2952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0528402-a87b-4a25-8cc8-02281531d7e2 + - d41eca19-5fa4-4c40-a517-7fd0b2d78cb7 status: 200 OK code: 200 - duration: 96.967348ms + duration: 120.864159ms - id: 59 request: proto: HTTP/1.1 @@ -2972,7 +2972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -2980,20 +2980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2299 + content_length: 2297 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:45.827138+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:08.577486+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2299" + - "2297" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3001,10 +3001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd0b0cc4-891b-42e7-b283-1ebbf8d2d198 + - 469ba0cb-49ae-48f5-a56d-5d5654dea832 status: 200 OK code: 200 - duration: 100.009233ms + duration: 153.774121ms - id: 60 request: proto: HTTP/1.1 @@ -3021,7 +3021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -3029,20 +3029,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2298 + content_length: 2296 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:33.078097+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":{"id":"b0f8e318-2299-4980-b645-1f90edc5dc71","name":"tf-pg-charming-snyder","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:03:49.607899+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2298" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3050,10 +3050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 113db688-f50b-47da-a9c8-0edf88f67c94 + - b0740765-3d65-4efb-97c0-09490ef6624b status: 200 OK code: 200 - duration: 109.04371ms + duration: 166.782497ms - id: 61 request: proto: HTTP/1.1 @@ -3070,7 +3070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -3078,20 +3078,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 2296 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:03.676721+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":{"id":"0a5fb281-cbad-4311-9b89-6ebb1fac6f4b","name":"tf-pg-tender-jepsen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","policy_mode":"enforced","policy_respected":false,"policy_type":"max_availability","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"zone":"fr-par-1"},"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "2296" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3099,10 +3099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 487a96df-6195-4513-8788-7f251027e14d - status: 404 Not Found - code: 404 - duration: 30.017105ms + - 72976ea6-425b-4475-a5e1-0e7d4edabb82 + status: 200 OK + code: 200 + duration: 168.564146ms - id: 62 request: proto: HTTP/1.1 @@ -3119,7 +3119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -3129,7 +3129,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' headers: Content-Length: - "143" @@ -3138,9 +3138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3148,10 +3148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b68091d5-ff4e-4bae-9eb2-6b43976c3435 + - d23ef003-5e4c-4065-a3d4-c7e6acb5b1ad status: 404 Not Found code: 404 - duration: 35.562148ms + duration: 23.64315ms - id: 63 request: proto: HTTP/1.1 @@ -3168,7 +3168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -3178,7 +3178,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","type":"not_found"}' headers: Content-Length: - "143" @@ -3187,9 +3187,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3197,10 +3197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b51c0f0-141f-4171-9913-ec2509a99011 + - 417561c3-9f6e-4467-adf0-28663596ebe4 status: 404 Not Found code: 404 - duration: 30.042142ms + duration: 25.098709ms - id: 64 request: proto: HTTP/1.1 @@ -3217,7 +3217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -3225,20 +3225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.409289Z","id":"c9bba4b4-0995-48b1-ba83-ab076be7dcf6","product_resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.409289Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3246,10 +3246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6cb4c95-256b-43bc-8848-ff2d98a4a24e - status: 200 OK - code: 200 - duration: 43.176032ms + - d2552ce2-ca41-46b8-8ad5-2872f83e9618 + status: 404 Not Found + code: 404 + duration: 29.015521ms - id: 65 request: proto: HTTP/1.1 @@ -3266,7 +3266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -3276,7 +3276,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.365770Z","id":"b9f396a8-a6ce-4108-b69b-bfbb22be840d","product_resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.365770Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.628001Z","id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.628001Z","id":"9a3c05d2-0bc2-44b5-9de5-1bd5d4685800","product_resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.628001Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3285,9 +3285,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3295,10 +3295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c48c0971-197b-4457-9e87-f477b334e38c + - 3f2ddeee-29d1-48ac-9e22-4b7c034c69ab status: 200 OK code: 200 - duration: 39.986113ms + duration: 78.003163ms - id: 66 request: proto: HTTP/1.1 @@ -3315,7 +3315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -3325,7 +3325,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.578320Z","id":"57ec2ac2-03c2-4cae-8e89-edd364d623e7","product_resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.578320Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.485885Z","id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.485885Z","id":"8d84b748-e685-43e9-95a6-998db2346b07","product_resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.485885Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3334,9 +3334,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3344,10 +3344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 326e373c-9cce-4146-add9-9af6aaa1fa5e + - 90162c97-d930-47aa-a07c-054a4d0fc898 status: 200 OK code: 200 - duration: 51.5421ms + duration: 89.580817ms - id: 67 request: proto: HTTP/1.1 @@ -3364,7 +3364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/user_data + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -3372,20 +3372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 701 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-10-15T15:03:45.556206Z","id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:45.556206Z","id":"fa819b7e-28de-42aa-ba97-498f60a09513","product_resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:45.556206Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "701" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3393,10 +3393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6ce62cf-1d91-4c6c-b8ae-9e4d52cd427d + - 8537d8b7-30ae-48a8-9527-26f4be1f7748 status: 200 OK code: 200 - duration: 47.60657ms + duration: 90.285627ms - id: 68 request: proto: HTTP/1.1 @@ -3413,7 +3413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/user_data method: GET response: proto: HTTP/2.0 @@ -3432,9 +3432,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3442,10 +3442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e96efafc-dfc3-4592-91ce-0fa121acba7c + - 4b2e5fa5-76cf-44f3-945e-f3a7316fa72f status: 200 OK code: 200 - duration: 56.536351ms + duration: 100.582139ms - id: 69 request: proto: HTTP/1.1 @@ -3462,7 +3462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/user_data method: GET response: proto: HTTP/2.0 @@ -3481,9 +3481,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3491,10 +3491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 651adf54-0855-43fa-a193-84b061704201 + - 9bc6770b-c7ee-49f4-bcee-da79e5421005 status: 200 OK code: 200 - duration: 55.089141ms + duration: 96.472585ms - id: 70 request: proto: HTTP/1.1 @@ -3511,7 +3511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/user_data method: GET response: proto: HTTP/2.0 @@ -3519,22 +3519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT - Link: - - ; rel="last" + - Wed, 15 Oct 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3542,12 +3540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87a05fb7-eb01-43fd-b9e6-cf856689d47a - X-Total-Count: - - "0" + - 56b1e620-330a-4a9b-be4c-d1b95b486f1a status: 200 OK code: 200 - duration: 54.526648ms + duration: 89.80163ms - id: 71 request: proto: HTTP/1.1 @@ -3564,7 +3560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/private_nics method: GET response: proto: HTTP/2.0 @@ -3583,11 +3579,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3595,12 +3591,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f0da72c-6da6-40fa-9bf5-862813ad4b39 + - 7e6bd7c5-2253-40c8-a0bb-d0c52895cefd X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.355138ms + duration: 116.224172ms - id: 72 request: proto: HTTP/1.1 @@ -3617,7 +3613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/private_nics method: GET response: proto: HTTP/2.0 @@ -3636,11 +3632,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3648,52 +3644,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85581c66-eef0-45c9-8347-d80714f9feb8 + - c66b0eff-d471-43a5-aa16-587df5276d5e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 51.760024ms + duration: 97.67521ms - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 24 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"placement_group":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.775864+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1995" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:15 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3701,10 +3697,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bc5cc0d-06a4-4b68-920c-a06708e1a8a8 + - 81291570-6eb1-4e86-af9f-facc4ad09930 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 135.523862ms + duration: 100.389868ms - id: 74 request: proto: HTTP/1.1 @@ -3723,7 +3721,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: PATCH response: proto: HTTP/2.0 @@ -3731,20 +3729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1994 + content_length: 1996 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:52.769776+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:15.930845+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1994" + - "1996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3752,10 +3750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b7a9f83-401a-4f9a-ac93-a80d0d1d1fa0 + - ae613e71-810b-4021-9b60-2faba3811959 status: 200 OK code: 200 - duration: 157.672101ms + duration: 229.044724ms - id: 75 request: proto: HTTP/1.1 @@ -3774,7 +3772,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: PATCH response: proto: HTTP/2.0 @@ -3782,20 +3780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:52.789250+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:15.966359+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1996" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3803,28 +3801,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f30c068e-f49c-4472-b419-7bcdee2345e7 + - 23d965d7-2d38-479a-81ed-1a41417dec77 status: 200 OK code: 200 - duration: 203.625628ms + duration: 256.648729ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 24 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"placement_group":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 @@ -3833,7 +3833,7 @@ interactions: trailer: {} content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.775864+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:15.935935+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1995" @@ -3842,9 +3842,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3852,10 +3852,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf551e53-9c17-454a-95fc-14bce1887010 + - 55c5b6d4-735a-41aa-bc92-366311feba04 status: 200 OK code: 200 - duration: 88.011928ms + duration: 267.47808ms - id: 77 request: proto: HTTP/1.1 @@ -3872,7 +3872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -3880,20 +3880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1994 + content_length: 1996 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:52.769776+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:15.930845+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1994" + - "1996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3901,10 +3901,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa25b9aa-0615-4935-be08-e3069255f080 + - 68d07c62-d2bc-49bf-9d4b-ffeb9e256899 status: 200 OK code: 200 - duration: 105.803697ms + duration: 147.99558ms - id: 78 request: proto: HTTP/1.1 @@ -3921,7 +3921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -3929,20 +3929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1996 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:52.789250+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:15.935935+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1996" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3950,52 +3950,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2f81a59-ca38-4d1e-adb0-b24209f7ef78 + - 7bec7483-ab97-48c7-8e43-cefea7664215 status: 200 OK code: 200 - duration: 119.790808ms + duration: 135.042899ms - id: 79 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1995 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71/action","href_result":"/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71","id":"721964c5-ec3b-4485-82c9-8a24aa73ca04","progress":0,"started_at":"2025-10-08T23:04:53.080599+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:15.966359+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/721964c5-ec3b-4485-82c9-8a24aa73ca04 + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4003,52 +3999,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6ad02f9-f153-4688-b18a-bcde5dbab64a - status: 202 Accepted - code: 202 - duration: 169.695103ms + - f36e6fe0-80e2-4156-af66-ad7460878796 + status: 200 OK + code: 200 + duration: 152.655035ms - id: 80 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 22 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"terminate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26/action - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 353 + content_length: 1996 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/3486feb6-39cc-485c-9746-db487fed0c26/action","href_result":"/servers/3486feb6-39cc-485c-9746-db487fed0c26","id":"eea3f3e0-410f-42f0-b37d-a7a0549bb58c","progress":0,"started_at":"2025-10-08T23:04:53.173612+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:15.930845+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "353" + - "1996" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/eea3f3e0-410f-42f0-b37d-a7a0549bb58c + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4056,10 +4048,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d050304-6cae-446e-85dd-e2637e099c54 - status: 202 Accepted - code: 202 - duration: 160.03082ms + - 36d96c77-9a43-41ec-a41b-027bf9ede5aa + status: 200 OK + code: 200 + duration: 270.554709ms - id: 81 request: proto: HTTP/1.1 @@ -4076,7 +4068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -4084,20 +4076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:15.966359+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1958" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4105,10 +4097,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7294a31a-c5e7-4824-af7e-c7308afcf435 + - 83bd8c2d-7cff-46c9-86d9-d4fe169b3678 status: 200 OK code: 200 - duration: 105.71337ms + duration: 238.902854ms - id: 82 request: proto: HTTP/1.1 @@ -4125,7 +4117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -4133,20 +4125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1959 + content_length: 1995 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.603664+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"3486feb6-39cc-485c-9746-db487fed0c26","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"301","node_id":"119","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:73","maintenances":[],"modification_date":"2025-10-08T23:04:53.058581+00:00","name":"tf-tests-server-2-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"226ea89e-3ab6-446a-87f1-36d5e126268b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:15.935935+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1959" + - "1995" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4154,10 +4146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1495b73-e0ad-411f-a036-281fe6101a6b + - f390167d-f064-42fd-9118-296659ef8ecf status: 200 OK code: 200 - duration: 104.552308ms + duration: 245.321436ms - id: 83 request: proto: HTTP/1.1 @@ -4176,7 +4168,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action method: POST response: proto: HTTP/2.0 @@ -4186,7 +4178,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09/action","href_result":"/servers/187f969c-d359-420a-bdd2-cefc394b4d09","id":"c8179cb0-ec89-49cb-a1ce-a5cd96d12b76","progress":0,"started_at":"2025-10-08T23:04:53.330205+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3/action","href_result":"/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","id":"a74331a9-bc42-4237-a55f-3393f8221657","progress":0,"started_at":"2025-10-15T15:04:16.744848+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -4195,11 +4187,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c8179cb0-ec89-49cb-a1ce-a5cd96d12b76 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a74331a9-bc42-4237-a55f-3393f8221657 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4207,48 +4199,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6537b285-d63d-479a-95de-fe612c7ac4ea + - 4e410a3b-2030-4b96-a164-324ddb1472b9 status: 202 Accepted code: 202 - duration: 379.46365ms + duration: 248.053868ms - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734/action","href_result":"/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734","id":"9e896ef2-eb08-4646-86b1-495680d27030","progress":0,"started_at":"2025-10-15T15:04:16.773486+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1957" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:53 GMT + - Wed, 15 Oct 2025 15:04:16 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9e896ef2-eb08-4646-86b1-495680d27030 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4256,48 +4252,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab26df9b-aea3-4611-8c41-23d45bf04bce - status: 200 OK - code: 200 - duration: 111.539151ms + - 02febcb1-0663-45f8-ba30-734e3928c333 + status: 202 Accepted + code: 202 + duration: 275.91675ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 22 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"terminate"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 353 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af/action","href_result":"/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af","id":"16481921-4ca5-4a26-9c91-5f901c4678ee","progress":0,"started_at":"2025-10-15T15:04:16.783244+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1958" + - "353" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:16 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/16481921-4ca5-4a26-9c91-5f901c4678ee Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4305,10 +4305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 159c83fc-1c9a-4d8c-ad77-ad7e1b14d916 - status: 200 OK - code: 200 - duration: 103.778443ms + - 0a5f23a6-aa57-4ea8-834a-1bd33cdef1b2 + status: 202 Accepted + code: 202 + duration: 282.943242ms - id: 86 request: proto: HTTP/1.1 @@ -4325,7 +4325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -4333,20 +4333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1959 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.660699+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"901","node_id":"148","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:3b","maintenances":[],"modification_date":"2025-10-15T15:04:16.547440+00:00","name":"tf-tests-server-0-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1959" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4354,10 +4354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f347ac28-f874-49f9-9a74-39202e7dc47c - status: 404 Not Found - code: 404 - duration: 51.954321ms + - b6bb4aba-6827-4bff-9579-c938e1ee1c42 + status: 200 OK + code: 200 + duration: 136.629444ms - id: 87 request: proto: HTTP/1.1 @@ -4374,7 +4374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -4382,20 +4382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1958 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"226ea89e-3ab6-446a-87f1-36d5e126268b","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:46.493450+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"34","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:37","maintenances":[],"modification_date":"2025-10-15T15:04:16.554018+00:00","name":"tf-tests-server-1-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4403,10 +4403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d318017-dfe1-4a66-b91c-13447ad4f94e - status: 404 Not Found - code: 404 - duration: 33.471263ms + - 147adc94-e85a-4c13-94b4-61fbb4bd17ea + status: 200 OK + code: 200 + duration: 127.819819ms - id: 88 request: proto: HTTP/1.1 @@ -4423,7 +4423,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -4431,20 +4431,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 1958 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.409289Z","id":"226ea89e-3ab6-446a-87f1-36d5e126268b","last_detached_at":"2025-10-08T23:04:54.696805Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:54.696805Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:16.553109+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "494" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4452,10 +4452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6bc7220-5abe-49ae-97c1-2cf7045c91a1 + - 4f1b1447-c09a-415c-9716-d07889a1c56c status: 200 OK code: 200 - duration: 44.108288ms + duration: 155.650581ms - id: 89 request: proto: HTTP/1.1 @@ -4472,26 +4472,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/226ea89e-3ab6-446a-87f1-36d5e126268b - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 143 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","type":"not_found"}' headers: + Content-Length: + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4499,10 +4501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de786a0d-dbf6-425b-a365-a17b11a417c0 - status: 204 No Content - code: 204 - duration: 74.045614ms + - bb529f7f-0686-4efb-8fad-5bfc0d6edd84 + status: 404 Not Found + code: 404 + duration: 47.537004ms - id: 90 request: proto: HTTP/1.1 @@ -4519,7 +4521,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -4527,20 +4529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","type":"not_found"}' headers: Content-Length: - - "1957" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:58 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4548,10 +4550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6ee9b07-395f-4731-ac43-262b03f26272 - status: 200 OK - code: 200 - duration: 103.716919ms + - c24ea024-2c02-47d0-a158-e189836e8dbb + status: 404 Not Found + code: 404 + duration: 27.044739ms - id: 91 request: proto: HTTP/1.1 @@ -4568,7 +4570,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -4576,20 +4578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1958 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.282811+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-0-with-placement-group","id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"164","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:6f","maintenances":[],"modification_date":"2025-10-08T23:04:52.958457+00:00","name":"tf-tests-server-0-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"eb83b30a-2774-4754-b086-99c40f08f31f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","type":"not_found"}' headers: Content-Length: - - "1958" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4597,10 +4599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f7e71d7-d323-4702-8a15-a2c3307f9a93 - status: 200 OK - code: 200 - duration: 106.332481ms + - 45b14700-cd4b-40a6-b36f-4c71c08141ed + status: 404 Not Found + code: 404 + duration: 57.846811ms - id: 92 request: proto: HTTP/1.1 @@ -4617,7 +4619,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -4625,20 +4627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1957 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-08T23:04:29.762900+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-1-with-placement-group","id":"187f969c-d359-420a-bdd2-cefc394b4d09","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"401","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:7d","maintenances":[],"modification_date":"2025-10-08T23:04:53.000067+00:00","name":"tf-tests-server-1-with-placement-group","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","type":"not_found"}' headers: Content-Length: - - "1957" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:03 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4646,10 +4648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7606443-87ec-418f-bb2e-1b5f4deba909 - status: 200 OK - code: 200 - duration: 121.970309ms + - 654590ea-b691-4d34-9ac5-c7b89aab2b4d + status: 404 Not Found + code: 404 + duration: 29.98952ms - id: 93 request: proto: HTTP/1.1 @@ -4666,7 +4668,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 method: GET response: proto: HTTP/2.0 @@ -4674,20 +4676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 494 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:03:45.628001Z","id":"ee7d6904-bd12-4b7f-a526-d1fac89f8ff2","last_detached_at":"2025-10-15T15:04:18.698944Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.698944Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4695,10 +4697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb77c99b-64ec-49f3-b494-cfe0a57116b2 - status: 404 Not Found - code: 404 - duration: 48.201137ms + - 77057e71-7450-4670-a132-54001f78b69a + status: 200 OK + code: 200 + duration: 92.020345ms - id: 94 request: proto: HTTP/1.1 @@ -4715,7 +4717,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: GET response: proto: HTTP/2.0 @@ -4723,20 +4725,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 494 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"eb83b30a-2774-4754-b086-99c40f08f31f","type":"not_found"}' + body: '{"created_at":"2025-10-15T15:03:45.556206Z","id":"25a8c811-1d1e-4754-ad3f-77b5c723ebf8","last_detached_at":"2025-10-15T15:04:18.386109Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:18.386109Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "494" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4744,10 +4746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e3d5d7c-68d9-46e8-8f36-da5b4f726486 - status: 404 Not Found - code: 404 - duration: 66.072071ms + - 9b6a21bd-a25f-48b1-bb4b-84cf7ffb2c97 + status: 200 OK + code: 200 + duration: 75.568654ms - id: 95 request: proto: HTTP/1.1 @@ -4764,7 +4766,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -4772,20 +4774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 1958 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.365770Z","id":"eb83b30a-2774-4754-b086-99c40f08f31f","last_detached_at":"2025-10-08T23:05:04.458472Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:04.458472Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:16.553109+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "494" + - "1958" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4793,10 +4795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa5147fa-930d-41a4-981b-1e1dee357de8 + - ccfa5219-412c-4eff-8072-7f2eef8f9f59 status: 200 OK code: 200 - duration: 50.118419ms + duration: 136.758873ms - id: 96 request: proto: HTTP/1.1 @@ -4813,7 +4815,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/eb83b30a-2774-4754-b086-99c40f08f31f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/25a8c811-1d1e-4754-ad3f-77b5c723ebf8 method: DELETE response: proto: HTTP/2.0 @@ -4830,9 +4832,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4840,10 +4842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 185a1e39-2ccf-450f-bcd4-0ba8fdfa4901 + - 1bb412ae-bd44-495a-b4e9-1ed0b5b4f6f1 status: 204 No Content code: 204 - duration: 86.451691ms + duration: 141.470235ms - id: 97 request: proto: HTTP/1.1 @@ -4860,7 +4862,103 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ee7d6904-bd12-4b7f-a526-d1fac89f8ff2 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9cd0c45c-1eef-4c88-924a-368e8e377710 + status: 204 No Content + code: 204 + duration: 178.124098ms + - id: 98 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1958 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-PICO","creation_date":"2025-10-15T15:03:45.336587+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-server-2-with-placement-group","id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"122","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:33","maintenances":[],"modification_date":"2025-10-15T15:04:16.553109+00:00","name":"tf-tests-server-2-with-placement-group","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","placement_group"],"volumes":{"0":{"boot":false,"id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1958" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 479fca74-d63b-4302-93d6-a7062db0aee7 + status: 200 OK + code: 200 + duration: 150.259768ms + - id: 99 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -4870,7 +4968,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","type":"not_found"}' headers: Content-Length: - "143" @@ -4879,9 +4977,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4889,11 +4987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5aa6257f-70bb-490a-bf7a-50fc5b604c9f + - 1ea35589-da4f-4f65-b36f-be3e8a1c8f5d status: 404 Not Found code: 404 - duration: 47.174415ms - - id: 98 + duration: 60.930909ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4909,7 +5007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -4919,7 +5017,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","type":"not_found"}' headers: Content-Length: - "143" @@ -4928,9 +5026,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4938,11 +5036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 044a4aec-0084-4d4c-9ec2-74360ae73408 + - 555e289a-d868-491a-80d2-f438a5db0424 status: 404 Not Found code: 404 - duration: 36.919038ms - - id: 99 + duration: 27.820135ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4958,7 +5056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: GET response: proto: HTTP/2.0 @@ -4968,7 +5066,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.578320Z","id":"41949eb2-9b9b-4e2c-90f1-fba6814f4b8c","last_detached_at":"2025-10-08T23:05:04.702265Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:05:04.702265Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:45.485885Z","id":"d1bd1fde-43e8-45f7-a7cb-268213aee60b","last_detached_at":"2025-10-15T15:04:28.530353Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:04:28.530353Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -4977,9 +5075,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4987,11 +5085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dd65464-9500-42be-adfe-691e1d146170 + - 46ec8efc-335c-4d72-9623-5ee06662700f status: 200 OK code: 200 - duration: 45.831698ms - - id: 100 + duration: 79.074161ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5007,7 +5105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/41949eb2-9b9b-4e2c-90f1-fba6814f4b8c + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d1bd1fde-43e8-45f7-a7cb-268213aee60b method: DELETE response: proto: HTTP/2.0 @@ -5024,9 +5122,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:08 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5034,11 +5132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ea44b17-063e-4fb9-a979-5d45cd05ad71 + - f4a45fb9-8c56-4b88-b61f-171ccf4a1d54 status: 204 No Content code: 204 - duration: 89.38203ms - - id: 101 + duration: 166.042513ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5054,7 +5152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/b0f8e318-2299-4980-b645-1f90edc5dc71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/placement_groups/0a5fb281-cbad-4311-9b89-6ebb1fac6f4b method: DELETE response: proto: HTTP/2.0 @@ -5071,9 +5169,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5081,11 +5179,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8af7329d-375e-41a3-9bb9-08e3b8adeccd + - 8276f1e6-9e21-48fd-8bc1-70e0f6bcf049 status: 204 No Content code: 204 - duration: 101.805974ms - - id: 102 + duration: 191.500119ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5101,7 +5199,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6330919a-cb7a-4eb8-8650-2040d61b7e71 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ba4e57eb-ba72-4e14-94df-2e3be3f747af method: GET response: proto: HTTP/2.0 @@ -5111,7 +5209,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6330919a-cb7a-4eb8-8650-2040d61b7e71","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ba4e57eb-ba72-4e14-94df-2e3be3f747af","type":"not_found"}' headers: Content-Length: - "143" @@ -5120,9 +5218,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5130,11 +5228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a257e13e-3ff8-4519-9580-7fc8115937a7 + - 8ef0b36e-0998-45cc-8b25-6f12f399965d status: 404 Not Found code: 404 - duration: 48.51063ms - - id: 103 + duration: 52.960957ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5150,7 +5248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/187f969c-d359-420a-bdd2-cefc394b4d09 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ce2ed75f-1e57-45f9-9e61-96ae89d92bf3 method: GET response: proto: HTTP/2.0 @@ -5160,7 +5258,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"187f969c-d359-420a-bdd2-cefc394b4d09","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ce2ed75f-1e57-45f9-9e61-96ae89d92bf3","type":"not_found"}' headers: Content-Length: - "143" @@ -5169,9 +5267,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5179,11 +5277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b07ceb4c-5e28-4e03-a655-18bec4bc5f8b + - 668313a8-3552-4042-8fad-e03b0fe5210c status: 404 Not Found code: 404 - duration: 52.142087ms - - id: 104 + duration: 42.304499ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5199,7 +5297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/3486feb6-39cc-485c-9746-db487fed0c26 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/126e051d-5ba0-4e17-bc2a-db8012a1d734 method: GET response: proto: HTTP/2.0 @@ -5209,7 +5307,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"3486feb6-39cc-485c-9746-db487fed0c26","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"126e051d-5ba0-4e17-bc2a-db8012a1d734","type":"not_found"}' headers: Content-Length: - "143" @@ -5218,9 +5316,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:09 GMT + - Wed, 15 Oct 2025 15:04:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5228,7 +5326,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 545732f2-211a-44b3-829e-0ab2d0a883c9 + - 0906cb66-b989-4239-8c8e-6edc94053ab0 status: 404 Not Found code: 404 - duration: 47.610743ms + duration: 55.75731ms diff --git a/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml b/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml index 5f6df4ca7..448214139 100644 --- a/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml +++ b/internal/services/instance/testdata/server-with-reserved-ip.cassette.yaml @@ -12,7 +12,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84aa745d-0baf-4776-9868-b3e9ae13710d + - 9139bce6-5907-4307-beca-83c51a8cdea7 status: 201 Created code: 201 - duration: 2.033986649s + duration: 393.601479ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09f8e7b3-5fbc-4d43-b28d-aadc4b43cfb8 + - 8c16e90d-9465-40fd-b955-d710d8382b4f status: 200 OK code: 200 - duration: 90.920176ms + duration: 108.798857ms - id: 2 request: proto: HTTP/1.1 @@ -127,22 +127,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,12 +150,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6245f7d6-e1ce-4b63-873e-8590d546c6db + - fe547975-ec23-45a8-a7c6-996ad58ab057 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 50.21175ms + duration: 48.453125ms - id: 3 request: proto: HTTP/1.1 @@ -180,22 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d7c348c-459b-41c2-a21b-a851ba429774 + - 0d2ab1b9-d7e6-445a-a8b2-8e29470fda70 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 121.902533ms + duration: 32.924804ms - id: 4 request: proto: HTTP/1.1 @@ -244,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:29 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,22 +254,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df7eb46d-52eb-40d7-8dcd-28b7f11037c9 + - b30d6874-e1d0-434c-af8a-897622ff0fd6 status: 200 OK code: 200 - duration: 53.945679ms + duration: 53.811828ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 351 + content_length: 353 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-happy-galileo","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ip":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' + body: '{"name":"tf-srv-reverent-wilbur","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","volumes":{"0":{"boot":false}},"public_ip":"aede723a-ffe8-427b-b809-eea14206f331","boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","scaleway_instance_server","reserved_ip"]}' form: {} headers: Content-Type: @@ -286,7 +286,7 @@ interactions: trailer: {} content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:19.481152+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2323" @@ -295,11 +295,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -307,10 +307,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4c6898c-1cf0-44e4-a184-792ae5496b1b + - 31db5343-9987-4c84-9939-5b5d530ba9e0 status: 201 Created code: 201 - duration: 1.072714447s + duration: 1.44014673s - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -337,7 +337,7 @@ interactions: trailer: {} content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:19.481152+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2323" @@ -346,9 +346,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bafcfc31-2303-40ce-a783-35d9980b0f9a + - 97153b0f-69a3-4a23-a957-e47bd3fb21ce status: 200 OK code: 200 - duration: 102.150471ms + duration: 136.887179ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -386,7 +386,7 @@ interactions: trailer: {} content_length: 2323 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:29.565380+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:19.481152+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2323" @@ -395,9 +395,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bd98187-97d8-44d8-92cf-c4ecb62c156e + - 0c303ba3-4ac6-4cfa-b23e-9568183ab9d3 status: 200 OK code: 200 - duration: 139.097928ms + duration: 143.63755ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -435,7 +435,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -444,9 +444,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72c9c1c1-d744-4def-8efd-44dc2265e0b9 + - 32669722-509e-40fb-b62e-c73b79702c7f status: 200 OK code: 200 - duration: 46.658067ms + duration: 84.573699ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/action method: POST response: proto: HTTP/2.0 @@ -486,7 +486,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action","href_result":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03","id":"fd5af8ae-ac5b-43b7-b69a-92799997178c","progress":0,"started_at":"2025-10-08T23:04:30.927332+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/274dd336-e713-44c0-a210-aeac0b85b35f/action","href_result":"/servers/274dd336-e713-44c0-a210-aeac0b85b35f","id":"52a59d27-fd45-46cc-9462-fbf57e08cb2c","progress":0,"started_at":"2025-10-15T15:03:20.905254+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -495,11 +495,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:30 GMT + - Wed, 15 Oct 2025 15:03:20 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fd5af8ae-ac5b-43b7-b69a-92799997178c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/52a59d27-fd45-46cc-9462-fbf57e08cb2c Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -507,10 +507,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60ba4c67-fbf7-4278-8d88-440ab5702a1e + - 433d8832-2737-413b-ac5a-d80ce82ecd35 status: 202 Accepted code: 202 - duration: 234.838814ms + duration: 246.251889ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +527,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -537,7 +537,7 @@ interactions: trailer: {} content_length: 2345 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:30.735401+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:20.716329+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2345" @@ -546,9 +546,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:31 GMT + - Wed, 15 Oct 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,10 +556,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c9b4418-a7cd-4736-b5c5-b231d8371b55 + - 4a4c40a8-70ef-4c84-9ade-14ad214f0909 status: 200 OK code: 200 - duration: 98.784274ms + duration: 147.604005ms - id: 11 request: proto: HTTP/1.1 @@ -576,7 +576,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -586,7 +586,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -595,9 +595,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +605,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91de76b8-4249-43c6-9292-bb547c422462 + - ca65c5aa-016a-47dc-be17-8547761c8827 status: 200 OK code: 200 - duration: 92.145163ms + duration: 137.376604ms - id: 12 request: proto: HTTP/1.1 @@ -625,7 +625,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -635,7 +635,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -644,9 +644,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0842323-2c79-4570-af79-3c6239d1326d + - 2b22030c-3507-41ad-acb1-1b4cd6a371a9 status: 200 OK code: 200 - duration: 88.751716ms + duration: 139.278088ms - id: 13 request: proto: HTTP/1.1 @@ -674,7 +674,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -684,7 +684,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -693,9 +693,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05243ffb-3a7c-41dd-a5e0-a682a589aff7 + - 3b5cc6c9-ea6d-4bdc-b7ff-f45d59fa1ed4 status: 404 Not Found code: 404 - duration: 47.243841ms + duration: 35.292102ms - id: 14 request: proto: HTTP/1.1 @@ -723,7 +723,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -733,7 +733,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -742,9 +742,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +752,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb007e16-6c89-4d98-84f4-2cdeeb99b3a4 + - cc918047-cd9f-4b6e-b45c-9fea37426558 status: 200 OK code: 200 - duration: 51.63191ms + duration: 95.397649ms - id: 15 request: proto: HTTP/1.1 @@ -772,7 +772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -791,9 +791,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +801,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c5fb609-d162-4e0a-b574-469fe6efe1bf + - 8897eea8-5d67-4798-8b2c-e1f3e3c38b3f status: 200 OK code: 200 - duration: 52.231981ms + duration: 101.493374ms - id: 16 request: proto: HTTP/1.1 @@ -821,7 +821,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -840,11 +840,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,12 +852,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32a35e74-2ac5-445d-b2ee-50ed4b973cb1 + - 34803890-52b6-4673-91ec-f882ba4d147d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 59.736404ms + duration: 104.327966ms - id: 17 request: proto: HTTP/1.1 @@ -874,7 +874,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -884,7 +884,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -893,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:36 GMT + - Wed, 15 Oct 2025 15:03:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cf1cd8f-4c95-4100-847b-b3d42c3b8a52 + - e27f6fd0-7487-43ff-bb2d-8c54deed2ccb status: 200 OK code: 200 - duration: 120.808943ms + duration: 149.289982ms - id: 18 request: proto: HTTP/1.1 @@ -923,7 +923,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -933,7 +933,7 @@ interactions: trailer: {} content_length: 440 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "440" @@ -942,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d536cac8-2905-4c57-b3b6-b758b104907c + - f50e8631-2a93-4699-bd2e-c679d3942574 status: 200 OK code: 200 - duration: 83.257177ms + duration: 120.98771ms - id: 19 request: proto: HTTP/1.1 @@ -972,7 +972,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -982,7 +982,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -991,9 +991,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 970f29ff-d1c1-46ce-ad1b-a83933b78a01 + - 288f012b-e59a-4551-b2f5-6b2b4124e044 status: 200 OK code: 200 - duration: 107.386046ms + duration: 144.055242ms - id: 20 request: proto: HTTP/1.1 @@ -1021,7 +1021,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -1031,7 +1031,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -1040,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83559749-3438-46c0-b225-07da4ca64821 + - 49a9bbd2-d8d8-4bf1-a71d-b23253d33cd7 status: 404 Not Found code: 404 - duration: 35.477313ms + duration: 23.691943ms - id: 21 request: proto: HTTP/1.1 @@ -1070,7 +1070,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -1080,7 +1080,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1089,9 +1089,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8138040f-8045-4e5d-92fc-461f2710c6bc + - 732d45fd-3fc5-40b1-adca-2394e9e2675f status: 200 OK code: 200 - duration: 40.860766ms + duration: 78.335714ms - id: 22 request: proto: HTTP/1.1 @@ -1119,7 +1119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -1138,9 +1138,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1148,10 +1148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ee3a95d-d751-4c23-9a55-eebabfe27fad + - 8e69b360-d645-4705-b915-ac6b09e0c3a9 status: 200 OK code: 200 - duration: 51.220738ms + duration: 99.909195ms - id: 23 request: proto: HTTP/1.1 @@ -1168,7 +1168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -1187,11 +1187,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,12 +1199,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b16f74-d6bf-4205-a521-495050123549 + - f779f659-e438-4b77-b9dc-cf2bc344ae2d X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.593093ms + duration: 86.401701ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1231,7 +1231,7 @@ interactions: trailer: {} content_length: 440 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"attached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - "440" @@ -1240,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1250,10 +1250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88a0e0c1-704a-4198-bfe5-614ea0eff442 + - f6f50a85-0a4e-4a06-a7ae-43157a67b51c status: 200 OK code: 200 - duration: 81.747029ms + duration: 143.603075ms - id: 25 request: proto: HTTP/1.1 @@ -1270,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1280,7 +1280,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -1289,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1299,10 +1299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec5e1876-f9a8-4417-b835-f9e23da8e448 + - b9bd8389-9e33-4c83-bcf3-6dcbeb8b0525 status: 200 OK code: 200 - duration: 100.821885ms + duration: 147.359795ms - id: 26 request: proto: HTTP/1.1 @@ -1319,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -1329,7 +1329,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -1338,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1348,10 +1348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ca8ef4b-50de-4616-8a67-bae1738d08ab + - 591b09f1-b597-4117-8abf-b2c879d179bd status: 404 Not Found code: 404 - duration: 26.748172ms + duration: 27.741061ms - id: 27 request: proto: HTTP/1.1 @@ -1368,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -1378,7 +1378,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -1387,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1397,10 +1397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 656c6217-f1b5-41d5-a791-464852a4edff + - 1b113429-9c10-4187-8f52-0c4e74c753fd status: 200 OK code: 200 - duration: 38.414344ms + duration: 149.16503ms - id: 28 request: proto: HTTP/1.1 @@ -1417,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -1436,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1446,10 +1446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 775a3dcf-c352-48ad-bea6-ef10c0cec534 + - 6f86c7e9-9bf6-42ec-bb1e-979cbef0b810 status: 200 OK code: 200 - duration: 64.028484ms + duration: 88.84981ms - id: 29 request: proto: HTTP/1.1 @@ -1466,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -1485,11 +1485,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:37 GMT + - Wed, 15 Oct 2025 15:03:28 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,12 +1497,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d013f5d0-4b7a-4fee-8a40-5f9c657dbe3e + - 4f50b2f7-d7f3-4a49-997e-f0cf01adff94 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 67.022702ms + duration: 109.290849ms - id: 30 request: proto: HTTP/1.1 @@ -1514,7 +1514,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -1529,22 +1529,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1552,10 +1552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 143743e4-fbe2-430d-88ef-53b92d8d2e03 + - 867f096f-d0d9-42a9-a9fe-191a98c450d8 status: 201 Created code: 201 - duration: 352.3841ms + duration: 763.475603ms - id: 31 request: proto: HTTP/1.1 @@ -1572,7 +1572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -1580,20 +1580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1601,10 +1601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8191e1f-d838-41fa-aa38-18b3fc704524 + - daf25aca-9900-474c-951b-7bf68ef38f8e status: 200 OK code: 200 - duration: 81.697947ms + duration: 120.719499ms - id: 32 request: proto: HTTP/1.1 @@ -1621,7 +1621,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1631,7 +1631,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -1640,9 +1640,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1650,10 +1650,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 434f15b5-df87-4cc7-87a2-21023d127542 + - 4ad91963-e032-40cd-8242-4dae414d5974 status: 200 OK code: 200 - duration: 104.078208ms + duration: 144.130716ms - id: 33 request: proto: HTTP/1.1 @@ -1670,7 +1670,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1680,7 +1680,7 @@ interactions: trailer: {} content_length: 2479 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"212.47.233.205","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]},"public_ips":[{"address":"51.158.97.50","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","netmask":"32","provisioning_mode":"dhcp","state":"attached","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2479" @@ -1689,9 +1689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:38 GMT + - Wed, 15 Oct 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1699,10 +1699,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5523327-5b52-4c75-bcc4-25905c30a4ff + - 2982f35b-64fc-4629-9587-c64c4dd76dfe status: 200 OK code: 200 - duration: 121.717875ms + duration: 163.610084ms - id: 34 request: proto: HTTP/1.1 @@ -1721,7 +1721,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: PATCH response: proto: HTTP/2.0 @@ -1729,20 +1729,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1750,10 +1750,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceb9b884-91ce-4f0c-ab97-0c9f33fb3708 + - 1f880495-50da-4c7b-a98e-bb60116126fe status: 200 OK code: 200 - duration: 473.767947ms + duration: 562.056735ms - id: 35 request: proto: HTTP/1.1 @@ -1770,7 +1770,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1778,20 +1778,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1799,10 +1799,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74cda9dd-a70a-4b95-afb4-9a9fc7f4373c + - c029a2fc-098d-4d48-b8e0-4ba696b90f6f status: 200 OK code: 200 - duration: 104.140473ms + duration: 167.665686ms - id: 36 request: proto: HTTP/1.1 @@ -1819,7 +1819,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1827,20 +1827,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1848,10 +1848,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ec9f0c2-2364-4bc1-851b-36f72f6f9631 + - 471afe7e-c9ad-42f3-a5b8-32ef75ce3d87 status: 200 OK code: 200 - duration: 93.319948ms + duration: 137.647687ms - id: 37 request: proto: HTTP/1.1 @@ -1863,14 +1863,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"server":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03"}' + body: '{"server":"274dd336-e713-44c0-a210-aeac0b85b35f"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: PATCH response: proto: HTTP/2.0 @@ -1878,20 +1878,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 436 + content_length: 439 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "436" + - "439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1899,10 +1899,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d085fc6b-963f-4efa-89f7-06f6373c366c + - ee27ec1b-7926-405e-a33f-37a1017dde93 status: 200 OK code: 200 - duration: 550.806922ms + duration: 636.386017ms - id: 38 request: proto: HTTP/1.1 @@ -1919,7 +1919,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1927,20 +1927,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:39 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1948,10 +1948,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d9725a6-72be-465a-859a-c0a272862fea + - de6cba71-a48d-48fc-836e-4620b35adb49 status: 200 OK code: 200 - duration: 88.145531ms + duration: 147.659964ms - id: 39 request: proto: HTTP/1.1 @@ -1968,7 +1968,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -1976,20 +1976,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1997,10 +1997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb26e008-bd6b-4d6e-8c13-3b35f36a8d15 + - b05ae92e-05c5-451e-8c62-a629ef5480df status: 200 OK code: 200 - duration: 102.486097ms + duration: 148.966632ms - id: 40 request: proto: HTTP/1.1 @@ -2017,7 +2017,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -2025,20 +2025,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2046,10 +2046,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f41152f1-f5c0-4edf-b172-03622be0d3fb + - d269ea0b-3bab-48f4-b2f2-af8be85fb0a4 status: 200 OK code: 200 - duration: 106.338694ms + duration: 139.472599ms - id: 41 request: proto: HTTP/1.1 @@ -2066,7 +2066,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2076,7 +2076,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -2085,9 +2085,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2095,10 +2095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3df9842-2149-46f9-9636-0775234935d2 + - e58491c0-2bd7-44f7-bb48-93034ce0ca59 status: 404 Not Found code: 404 - duration: 30.538723ms + duration: 23.905614ms - id: 42 request: proto: HTTP/1.1 @@ -2115,7 +2115,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2125,7 +2125,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2134,9 +2134,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2144,10 +2144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f5c9367-ef06-4851-9b03-b92fa052681b + - d7d5ebf9-e11a-45f2-9c16-8032e839c9cd status: 200 OK code: 200 - duration: 47.937474ms + duration: 85.633363ms - id: 43 request: proto: HTTP/1.1 @@ -2164,7 +2164,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -2183,9 +2183,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2193,10 +2193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a76da8fd-d17b-4072-b052-2f1be81d5fdd + - 071bf143-0fc0-4d03-bbe9-29e6e575cb73 status: 200 OK code: 200 - duration: 47.173369ms + duration: 96.152328ms - id: 44 request: proto: HTTP/1.1 @@ -2213,7 +2213,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -2232,11 +2232,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:31 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2244,12 +2244,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b646987a-d1b7-49fc-94ea-8aa363794663 + - 03c73e38-ff74-40c7-9076-6cfa4d3e03b8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.568417ms + duration: 100.200785ms - id: 45 request: proto: HTTP/1.1 @@ -2266,7 +2266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -2274,20 +2274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2295,10 +2295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c305c8d5-a7a8-46a4-8ee0-070c6ce9dcb9 + - 8d4fa1a4-c7b9-4b40-a46a-7b89c2b22d1c status: 200 OK code: 200 - duration: 105.343921ms + duration: 158.044468ms - id: 46 request: proto: HTTP/1.1 @@ -2315,7 +2315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -2323,20 +2323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2344,10 +2344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8dd50e96-213a-4812-8c28-6784582dcf0d + - 66fb9eec-4091-4ffb-a24c-2718ba58fa6e status: 200 OK code: 200 - duration: 123.994051ms + duration: 155.050696ms - id: 47 request: proto: HTTP/1.1 @@ -2364,7 +2364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -2372,20 +2372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 436 + content_length: 439 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "436" + - "439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:40 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2393,10 +2393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e8b989a-9e4e-4916-b145-b14086c725ca + - 54f0a4e4-b6ce-4839-ba56-647c40b68140 status: 200 OK code: 200 - duration: 75.784703ms + duration: 95.771805ms - id: 48 request: proto: HTTP/1.1 @@ -2413,7 +2413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -2421,20 +2421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 439 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2442,10 +2442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 962d8dd8-888d-412c-9d7d-e76f880a2c6f + - e339b5e2-95a5-4f27-93ad-be326585342f status: 200 OK code: 200 - duration: 83.027119ms + duration: 113.969893ms - id: 49 request: proto: HTTP/1.1 @@ -2462,7 +2462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -2470,20 +2470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 436 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "436" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2491,10 +2491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c04abd6b-99be-4dca-acc9-20a9114e7360 + - b7502b33-0f40-42ed-be49-88827476113e status: 200 OK code: 200 - duration: 91.019625ms + duration: 140.17658ms - id: 50 request: proto: HTTP/1.1 @@ -2511,7 +2511,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -2519,20 +2519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2540,10 +2540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2b171f7-337a-4f13-80a5-e576f98ad8b2 + - b730bf8e-81a1-4372-a66f-e3ce092028ea status: 200 OK code: 200 - duration: 81.042913ms + duration: 136.495982ms - id: 51 request: proto: HTTP/1.1 @@ -2560,7 +2560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2570,7 +2570,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -2579,9 +2579,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2589,10 +2589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01827cef-25be-43d0-a107-813ada73a2b5 + - aec4d63c-5da8-4518-8817-83c0fdfd459b status: 404 Not Found code: 404 - duration: 25.054063ms + duration: 38.708387ms - id: 52 request: proto: HTTP/1.1 @@ -2609,7 +2609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2619,7 +2619,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2628,9 +2628,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2638,10 +2638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4eff3e-860e-45b2-9259-4cf6564a1add + - b01cef5f-9bf3-40cd-bee5-a4699a96a136 status: 200 OK code: 200 - duration: 39.709082ms + duration: 74.339818ms - id: 53 request: proto: HTTP/1.1 @@ -2658,7 +2658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -2677,9 +2677,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2687,10 +2687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e838212b-309b-4e56-9350-d4e91d658d15 + - b67d15d0-c9bf-4ad8-bf95-ce3468b0c52a status: 200 OK code: 200 - duration: 52.062285ms + duration: 113.511885ms - id: 54 request: proto: HTTP/1.1 @@ -2707,7 +2707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -2726,11 +2726,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2738,12 +2738,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 516f9051-c831-4560-8080-14811cfc0b95 + - c1b70b06-e463-4c0b-8dde-388cf1cae7f8 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 53.941277ms + duration: 194.789217ms - id: 55 request: proto: HTTP/1.1 @@ -2760,7 +2760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -2768,20 +2768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 436 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":{"id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","name":"tf-srv-happy-galileo"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "436" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2789,10 +2789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26715970-8b51-40ac-991b-fd8eece28122 + - 2a05ea9c-4bbb-4abe-bf08-95f0004c0028 status: 200 OK code: 200 - duration: 67.752713ms + duration: 109.611465ms - id: 56 request: proto: HTTP/1.1 @@ -2809,7 +2809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -2817,20 +2817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 439 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":{"id":"274dd336-e713-44c0-a210-aeac0b85b35f","name":"tf-srv-reverent-wilbur"},"state":"pending","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2838,10 +2838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c6488cb-76f8-4686-85d1-2c87aefe26d7 + - 7586eeba-d543-48cf-932d-fddd3d7511ef status: 200 OK code: 200 - duration: 72.963355ms + duration: 134.205911ms - id: 57 request: proto: HTTP/1.1 @@ -2858,7 +2858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -2866,20 +2866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2887,10 +2887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bd3dcbb-fc8b-4a94-b571-1e4e26b9ae2f + - 4135afab-f49b-4f39-86c0-ff40ab015ced status: 200 OK code: 200 - duration: 132.878379ms + duration: 148.012897ms - id: 58 request: proto: HTTP/1.1 @@ -2907,7 +2907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2917,7 +2917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -2926,9 +2926,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2936,10 +2936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af22df2a-2923-4709-98d3-41126a6d0cf6 + - 7dd81dc5-5215-4bce-ab41-8a169c0f477c status: 404 Not Found code: 404 - duration: 31.749597ms + duration: 38.867687ms - id: 59 request: proto: HTTP/1.1 @@ -2956,7 +2956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -2966,7 +2966,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -2975,9 +2975,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2985,10 +2985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17a7a052-3721-411e-8020-49b769f153ed + - f7d492c2-247a-4754-b813-516a8b48d211 status: 200 OK code: 200 - duration: 62.456261ms + duration: 81.412985ms - id: 60 request: proto: HTTP/1.1 @@ -3005,7 +3005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -3024,9 +3024,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3034,10 +3034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12fa1b47-ed61-4d1b-8039-9c9e36af662e + - 69793b2a-e2a1-4d5b-93ed-0852e18b4de9 status: 200 OK code: 200 - duration: 54.507677ms + duration: 111.950088ms - id: 61 request: proto: HTTP/1.1 @@ -3054,7 +3054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -3073,11 +3073,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:41 GMT + - Wed, 15 Oct 2025 15:03:33 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3085,12 +3085,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80b49171-f33c-4894-8179-94559503c9ea + - ee68710a-f48d-4b22-9756-5819711e941b X-Total-Count: - "0" status: 200 OK code: 200 - duration: 62.684173ms + duration: 94.870317ms - id: 62 request: proto: HTTP/1.1 @@ -3107,7 +3107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3115,20 +3115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3136,10 +3136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e96989e6-5464-4f97-bb59-1af2a9a05e0f + - 533f5d35-2050-4191-b98e-4064336090fc status: 200 OK code: 200 - duration: 95.734529ms + duration: 131.405362ms - id: 63 request: proto: HTTP/1.1 @@ -3156,7 +3156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3164,20 +3164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2471 + content_length: 2477 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.99.0","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.158.65.45","dynamic":false,"family":"inet","gateway":"62.210.0.1","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2471" + - "2477" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3185,10 +3185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cee26d0-3ec7-47fc-b9cb-83349af4f814 + - ba426f5b-b953-4617-abba-608621ed8dda status: 200 OK code: 200 - duration: 109.956966ms + duration: 162.309033ms - id: 64 request: proto: HTTP/1.1 @@ -3207,7 +3207,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: PATCH response: proto: HTTP/2.0 @@ -3215,20 +3215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3236,10 +3236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45cef6a3-6cdd-41f8-8b7f-542a24642199 + - 0bd62043-0d02-4382-9cce-d52920a3c360 status: 200 OK code: 200 - duration: 451.050023ms + duration: 537.570897ms - id: 65 request: proto: HTTP/1.1 @@ -3256,7 +3256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3264,20 +3264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3285,10 +3285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63b13ac5-d53d-4dcc-9489-6ee1f7ef3b5a + - 449d8663-cedd-44e5-963e-8b117c6004e5 status: 200 OK code: 200 - duration: 102.074845ms + duration: 143.82008ms - id: 66 request: proto: HTTP/1.1 @@ -3305,7 +3305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3313,20 +3313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:42 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3334,10 +3334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b920ebc-619e-493d-af1c-e5ac6ecd941f + - af10239b-3097-499d-a0ff-bd30b31cd1fa status: 200 OK code: 200 - duration: 105.590216ms + duration: 160.911605ms - id: 67 request: proto: HTTP/1.1 @@ -3354,7 +3354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3362,20 +3362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3383,10 +3383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96c3e39a-235b-4097-b5d5-492524a8cc6c + - c9f82994-2d53-42d7-bc03-ba2b84c5bff6 status: 200 OK code: 200 - duration: 109.054604ms + duration: 137.574005ms - id: 68 request: proto: HTTP/1.1 @@ -3403,7 +3403,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -3413,7 +3413,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -3422,9 +3422,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3432,10 +3432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df95f890-7a5a-409f-8647-82346cd1cfa5 + - 4858db17-7ec0-41f4-9956-e3ae6987d6be status: 404 Not Found code: 404 - duration: 30.52062ms + duration: 26.241082ms - id: 69 request: proto: HTTP/1.1 @@ -3452,7 +3452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -3462,7 +3462,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3471,9 +3471,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3481,10 +3481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beefe298-a1fe-4870-bc81-b43c1c6cfb5f + - d9407208-075d-4c8b-872a-def84defb746 status: 200 OK code: 200 - duration: 43.919972ms + duration: 89.417639ms - id: 70 request: proto: HTTP/1.1 @@ -3501,7 +3501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -3520,9 +3520,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3530,10 +3530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bcfd33b-8ea6-413e-a6d7-1f07afa04ba5 + - 32631ece-ab0d-404d-bb83-5fda42f6e4ed status: 200 OK code: 200 - duration: 55.342192ms + duration: 123.092354ms - id: 71 request: proto: HTTP/1.1 @@ -3550,7 +3550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -3569,11 +3569,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,12 +3581,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d71943-5c64-4cfc-ba28-e6031ba8799a + - 3d20d48a-517b-49f8-9fcc-a3330e46bd47 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 56.600282ms + duration: 98.845549ms - id: 72 request: proto: HTTP/1.1 @@ -3603,7 +3603,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3611,20 +3611,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3632,10 +3632,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f35de40-e476-4725-b959-00999c97514e + - 905286fc-ed27-4ba2-ad76-d5416683c8dc status: 200 OK code: 200 - duration: 97.428727ms + duration: 139.523539ms - id: 73 request: proto: HTTP/1.1 @@ -3652,7 +3652,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3660,20 +3660,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3681,10 +3681,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a5a1348-3927-43a8-bfb8-b016f80542dc + - 706887a0-6534-481e-b480-f8033ea65014 status: 200 OK code: 200 - duration: 88.928811ms + duration: 136.664812ms - id: 74 request: proto: HTTP/1.1 @@ -3701,7 +3701,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -3709,20 +3709,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3730,10 +3730,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80b805d3-59fd-4fd6-8978-a441bc23d505 + - 9b03a21f-dc0e-4c71-b639-1845cd7b107d status: 200 OK code: 200 - duration: 73.835912ms + duration: 96.346877ms - id: 75 request: proto: HTTP/1.1 @@ -3750,7 +3750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -3758,20 +3758,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 1955 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,10 +3779,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d1dfbf2-db0b-4c55-8c7c-e2cf430a7e5f + - 714d4fec-1e12-4346-9006-767f986de0d1 status: 200 OK code: 200 - duration: 77.848664ms + duration: 136.431155ms - id: 76 request: proto: HTTP/1.1 @@ -3799,7 +3799,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -3807,20 +3807,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 364 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3828,10 +3828,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8259e7aa-2dea-4f55-bb6b-c11b32424106 + - 3a398df9-6b5a-4c09-8e32-80714c7cf2c6 status: 200 OK code: 200 - duration: 93.509657ms + duration: 137.907371ms - id: 77 request: proto: HTTP/1.1 @@ -3848,7 +3848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -3858,7 +3858,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -3867,9 +3867,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3877,10 +3877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb767ec3-debf-4cff-8441-f46b9eead2f5 + - 90356007-e07b-4de7-8bdf-694761ad466f status: 404 Not Found code: 404 - duration: 25.270654ms + duration: 35.174025ms - id: 78 request: proto: HTTP/1.1 @@ -3897,7 +3897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -3907,7 +3907,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -3916,9 +3916,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:43 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3926,10 +3926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c504209b-b50a-40e5-952d-78109743a046 + - 21460cd4-6903-4c4d-9c58-377824fd050f status: 200 OK code: 200 - duration: 49.361162ms + duration: 90.646053ms - id: 79 request: proto: HTTP/1.1 @@ -3946,7 +3946,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -3965,9 +3965,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3975,10 +3975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66919480-f5fb-410c-a15d-88b268c928fb + - a6267eab-0298-4d34-a700-1678e0a6b55a status: 200 OK code: 200 - duration: 59.452516ms + duration: 97.242856ms - id: 80 request: proto: HTTP/1.1 @@ -3995,7 +3995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -4014,11 +4014,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4026,12 +4026,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8cd5140-22ac-44e4-9dc7-6acefa082d91 + - 75cf8889-ec88-46d0-8d4f-fdfe2c17c220 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 72.274328ms + duration: 91.377564ms - id: 81 request: proto: HTTP/1.1 @@ -4048,7 +4048,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -4056,20 +4056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4077,10 +4077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dc70adb-7c33-47cf-9f86-f8f93a49a2c2 + - db2919dc-9044-4ebe-872d-1fcc3a21231a status: 200 OK code: 200 - duration: 69.274951ms + duration: 110.054679ms - id: 82 request: proto: HTTP/1.1 @@ -4097,7 +4097,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -4105,20 +4105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4126,10 +4126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a90951cb-348f-4002-94c9-98e355687162 + - 24533c3e-4dcf-4602-866b-5fb6d13cbdb5 status: 200 OK code: 200 - duration: 83.139826ms + duration: 116.474061ms - id: 83 request: proto: HTTP/1.1 @@ -4146,7 +4146,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4154,20 +4154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4175,10 +4175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e166d39-5f3f-4cd1-aec8-ad907598234f + - 2787fa15-f402-4ee1-9d04-28e67f1755d1 status: 200 OK code: 200 - duration: 89.925958ms + duration: 147.621267ms - id: 84 request: proto: HTTP/1.1 @@ -4195,7 +4195,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -4205,7 +4205,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -4214,9 +4214,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4224,10 +4224,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ae6d0fc-00e3-4f29-bd8a-c02b615ec7ac + - 46a15305-d051-48f5-8697-f2f0c5626fea status: 404 Not Found code: 404 - duration: 29.362073ms + duration: 38.225473ms - id: 85 request: proto: HTTP/1.1 @@ -4244,7 +4244,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -4254,7 +4254,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4263,9 +4263,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4273,10 +4273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba26338-34fb-4c05-94fe-56b2eacef7f5 + - 7262189b-074c-4e53-bbbe-16c36c0c52ef status: 200 OK code: 200 - duration: 42.848768ms + duration: 91.159665ms - id: 86 request: proto: HTTP/1.1 @@ -4293,7 +4293,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -4312,9 +4312,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4322,10 +4322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 581b9b4e-d8a0-42c0-86b7-a0d8c88eff97 + - 653172a2-36ac-4b98-94a5-de67fa29c2f7 status: 200 OK code: 200 - duration: 52.76631ms + duration: 118.269456ms - id: 87 request: proto: HTTP/1.1 @@ -4342,7 +4342,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -4361,11 +4361,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4373,12 +4373,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29228d57-0837-4c96-8c0e-d83dabcf25e5 + - 4bfa46dc-09ac-4444-a9a4-06b7e17fb845 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.370937ms + duration: 101.289281ms - id: 88 request: proto: HTTP/1.1 @@ -4395,7 +4395,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4403,20 +4403,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1951 + content_length: 1955 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:33.058567+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:23.958923+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1951" + - "1955" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:44 GMT + - Wed, 15 Oct 2025 15:03:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4424,10 +4424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f65a069f-d9b8-44b2-932e-1f9939fcdeeb + - 71e29a08-3bd6-43e1-b374-0c725e710c51 status: 200 OK code: 200 - duration: 98.116952ms + duration: 150.729084ms - id: 89 request: proto: HTTP/1.1 @@ -4446,7 +4446,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: PATCH response: proto: HTTP/2.0 @@ -4454,20 +4454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4475,10 +4475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d090540b-1dab-407b-b6cb-a1640dc78410 + - 5ad01250-6526-4c4e-af9c-e619bbbb5784 status: 200 OK code: 200 - duration: 490.367253ms + duration: 542.734199ms - id: 90 request: proto: HTTP/1.1 @@ -4495,7 +4495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4503,20 +4503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4524,10 +4524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bbfcd27d-5690-48ce-95f1-76bb67bb8f25 + - 43bd6b50-4464-45ac-aa95-8f8057a1553f status: 200 OK code: 200 - duration: 110.897947ms + duration: 150.359583ms - id: 91 request: proto: HTTP/1.1 @@ -4544,7 +4544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4552,20 +4552,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4573,10 +4573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c832b21a-09e2-498a-afe1-1c5f8b32b786 + - b4193a38-cc78-4e24-bb21-64024aba555f status: 200 OK code: 200 - duration: 99.237537ms + duration: 138.808743ms - id: 92 request: proto: HTTP/1.1 @@ -4593,7 +4593,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -4603,7 +4603,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -4612,9 +4612,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4622,10 +4622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a55349-1ca1-47d4-9c0c-958461854215 + - 8910ce8d-93b6-40c3-951c-cdb375c16f5f status: 404 Not Found code: 404 - duration: 30.908258ms + duration: 27.443997ms - id: 93 request: proto: HTTP/1.1 @@ -4642,7 +4642,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -4652,7 +4652,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -4661,9 +4661,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4671,10 +4671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 619ab22e-c8cc-42bf-befb-822dec52fd00 + - d099af41-ceb9-47ee-b6b3-89a83178a9ce status: 200 OK code: 200 - duration: 43.22808ms + duration: 90.262515ms - id: 94 request: proto: HTTP/1.1 @@ -4691,7 +4691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -4710,9 +4710,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4720,10 +4720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb0e05cc-e6d4-4c44-8c0e-bcc9a38fdbd4 + - e5ba6ddf-733f-49f7-8ef9-6fd78f198f13 status: 200 OK code: 200 - duration: 56.240155ms + duration: 93.342628ms - id: 95 request: proto: HTTP/1.1 @@ -4740,7 +4740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -4759,11 +4759,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4771,12 +4771,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e5a1f43-2060-492f-a583-e6580da4a00f + - 0f3872be-3fba-4dea-bad2-896a0e31b973 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.28806ms + duration: 106.349958ms - id: 96 request: proto: HTTP/1.1 @@ -4793,7 +4793,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4801,20 +4801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4822,10 +4822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0197d08c-ad2d-4f36-969b-c20f014f514e + - 5f06c485-09fe-4517-b8c4-2031032a538b status: 200 OK code: 200 - duration: 95.936081ms + duration: 161.015384ms - id: 97 request: proto: HTTP/1.1 @@ -4842,7 +4842,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4850,20 +4850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:45 GMT + - Wed, 15 Oct 2025 15:03:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4871,10 +4871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d19ca5a-e674-4cfa-91e7-0e334a3a27da + - 29d8b7bb-9595-4126-a0a5-a4353cb3f72f status: 200 OK code: 200 - duration: 105.524333ms + duration: 141.712496ms - id: 98 request: proto: HTTP/1.1 @@ -4891,7 +4891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: GET response: proto: HTTP/2.0 @@ -4899,20 +4899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 363 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.99.0","id":"f6f5181d-2547-47dc-b75a-42b2934e949c","ipam_id":"077fd6b8-2fd1-4eff-a4e2-db486bca72ad","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.65.45","id":"1fb6bb11-11ed-4057-9b61-b940c46f8e81","ipam_id":"aee43737-2804-42a6-96e5-772f54130f72","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "363" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4920,10 +4920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e6becfa-cf9e-4ab0-9c08-f798f447f663 + - 3726f401-81a1-4470-9271-6da716c81a19 status: 200 OK code: 200 - duration: 72.801674ms + duration: 107.805666ms - id: 99 request: proto: HTTP/1.1 @@ -4940,7 +4940,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -4948,20 +4948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 366 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"212.47.233.205","id":"c429e36b-083d-4ad8-9f47-1a6edc00f1b9","ipam_id":"8cad288d-55cf-4ac3-bba5-8be13dc17b18","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","prefix":null,"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"069c1051-d702-410a-9709-3fcdd99dfa1b","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "366" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4969,10 +4969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21d416a-b165-42c4-a11e-f832d0032754 + - 9843828e-1055-4153-a748-f33be901f45e status: 200 OK code: 200 - duration: 77.095268ms + duration: 126.354332ms - id: 100 request: proto: HTTP/1.1 @@ -4989,7 +4989,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -4997,20 +4997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5018,10 +5018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a77fb74f-f99c-48c5-9694-61a4e8fdb003 + - 7dfe9a05-0a85-45d8-b61c-c9430426d9e7 status: 200 OK code: 200 - duration: 110.351034ms + duration: 134.635543ms - id: 101 request: proto: HTTP/1.1 @@ -5038,7 +5038,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -5048,7 +5048,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -5057,9 +5057,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5067,10 +5067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07ff3618-a794-40c5-8ab3-9c424cac896a + - de8f1917-a51d-448b-9059-1350fbcb9e1a status: 404 Not Found code: 404 - duration: 27.353512ms + duration: 29.628281ms - id: 102 request: proto: HTTP/1.1 @@ -5087,7 +5087,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -5097,7 +5097,7 @@ interactions: trailer: {} content_length: 701 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[{"created_at":"2025-10-08T23:04:29.658301Z","id":"925c5376-d451-479f-b12d-e4f7ca409871","product_resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:29.658301Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:19.640189Z","id":"bd8d8cae-a099-4a47-9275-dbb3db06d8e0","product_resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:19.640189Z","zone":"fr-par-1"}' headers: Content-Length: - "701" @@ -5106,9 +5106,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5116,10 +5116,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8991c24b-8931-4abb-95c4-edb8212db2dd + - 411e6f21-6e24-4626-86b3-ede95ed6974a status: 200 OK code: 200 - duration: 44.322016ms + duration: 96.023293ms - id: 103 request: proto: HTTP/1.1 @@ -5136,7 +5136,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/user_data method: GET response: proto: HTTP/2.0 @@ -5155,9 +5155,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5165,10 +5165,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faa79bfa-e303-468e-b4d9-b2f600cc7c97 + - c43e4c13-2820-44c9-b00e-e6169a3fcc39 status: 200 OK code: 200 - duration: 60.155237ms + duration: 97.002639ms - id: 104 request: proto: HTTP/1.1 @@ -5185,7 +5185,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/private_nics method: GET response: proto: HTTP/2.0 @@ -5204,11 +5204,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5216,12 +5216,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a89a99a-a1bf-4bab-92cf-d6127e490db9 + - 0210927b-7628-4828-bf37-b1df169fcdff X-Total-Count: - "0" status: 200 OK code: 200 - duration: 61.651178ms + duration: 97.331956ms - id: 105 request: proto: HTTP/1.1 @@ -5238,7 +5238,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -5246,20 +5246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2474 + content_length: 2476 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:44.844319+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2474" + - "2476" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:46 GMT + - Wed, 15 Oct 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5267,10 +5267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5884e88-9b2a-4557-a684-080ccf7f4285 + - 10346e5a-6349-4b6e-a677-0ee7ca0ccf6e status: 200 OK code: 200 - duration: 124.904744ms + duration: 164.433742ms - id: 106 request: proto: HTTP/1.1 @@ -5287,7 +5287,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c429e36b-083d-4ad8-9f47-1a6edc00f1b9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/1fb6bb11-11ed-4057-9b61-b940c46f8e81 method: DELETE response: proto: HTTP/2.0 @@ -5304,9 +5304,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5314,10 +5314,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4b650a8-e1e5-4135-a785-a7207913875a + - 61c2654f-9c33-4bdf-b342-d26e4256ae83 status: 204 No Content code: 204 - duration: 268.678234ms + duration: 327.88754ms - id: 107 request: proto: HTTP/1.1 @@ -5334,7 +5334,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/f6f5181d-2547-47dc-b75a-42b2934e949c + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2476 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:37.511650+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2476" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:03:40 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 58f80b84-b53a-4900-9ac6-689bc442870b + status: 200 OK + code: 200 + duration: 193.250835ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: DELETE response: proto: HTTP/2.0 @@ -5351,9 +5400,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5361,11 +5410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b7234d4-7afa-4fd5-8d86-a3b7a2500029 + - 8d9808e7-0a53-4848-ab96-13e5f25f8056 status: 204 No Content code: 204 - duration: 268.740729ms - - id: 108 + duration: 365.95548ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5383,7 +5432,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f/action method: POST response: proto: HTTP/2.0 @@ -5393,7 +5442,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03/action","href_result":"/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03","id":"59bbdf09-4a3a-47de-b0b8-d15846263ffd","progress":0,"started_at":"2025-10-08T23:04:47.087158+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/274dd336-e713-44c0-a210-aeac0b85b35f/action","href_result":"/servers/274dd336-e713-44c0-a210-aeac0b85b35f","id":"30fc8d3a-ac8c-46a6-b5d0-0f2862ce6ec0","progress":0,"started_at":"2025-10-15T15:03:40.374705+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -5402,11 +5451,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/59bbdf09-4a3a-47de-b0b8-d15846263ffd + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/30fc8d3a-ac8c-46a6-b5d0-0f2862ce6ec0 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5414,11 +5463,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35515cfa-a91d-4002-9aae-3db0be223989 + - a8a9e36d-5006-446f-89b0-a5c8830925e5 status: 202 Accepted code: 202 - duration: 199.775241ms - - id: 109 + duration: 249.334431ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5434,7 +5483,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -5442,20 +5491,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2437 + content_length: 2439 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:04:29.565380+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-happy-galileo","id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"38","hypervisor_id":"302","node_id":"29","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:79","maintenances":[],"modification_date":"2025-10-08T23:04:46.926341+00:00","name":"tf-srv-happy-galileo","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"212.47.233.121","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"d5fea682-b791-4b19-bdd6-9d5add27f9f3","ipam_id":"68e8952c-0026-4bca-93d3-cf1aa655a6b4","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"b9117291-497f-493a-9718-88def35a139f","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:19.481152+00:00","dynamic_ip_required":true,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-reverent-wilbur","id":"274dd336-e713-44c0-a210-aeac0b85b35f","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:32.472362+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"8ac1fe52-01dc-4dc1-8578-73ec5d126648","modification_date":"2025-09-12T09:19:32.472362+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"39","hypervisor_id":"602","node_id":"15","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:17","maintenances":[],"modification_date":"2025-10-15T15:03:40.177074+00:00","name":"tf-srv-reverent-wilbur","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]},"public_ips":[{"address":"51.15.236.240","dynamic":true,"family":"inet","gateway":"62.210.0.1","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"51b23c54-618a-4163-8e2d-f5cac478ed6f","netmask":"32","provisioning_mode":"dhcp","state":"pending","tags":[]}],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":["terraform-test","scaleway_instance_server","reserved_ip"],"volumes":{"0":{"boot":false,"id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2437" + - "2439" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:47 GMT + - Wed, 15 Oct 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5463,11 +5512,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258fbfe6-540b-49ff-b3b3-5c1ba43a0d22 + - e74a4ae0-3de4-4976-b1b2-38c42a68a0d9 status: 200 OK code: 200 - duration: 133.857028ms - - id: 110 + duration: 137.644514ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5483,7 +5532,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -5493,7 +5542,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","type":"not_found"}' headers: Content-Length: - "143" @@ -5502,9 +5551,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5512,11 +5561,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bbcc30c-8cf6-4970-8da2-ee1c2f83553c + - bdd4e67b-abbb-41e5-9ee0-0f93b2a5e370 status: 404 Not Found code: 404 - duration: 53.598359ms - - id: 111 + duration: 55.269303ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5532,7 +5581,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -5542,7 +5591,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b9117291-497f-493a-9718-88def35a139f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","type":"not_found"}' headers: Content-Length: - "143" @@ -5551,9 +5600,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5561,11 +5610,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fc0ea03-9399-4a54-9220-f584b7d82b27 + - 24a747e0-51a2-4236-bcba-6695bdc97cc8 status: 404 Not Found code: 404 - duration: 25.213477ms - - id: 112 + duration: 27.972128ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5581,7 +5630,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: GET response: proto: HTTP/2.0 @@ -5591,7 +5640,7 @@ interactions: trailer: {} content_length: 494 uncompressed: false - body: '{"created_at":"2025-10-08T23:04:29.658301Z","id":"b9117291-497f-493a-9718-88def35a139f","last_detached_at":"2025-10-08T23:04:50.810488Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"44693172-d6a3-49b0-b56f-011f492e4dfa","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-08T23:04:50.810488Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-10-15T15:03:19.640189Z","id":"8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d","last_detached_at":"2025-10-15T15:03:42.386894Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"df785211-983d-4dbe-b7b7-ddcc1dfcfc60","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-15T15:03:42.386894Z","zone":"fr-par-1"}' headers: Content-Length: - "494" @@ -5600,9 +5649,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5610,11 +5659,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1989226-99b4-4eca-831a-096cec8a37b7 + - 5273bfa6-4cbc-4580-a7ca-4e7b9b183e2d status: 200 OK code: 200 - duration: 42.172492ms - - id: 113 + duration: 81.350717ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5630,7 +5679,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b9117291-497f-493a-9718-88def35a139f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8abd88d2-e9fa-439a-a0b2-55a6cc22ce9d method: DELETE response: proto: HTTP/2.0 @@ -5647,9 +5696,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5657,11 +5706,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db8e9b59-ad5d-4f88-9683-88d296d63131 + - 04d64e9b-4496-4b76-bf22-2f1c89d925de status: 204 No Content code: 204 - duration: 76.414475ms - - id: 114 + duration: 157.432339ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5677,7 +5726,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/42a34255-b0eb-4ec9-8737-9caa2c3e8d03 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/274dd336-e713-44c0-a210-aeac0b85b35f method: GET response: proto: HTTP/2.0 @@ -5687,7 +5736,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"42a34255-b0eb-4ec9-8737-9caa2c3e8d03","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"274dd336-e713-44c0-a210-aeac0b85b35f","type":"not_found"}' headers: Content-Length: - "143" @@ -5696,9 +5745,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:04:52 GMT + - Wed, 15 Oct 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5706,7 +5755,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6502756-9095-417a-b60d-4b4cf400dee1 + - d7dd9cbe-54e7-426b-82d2-55541555c547 status: 404 Not Found code: 404 - duration: 65.915566ms + duration: 55.424623ms diff --git a/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml b/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml index 19c56b2f7..f39bbb6f0 100644 --- a/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-from-s3.cassette.yaml @@ -9,7 +9,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -18,16 +18,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c9bd2301-46a1-4c99-b98f-b5dfc14e36a4 + - aa797379-ed9e-44f4-87a0-8d3ae0bcc5eb Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150709Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150259Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: PUT response: proto: HTTP/2.0 @@ -42,16 +42,16 @@ interactions: Content-Length: - "0" Date: - - Mon, 18 Aug 2025 15:07:09 GMT + - Wed, 15 Oct 2025 15:02:59 GMT Location: - - /test-acc-scaleway-instance-snapshot-646487683817124346 + - /test-acc-scaleway-instance-snapshot-689159877034620738 X-Amz-Id-2: - - txg74f14cc607ba4b4d8f18-0068a3419d + - txg5c52665be4024a118863-0068efb7a3 X-Amz-Request-Id: - - txg74f14cc607ba4b4d8f18-0068a3419d + - txg5c52665be4024a118863-0068efb7a3 status: 200 OK code: 200 - duration: 1.390248702s + duration: 3.90455116s - id: 1 request: proto: HTTP/1.1 @@ -60,7 +60,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -69,11 +69,11 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - db195422-0927-4783-be26-fadea00a0cac + - 08f9538d-5b28-492e-961e-835f052c680f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,Z,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e X-Amz-Acl: - private X-Amz-Checksum-Crc32: @@ -81,8 +81,8 @@ interactions: X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150711Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?acl= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -97,14 +97,14 @@ interactions: Content-Length: - "0" Date: - - Mon, 18 Aug 2025 15:07:11 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txgfb8898ec2912468d980a-0068a3419f + - txg63ec2673e7a749f5a45c-0068efb7a7 X-Amz-Request-Id: - - txgfb8898ec2912468d980a-0068a3419f + - txg63ec2673e7a749f5a45c-0068efb7a7 status: 200 OK code: 200 - duration: 1.219743098s + duration: 223.144447ms - id: 2 request: proto: HTTP/1.1 @@ -113,7 +113,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -122,16 +122,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 85ef60b0-0730-4f72-b1ec-e896a94ff9c3 + - 6547fb37-12ec-4221-b917-14643ca56fae Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150712Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?acl= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -143,21 +143,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:12 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txgbb670d82328f4e549f72-0068a341a0 + - txg335d3aa6d9314ee78c0a-0068efb7a7 X-Amz-Request-Id: - - txgbb670d82328f4e549f72-0068a341a0 + - txg335d3aa6d9314ee78c0a-0068efb7a7 status: 200 OK code: 200 - duration: 116.520753ms + duration: 144.894552ms - id: 3 request: proto: HTTP/1.1 @@ -166,7 +166,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -175,16 +175,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5bcdddd2-d07a-458e-8478-f9562ad09752 + - 8bef4253-3141-4fd7-abe9-c62a0f40e363 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150712Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?object-lock= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -194,21 +194,21 @@ interactions: trailer: {} content_length: 323 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg78d29995ec804647a493-0068a341a0txg78d29995ec804647a493-0068a341a0/test-acc-scaleway-instance-snapshot-646487683817124346 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1428b3a4d8d74bbdbd58-0068efb7a7txg1428b3a4d8d74bbdbd58-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "323" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:12 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg78d29995ec804647a493-0068a341a0 + - txg1428b3a4d8d74bbdbd58-0068efb7a7 X-Amz-Request-Id: - - txg78d29995ec804647a493-0068a341a0 + - txg1428b3a4d8d74bbdbd58-0068efb7a7 status: 404 Not Found code: 404 - duration: 115.736472ms + duration: 130.240642ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +217,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -226,16 +226,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0ab0f878-b69c-4d2d-864c-4a665e8a7623 + - cd94262a-ae50-4a46-a9f2-3c2f94c87b61 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150712Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -247,21 +247,21 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-instance-snapshot-6464876838171243461000false + test-acc-scaleway-instance-snapshot-6891598770346207381000false headers: Content-Length: - "280" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:12 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg80ff6f6d6f0347cca4fe-0068a341a0 + - txge35f12cd4daa454bb0f6-0068efb7a7 X-Amz-Request-Id: - - txg80ff6f6d6f0347cca4fe-0068a341a0 + - txge35f12cd4daa454bb0f6-0068efb7a7 status: 200 OK code: 200 - duration: 278.395508ms + duration: 113.914257ms - id: 5 request: proto: HTTP/1.1 @@ -270,7 +270,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -279,16 +279,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fd1e519d-f0d7-4f13-af68-952f4f9fa32a + - a00b44ea-62af-49b8-b4c2-fb3b2344f376 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150712Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?tagging= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -298,21 +298,21 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg769c73f8818b49cbbeee-0068a341a0txg769c73f8818b49cbbeee-0068a341a0/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchTagSetThe TagSet does not existtxg42448f7557194e69b8a8-0068efb7a7txg42448f7557194e69b8a8-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "347" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:12 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg769c73f8818b49cbbeee-0068a341a0 + - txg42448f7557194e69b8a8-0068efb7a7 X-Amz-Request-Id: - - txg769c73f8818b49cbbeee-0068a341a0 + - txg42448f7557194e69b8a8-0068efb7a7 status: 404 Not Found code: 404 - duration: 40.507674ms + duration: 43.799828ms - id: 6 request: proto: HTTP/1.1 @@ -321,7 +321,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -330,16 +330,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 6b5bca07-10d5-4fac-9b29-b8c1df9fb3b2 + - fb317ad9-b50a-45f0-aafb-62633c8a0ff1 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150713Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?cors= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -349,21 +349,21 @@ interactions: trailer: {} content_length: 291 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg1ecff0b3ad4d4dcd8f74-0068a341a1txg1ecff0b3ad4d4dcd8f74-0068a341a1/test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg01007a6368f2417494d1-0068efb7a7txg01007a6368f2417494d1-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "291" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg1ecff0b3ad4d4dcd8f74-0068a341a1 + - txg01007a6368f2417494d1-0068efb7a7 X-Amz-Request-Id: - - txg1ecff0b3ad4d4dcd8f74-0068a341a1 + - txg01007a6368f2417494d1-0068efb7a7 status: 404 Not Found code: 404 - duration: 40.759427ms + duration: 50.263691ms - id: 7 request: proto: HTTP/1.1 @@ -372,7 +372,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -381,16 +381,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 323663ae-86da-4187-974d-0c8b84118080 + - a5d2f081-9086-4491-9574-c02a58da588a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150713Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?versioning= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -409,14 +409,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg9188925e540448e2ba4b-0068a341a1 + - txgb1b09e558e3e4db89550-0068efb7a7 X-Amz-Request-Id: - - txg9188925e540448e2ba4b-0068a341a1 + - txgb1b09e558e3e4db89550-0068efb7a7 status: 200 OK code: 200 - duration: 112.045384ms + duration: 5.785923ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -434,16 +434,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c3c2dc41-46a8-483f-a3f4-7d282ab61d98 + - d182bdd4-3a9c-45fe-bd94-8c0e8b977552 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150713Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?lifecycle= + - 20251015T150303Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -453,21 +453,21 @@ interactions: trailer: {} content_length: 380 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgaf536240fca740edab48-0068a341a1txgaf536240fca740edab48-0068a341a1/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg74124894226548b78628-0068efb7a7txg74124894226548b78628-0068efb7a7/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "380" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txgaf536240fca740edab48-0068a341a1 + - txg74124894226548b78628-0068efb7a7 X-Amz-Request-Id: - - txgaf536240fca740edab48-0068a341a1 + - txg74124894226548b78628-0068efb7a7 status: 404 Not Found code: 404 - duration: 111.363433ms + duration: 11.034158ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: content_length: 196669 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: !!binary | @@ -4232,7 +4232,7 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a9b866b2-f5f7-48bf-90e3-2bf165f53f3f + - dea98b2c-73ef-4200-938c-190a3db2c620 Amz-Sdk-Request: - attempt=1; max=3 Content-Encoding: @@ -4240,16 +4240,16 @@ interactions: Content-Type: - application/octet-stream User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,Z,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,Z,e X-Amz-Content-Sha256: - STREAMING-UNSIGNED-PAYLOAD-TRAILER X-Amz-Date: - - 20250818T150713Z + - 20251015T150303Z X-Amz-Decoded-Content-Length: - "196624" X-Amz-Trailer: - x-amz-checksum-crc32 - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=PutObject + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=PutObject method: PUT response: proto: HTTP/2.0 @@ -4264,7 +4264,7 @@ interactions: Content-Length: - "0" Date: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' X-Amz-Checksum-Crc32: @@ -4272,12 +4272,12 @@ interactions: X-Amz-Checksum-Type: - FULL_OBJECT X-Amz-Id-2: - - txgabd882d5f42e43b0a6f0-0068a341a1 + - txg737bce7458744ed8a5ed-0068efb7a7 X-Amz-Request-Id: - - txgabd882d5f42e43b0a6f0-0068a341a1 + - txg737bce7458744ed8a5ed-0068efb7a7 status: 200 OK code: 200 - duration: 4.570818759s + duration: 4.115790392s - id: 10 request: proto: HTTP/1.1 @@ -4286,7 +4286,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4295,16 +4295,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d9663bbf-2607-464f-8145-1a93421428a3 + - f6b38f3b-1a14-48aa-b8da-e6cc78c48ea3 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150717Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251015T150307Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -4323,18 +4323,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 18 Aug 2025 15:07:17 GMT + - Wed, 15 Oct 2025 15:03:07 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg6df0ad124a2e44bfb570-0068a341a5 + - txg350e11a1f3064495841c-0068efb7ab X-Amz-Request-Id: - - txg6df0ad124a2e44bfb570-0068a341a5 + - txg350e11a1f3064495841c-0068efb7ab status: 200 OK code: 200 - duration: 52.507629ms + duration: 17.167942ms - id: 11 request: proto: HTTP/1.1 @@ -4343,7 +4343,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4352,16 +4352,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 00fe5742-d025-4dcc-8642-38047352aa13 + - 0addcf1c-e71b-4206-b6ac-8e1a2a8820ae Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150717Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251015T150307Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -4380,14 +4380,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:17 GMT + - Wed, 15 Oct 2025 15:03:07 GMT X-Amz-Id-2: - - txg2753d04b12b74d2e8ec1-0068a341a5 + - txg7a90982b52074c0c9cbc-0068efb7ab X-Amz-Request-Id: - - txg2753d04b12b74d2e8ec1-0068a341a5 + - txg7a90982b52074c0c9cbc-0068efb7ab status: 200 OK code: 200 - duration: 57.634412ms + duration: 14.891787ms - id: 12 request: proto: HTTP/1.1 @@ -4396,7 +4396,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4405,16 +4405,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fd10cf47-a86d-45fd-8eb7-fc1cb8e5418a + - 491f5218-d28c-4545-a88a-2cd47849c0cc Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150717Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251015T150307Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -4426,21 +4426,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:18 GMT + - Wed, 15 Oct 2025 15:03:07 GMT X-Amz-Id-2: - - txg2fa83f5ae23644639960-0068a341a6 + - txg44c299434507492881cf-0068efb7ab X-Amz-Request-Id: - - txg2fa83f5ae23644639960-0068a341a6 + - txg44c299434507492881cf-0068efb7ab status: 200 OK code: 200 - duration: 122.654647ms + duration: 111.252313ms - id: 13 request: proto: HTTP/1.1 @@ -4452,13 +4452,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-acc-snapshot-import-default","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","volume_type":"l_ssd","bucket":"test-acc-scaleway-instance-snapshot-646487683817124346","key":"test-acc-instance-snapshot.qcow2"}' + body: '{"name":"test-acc-snapshot-import-default","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","bucket":"test-acc-scaleway-instance-snapshot-689159877034620738","key":"test-acc-instance-snapshot.qcow2"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots method: POST response: @@ -4469,7 +4469,7 @@ interactions: trailer: {} content_length: 774 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:21.879003+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"importing","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"import_snapshot","href_from":"/snapshots","href_result":"snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82","id":"325de1f1-bc00-4695-97bc-a1a3472d42f1","progress":0,"started_at":"2025-08-18T15:07:22.074588+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:08.959531+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"importing","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"import_snapshot","href_from":"/snapshots","href_result":"snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183","id":"5aac2d01-db3f-41ab-ae90-39b5de3aa2d7","progress":0,"started_at":"2025-10-15T15:03:09.086388+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "774" @@ -4478,9 +4478,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:22 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4488,10 +4488,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b35efdc-e876-44d7-bb29-56b5e60ab8fb + - 87f525c2-cd92-4e8d-9399-bbb70bea02a0 status: 201 Created code: 201 - duration: 3.993780266s + duration: 1.08227353s - id: 14 request: proto: HTTP/1.1 @@ -4507,8 +4507,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -4518,7 +4518,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:21.879003+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"importing","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:08.959531+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"importing","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -4527,9 +4527,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:22 GMT + - Wed, 15 Oct 2025 15:03:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4537,10 +4537,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cd9ba47-680d-4a01-922a-c3ba6c74aaa2 + - 239f037d-ee46-4bbd-a244-e2bbd59ee919 status: 200 OK code: 200 - duration: 60.037272ms + duration: 110.73708ms - id: 15 request: proto: HTTP/1.1 @@ -4556,8 +4556,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -4567,7 +4567,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:26.376948+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:10.571165+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -4576,9 +4576,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:28 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4586,10 +4586,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97df3084-c1fc-4081-87de-97d20c11b29a + - e595ac75-672d-465d-acd6-5db37902eff3 status: 200 OK code: 200 - duration: 1.524950227s + duration: 111.562843ms - id: 16 request: proto: HTTP/1.1 @@ -4605,8 +4605,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -4616,7 +4616,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:26.376948+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:10.571165+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -4625,9 +4625,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:28 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4635,10 +4635,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0751bce0-c49e-4f6c-bb23-ad14bbe49bc7 + - 0c71d4c4-265e-4aab-9537-f50d46418269 status: 200 OK code: 200 - duration: 80.160254ms + duration: 104.127649ms - id: 17 request: proto: HTTP/1.1 @@ -4654,8 +4654,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -4665,7 +4665,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:26.376948+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:10.571165+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -4674,9 +4674,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:28 GMT + - Wed, 15 Oct 2025 15:03:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4684,10 +4684,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52ff33fe-8182-4af8-bad1-5b91e7548bff + - 41bc33ba-5efc-4c39-b177-9f15b4c195f5 status: 200 OK code: 200 - duration: 72.868296ms + duration: 89.99272ms - id: 18 request: proto: HTTP/1.1 @@ -4696,7 +4696,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4705,16 +4705,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4e6d676e-c0c1-4323-a770-0562a4cd9f0f + - 753d13f6-1fba-48bf-b310-7112150e108b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150729Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?acl= + - 20251015T150314Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -4726,21 +4726,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:29 GMT + - Wed, 15 Oct 2025 15:03:14 GMT X-Amz-Id-2: - - txg651a5ad271df4c97b044-0068a341b1 + - txgd7bb8329e3d14e0b99fa-0068efb7b2 X-Amz-Request-Id: - - txg651a5ad271df4c97b044-0068a341b1 + - txgd7bb8329e3d14e0b99fa-0068efb7b2 status: 200 OK code: 200 - duration: 1.495361657s + duration: 127.102354ms - id: 19 request: proto: HTTP/1.1 @@ -4749,7 +4749,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4758,16 +4758,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e154c973-8956-4fef-abaf-981f2d830d44 + - 14b2903f-2e5f-48e7-912d-a86c61f2a284 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150730Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?object-lock= + - 20251015T150314Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -4777,21 +4777,21 @@ interactions: trailer: {} content_length: 323 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg9b3328f75ee7445e959a-0068a341b2txg9b3328f75ee7445e959a-0068a341b2/test-acc-scaleway-instance-snapshot-646487683817124346 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg7f437d581e7049ada249-0068efb7b2txg7f437d581e7049ada249-0068efb7b2/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "323" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:30 GMT + - Wed, 15 Oct 2025 15:03:14 GMT X-Amz-Id-2: - - txg9b3328f75ee7445e959a-0068a341b2 + - txg7f437d581e7049ada249-0068efb7b2 X-Amz-Request-Id: - - txg9b3328f75ee7445e959a-0068a341b2 + - txg7f437d581e7049ada249-0068efb7b2 status: 404 Not Found code: 404 - duration: 781.073934ms + duration: 93.376391ms - id: 20 request: proto: HTTP/1.1 @@ -4800,7 +4800,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4809,16 +4809,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0a4262bf-dcd6-4c4f-b157-02f1adc2f796 + - 8c68d34a-7aa7-4c0a-aaf4-b9d402513aee Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150731Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -4830,21 +4830,21 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-instance-snapshot-6464876838171243461000falsetest-acc-instance-snapshot.qcow22025-08-18T15:07:13.000Z"59868f85d88d34ee79e32759dad70bf7"196624fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT + test-acc-scaleway-instance-snapshot-6891598770346207381000falsetest-acc-instance-snapshot.qcow22025-10-15T15:03:03.000Z"59868f85d88d34ee79e32759dad70bf7"196624105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARDCRC32FULL_OBJECT headers: Content-Length: - "789" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:31 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg451858bacb134704b49f-0068a341b3 + - txg9225ee37836d44379981-0068efb7b3 X-Amz-Request-Id: - - txg451858bacb134704b49f-0068a341b3 + - txg9225ee37836d44379981-0068efb7b3 status: 200 OK code: 200 - duration: 1.307998902s + duration: 114.923562ms - id: 21 request: proto: HTTP/1.1 @@ -4853,7 +4853,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4862,16 +4862,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - eb50bdf7-4ce4-45f4-95b6-b0cce4879474 + - 5a38413b-610c-4737-bd05-e57244ea508a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150732Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?tagging= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -4881,21 +4881,21 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg0a1d617a7af9455ca477-0068a341b4txg0a1d617a7af9455ca477-0068a341b4/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchTagSetThe TagSet does not existtxge952751684ea432e8640-0068efb7b3txge952751684ea432e8640-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "347" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:32 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg0a1d617a7af9455ca477-0068a341b4 + - txge952751684ea432e8640-0068efb7b3 X-Amz-Request-Id: - - txg0a1d617a7af9455ca477-0068a341b4 + - txge952751684ea432e8640-0068efb7b3 status: 404 Not Found code: 404 - duration: 1.234751624s + duration: 43.822576ms - id: 22 request: proto: HTTP/1.1 @@ -4904,7 +4904,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4913,16 +4913,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1a8145a2-c060-4cc0-9a8a-6627015067ee + - 0e9c70a4-3fb6-4149-97d5-13aac3bfd30d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150733Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?cors= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -4932,21 +4932,21 @@ interactions: trailer: {} content_length: 291 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg685656ff567c4f339567-0068a341b6txg685656ff567c4f339567-0068a341b6/test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg6f3f335df6444e30b7e5-0068efb7b3txg6f3f335df6444e30b7e5-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "291" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:34 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg685656ff567c4f339567-0068a341b6 + - txg6f3f335df6444e30b7e5-0068efb7b3 X-Amz-Request-Id: - - txg685656ff567c4f339567-0068a341b6 + - txg6f3f335df6444e30b7e5-0068efb7b3 status: 404 Not Found code: 404 - duration: 1.351604624s + duration: 9.048437ms - id: 23 request: proto: HTTP/1.1 @@ -4955,7 +4955,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -4964,16 +4964,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 9a9184f9-cd94-4890-9644-3f5c4cc8aa89 + - 7d7c1a4a-bd4e-4edd-bd61-be485036305f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150735Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?versioning= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -4992,14 +4992,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:35 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txgf7887d129edb421ea2b1-0068a341b7 + - txg2129e28789e0465f9e6d-0068efb7b3 X-Amz-Request-Id: - - txgf7887d129edb421ea2b1-0068a341b7 + - txg2129e28789e0465f9e6d-0068efb7b3 status: 200 OK code: 200 - duration: 2.001544525s + duration: 110.283075ms - id: 24 request: proto: HTTP/1.1 @@ -5008,7 +5008,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5017,16 +5017,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e7af3d9a-0488-44cd-9ba1-aaada0c1d6a8 + - 68ca08f7-a48d-4025-bca9-7dc521d7249b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150737Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?lifecycle= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -5036,21 +5036,21 @@ interactions: trailer: {} content_length: 380 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg7f13c78a95624b26ae11-0068a341b9txg7f13c78a95624b26ae11-0068a341b9/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgbb2476407e7746be830a-0068efb7b3txgbb2476407e7746be830a-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "380" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:37 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg7f13c78a95624b26ae11-0068a341b9 + - txgbb2476407e7746be830a-0068efb7b3 X-Amz-Request-Id: - - txg7f13c78a95624b26ae11-0068a341b9 + - txgbb2476407e7746be830a-0068efb7b3 status: 404 Not Found code: 404 - duration: 4.183095544s + duration: 8.765267ms - id: 25 request: proto: HTTP/1.1 @@ -5059,7 +5059,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5068,16 +5068,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ac3f91a2-cfd7-437c-ab1a-d3b853011b32 + - 8fc80cff-d6d9-4b3b-b8d4-9ca2fd695d46 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150741Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -5096,18 +5096,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 18 Aug 2025 15:07:41 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg77a0f2f8b88f43ac9d2d-0068a341bd + - txgcbe837040b3e4e879b41-0068efb7b3 X-Amz-Request-Id: - - txg77a0f2f8b88f43ac9d2d-0068a341bd + - txgcbe837040b3e4e879b41-0068efb7b3 status: 200 OK code: 200 - duration: 1.890628633s + duration: 10.695123ms - id: 26 request: proto: HTTP/1.1 @@ -5116,7 +5116,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5125,16 +5125,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 267d3731-b21d-409a-92ce-61a5babd1583 + - 4443c3d8-91a0-40d3-a56b-e52a75908c3c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150743Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -5153,14 +5153,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:43 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg113b387873a145ddb64a-0068a341bf + - txgb14b2828ed294339962f-0068efb7b3 X-Amz-Request-Id: - - txg113b387873a145ddb64a-0068a341bf + - txgb14b2828ed294339962f-0068efb7b3 status: 200 OK code: 200 - duration: 1.083481526s + duration: 62.608782ms - id: 27 request: proto: HTTP/1.1 @@ -5169,7 +5169,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5178,16 +5178,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bb3746f9-4b5d-4343-81ca-f42ec3422075 + - b661f0e4-bfa5-4803-9dd0-d609d0c5960d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150744Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -5199,21 +5199,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:44 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg55960bc9699a4107b015-0068a341c0 + - txg38f2a7d9ec294fa696fe-0068efb7b3 X-Amz-Request-Id: - - txg55960bc9699a4107b015-0068a341c0 + - txg38f2a7d9ec294fa696fe-0068efb7b3 status: 200 OK code: 200 - duration: 2.36262047s + duration: 12.530062ms - id: 28 request: proto: HTTP/1.1 @@ -5229,8 +5229,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -5240,7 +5240,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:26.376948+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:10.571165+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -5249,9 +5249,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:07:46 GMT + - Wed, 15 Oct 2025 15:03:15 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5259,10 +5259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32e2a631-1ad1-42d0-9850-ad2c08abba79 + - e18f0e9c-5696-4320-86a6-893578c70a18 status: 200 OK code: 200 - duration: 72.354572ms + duration: 93.988689ms - id: 29 request: proto: HTTP/1.1 @@ -5271,7 +5271,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5280,16 +5280,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7c0afb0d-6d17-4d29-a8c9-3766357b4dbf + - aa1ca1fb-8841-411e-94aa-828643d42270 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150747Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?acl= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -5301,21 +5301,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:47 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg770d2a62cb9548e69fd2-0068a341c3 + - txgd423211dbc4b4281b4b2-0068efb7b3 X-Amz-Request-Id: - - txg770d2a62cb9548e69fd2-0068a341c3 + - txgd423211dbc4b4281b4b2-0068efb7b3 status: 200 OK code: 200 - duration: 2.129218068s + duration: 12.462325ms - id: 30 request: proto: HTTP/1.1 @@ -5324,7 +5324,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5333,16 +5333,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 39144d3f-f920-4076-bd4e-3e5e6c88d976 + - 6b927d13-c9bb-4e72-b114-49241b03aee0 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150749Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?object-lock= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -5352,21 +5352,21 @@ interactions: trailer: {} content_length: 323 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg407f1113eb924f1593b1-0068a341c5txg407f1113eb924f1593b1-0068a341c5/test-acc-scaleway-instance-snapshot-646487683817124346 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg9e7f71ed84614da48a36-0068efb7b3txg9e7f71ed84614da48a36-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "323" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:49 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg407f1113eb924f1593b1-0068a341c5 + - txg9e7f71ed84614da48a36-0068efb7b3 X-Amz-Request-Id: - - txg407f1113eb924f1593b1-0068a341c5 + - txg9e7f71ed84614da48a36-0068efb7b3 status: 404 Not Found code: 404 - duration: 1.071492444s + duration: 39.989502ms - id: 31 request: proto: HTTP/1.1 @@ -5375,7 +5375,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5384,16 +5384,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1d241249-7308-495a-8017-ee25f0bc8bbc + - 5dfb3161-9893-48cc-bd1c-2f604c6b7f1f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150750Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -5405,21 +5405,21 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-instance-snapshot-6464876838171243461000falsetest-acc-instance-snapshot.qcow22025-08-18T15:07:13.000Z"59868f85d88d34ee79e32759dad70bf7"196624fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT + test-acc-scaleway-instance-snapshot-6891598770346207381000falsetest-acc-instance-snapshot.qcow22025-10-15T15:03:03.000Z"59868f85d88d34ee79e32759dad70bf7"196624105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARDCRC32FULL_OBJECT headers: Content-Length: - "789" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:50 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg4b9a58129e43423abd24-0068a341c6 + - txgfaf6dd2cf28540039be2-0068efb7b3 X-Amz-Request-Id: - - txg4b9a58129e43423abd24-0068a341c6 + - txgfaf6dd2cf28540039be2-0068efb7b3 status: 200 OK code: 200 - duration: 2.83847333s + duration: 13.566003ms - id: 32 request: proto: HTTP/1.1 @@ -5428,7 +5428,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5437,16 +5437,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e1498966-bcb8-41e4-8859-33a2ced752d9 + - a6804808-1b08-45d8-85e2-8ee58a15231b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150753Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?tagging= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -5456,21 +5456,21 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxgc6d40d428c1e47d9aad6-0068a341c9txgc6d40d428c1e47d9aad6-0068a341c9/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchTagSetThe TagSet does not existtxg4f2b5e03c336463591fb-0068efb7b3txg4f2b5e03c336463591fb-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "347" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:53 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txgc6d40d428c1e47d9aad6-0068a341c9 + - txg4f2b5e03c336463591fb-0068efb7b3 X-Amz-Request-Id: - - txgc6d40d428c1e47d9aad6-0068a341c9 + - txg4f2b5e03c336463591fb-0068efb7b3 status: 404 Not Found code: 404 - duration: 833.883583ms + duration: 65.027594ms - id: 33 request: proto: HTTP/1.1 @@ -5479,7 +5479,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5488,16 +5488,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 981b29d0-8356-4431-819e-794cb5a21090 + - 936ba5bd-496c-4de5-84ca-03ddf36dfe3d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150753Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?cors= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -5507,21 +5507,21 @@ interactions: trailer: {} content_length: 291 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg9c258d05b16e48919450-0068a341catxg9c258d05b16e48919450-0068a341ca/test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg2e46ff71ffcf44198c94-0068efb7b3txg2e46ff71ffcf44198c94-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "291" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:54 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg9c258d05b16e48919450-0068a341ca + - txg2e46ff71ffcf44198c94-0068efb7b3 X-Amz-Request-Id: - - txg9c258d05b16e48919450-0068a341ca + - txg2e46ff71ffcf44198c94-0068efb7b3 status: 404 Not Found code: 404 - duration: 730.554942ms + duration: 106.366455ms - id: 34 request: proto: HTTP/1.1 @@ -5530,7 +5530,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5539,16 +5539,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f5e1eab9-2f25-42cb-aea6-ed2c17d9d119 + - d40cb98d-8f0c-4068-85f8-fa579e16c41a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150754Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?versioning= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -5567,14 +5567,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:07:54 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txgda1803f90e9540a48b4e-0068a341ca + - txg2c7790a35e6a47adb515-0068efb7b3 X-Amz-Request-Id: - - txgda1803f90e9540a48b4e-0068a341ca + - txg2c7790a35e6a47adb515-0068efb7b3 status: 200 OK code: 200 - duration: 1.935461231s + duration: 101.457967ms - id: 35 request: proto: HTTP/1.1 @@ -5583,7 +5583,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5592,16 +5592,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bc6e53d3-a566-4fbc-83b1-6e875aff6e8e + - 16463fa9-ecb2-490a-ae05-36408ff67102 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150756Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?lifecycle= + - 20251015T150315Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -5611,21 +5611,21 @@ interactions: trailer: {} content_length: 380 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg144155a472684c61bba0-0068a341cctxg144155a472684c61bba0-0068a341cc/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxga6e21a915a124bd08ea6-0068efb7b3txga6e21a915a124bd08ea6-0068efb7b3/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "380" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:07:56 GMT + - Wed, 15 Oct 2025 15:03:15 GMT X-Amz-Id-2: - - txg144155a472684c61bba0-0068a341cc + - txga6e21a915a124bd08ea6-0068efb7b3 X-Amz-Request-Id: - - txg144155a472684c61bba0-0068a341cc + - txga6e21a915a124bd08ea6-0068efb7b3 status: 404 Not Found code: 404 - duration: 776.007938ms + duration: 102.35024ms - id: 36 request: proto: HTTP/1.1 @@ -5634,7 +5634,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5643,16 +5643,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 6f766749-4406-41fc-8bfc-7e0939cbe9ff + - 9d9e8896-c66f-40ff-a217-2648cd959855 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150757Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -5671,18 +5671,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 18 Aug 2025 15:07:57 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txg08b1aa28a35f449aa2de-0068a341cd + - txg27285c842d1b4a398c1f-0068efb7b4 X-Amz-Request-Id: - - txg08b1aa28a35f449aa2de-0068a341cd + - txg27285c842d1b4a398c1f-0068efb7b4 status: 200 OK code: 200 - duration: 4.421643121s + duration: 14.274771ms - id: 37 request: proto: HTTP/1.1 @@ -5691,7 +5691,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5700,16 +5700,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 32dcb2ed-c138-444f-984d-4bf1670db5ba + - 311d3805-99c1-4d59-a8ad-8fa4cec7473f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150801Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -5728,14 +5728,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:02 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txg8c81053cdd8f456995ea-0068a341d2 + - txgaff79856d59840209832-0068efb7b4 X-Amz-Request-Id: - - txg8c81053cdd8f456995ea-0068a341d2 + - txgaff79856d59840209832-0068efb7b4 status: 200 OK code: 200 - duration: 1.483833861s + duration: 7.12914ms - id: 38 request: proto: HTTP/1.1 @@ -5744,7 +5744,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -5753,16 +5753,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fa06f9f2-c55d-4ebd-9469-e365f3ac12ce + - a427f2e5-219c-458c-af42-3fe5b069ad0a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150803Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -5774,21 +5774,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:03 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txg008d9ffac55945de81ec-0068a341d3 + - txgd7401486990142448304-0068efb7b4 X-Amz-Request-Id: - - txg008d9ffac55945de81ec-0068a341d3 + - txgd7401486990142448304-0068efb7b4 status: 200 OK code: 200 - duration: 1.505376805s + duration: 8.381518ms - id: 39 request: proto: HTTP/1.1 @@ -5804,8 +5804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -5815,7 +5815,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:07:26.376948+00:00","name":"test-acc-snapshot-import-default","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:10.571165+00:00","name":"test-acc-snapshot-import-default","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "463" @@ -5824,9 +5824,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:04 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5834,10 +5834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cd73698-86be-4e6e-a58d-0921a19405a2 + - 0e38a47c-5479-49c1-8c8c-e5e883c401e3 status: 200 OK code: 200 - duration: 79.612366ms + duration: 85.777181ms - id: 40 request: proto: HTTP/1.1 @@ -5855,8 +5855,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: PATCH response: proto: HTTP/2.0 @@ -5866,7 +5866,7 @@ interactions: trailer: {} content_length: 460 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:08:05.214080+00:00","name":"test-acc-snapshot-import-lssd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:16.351102+00:00","name":"test-acc-snapshot-import-lssd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "460" @@ -5875,9 +5875,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:05 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5885,10 +5885,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d593ea6-d2db-4f74-aeeb-31fda012c384 + - cf848778-2d92-49b1-93c7-6a899436ca81 status: 200 OK code: 200 - duration: 79.437828ms + duration: 131.813536ms - id: 41 request: proto: HTTP/1.1 @@ -5904,8 +5904,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -5915,7 +5915,7 @@ interactions: trailer: {} content_length: 460 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:08:05.214080+00:00","name":"test-acc-snapshot-import-lssd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:16.351102+00:00","name":"test-acc-snapshot-import-lssd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "460" @@ -5924,9 +5924,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:05 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5934,10 +5934,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33f8d5cc-5ce7-46a3-ad63-8097558f9b45 + - a675046a-83ab-4ea1-b062-4e53773c29d9 status: 200 OK code: 200 - duration: 67.242317ms + duration: 96.783227ms - id: 42 request: proto: HTTP/1.1 @@ -5953,8 +5953,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -5964,7 +5964,7 @@ interactions: trailer: {} content_length: 460 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:08:05.214080+00:00","name":"test-acc-snapshot-import-lssd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:16.351102+00:00","name":"test-acc-snapshot-import-lssd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "460" @@ -5973,9 +5973,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:05 GMT + - Wed, 15 Oct 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5983,10 +5983,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01cb78b7-f51e-4d9a-a272-7dfb79625521 + - 40b30ed5-412b-4624-80cb-6dd4226f4de9 status: 200 OK code: 200 - duration: 76.703305ms + duration: 115.003222ms - id: 43 request: proto: HTTP/1.1 @@ -5995,7 +5995,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6004,16 +6004,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 370c646c-a32f-4a06-b673-2c68b847a379 + - e98b24a9-e44f-4afe-a113-e5efba2f28fb Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150805Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?acl= + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -6025,21 +6025,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:06 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txgf2f656ed796b4caaa89a-0068a341d6 + - txg61c14de614a64f739827-0068efb7b4 X-Amz-Request-Id: - - txgf2f656ed796b4caaa89a-0068a341d6 + - txg61c14de614a64f739827-0068efb7b4 status: 200 OK code: 200 - duration: 1.435921467s + duration: 7.492652ms - id: 44 request: proto: HTTP/1.1 @@ -6048,7 +6048,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6057,16 +6057,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c5f7975b-6d69-46ca-a7e6-c0f2e1bb93e3 + - 5e441e5e-8139-447d-9303-c5ffb6b8839e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150807Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?object-lock= + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -6076,21 +6076,21 @@ interactions: trailer: {} content_length: 323 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgc3037c776e4e40a089e9-0068a341d7txgc3037c776e4e40a089e9-0068a341d7/test-acc-scaleway-instance-snapshot-646487683817124346 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg1cc8699062bb4b4eb2ee-0068efb7b4txg1cc8699062bb4b4eb2ee-0068efb7b4/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "323" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:08:07 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txgc3037c776e4e40a089e9-0068a341d7 + - txg1cc8699062bb4b4eb2ee-0068efb7b4 X-Amz-Request-Id: - - txgc3037c776e4e40a089e9-0068a341d7 + - txg1cc8699062bb4b4eb2ee-0068efb7b4 status: 404 Not Found code: 404 - duration: 1.93775868s + duration: 44.425666ms - id: 45 request: proto: HTTP/1.1 @@ -6099,7 +6099,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6108,16 +6108,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 3c1eab8b-3d8a-4f16-9848-df26c4079a77 + - 303c277a-ecf0-4595-89e5-cc9883629c50 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150809Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -6129,21 +6129,21 @@ interactions: uncompressed: false body: |- - test-acc-scaleway-instance-snapshot-6464876838171243461000falsetest-acc-instance-snapshot.qcow22025-08-18T15:07:13.000Z"59868f85d88d34ee79e32759dad70bf7"196624fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552STANDARDCRC32FULL_OBJECT + test-acc-scaleway-instance-snapshot-6891598770346207381000falsetest-acc-instance-snapshot.qcow22025-10-15T15:03:03.000Z"59868f85d88d34ee79e32759dad70bf7"196624105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfSTANDARDCRC32FULL_OBJECT headers: Content-Length: - "789" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:08:09 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txg82fd8f490ba64ec8b33c-0068a341d9 + - txg984661219bd94b5f8531-0068efb7b4 X-Amz-Request-Id: - - txg82fd8f490ba64ec8b33c-0068a341d9 + - txg984661219bd94b5f8531-0068efb7b4 status: 200 OK code: 200 - duration: 1.376307498s + duration: 11.935007ms - id: 46 request: proto: HTTP/1.1 @@ -6152,7 +6152,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6161,16 +6161,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1a1f0fac-3e5a-4684-abbe-6e2b2d8169fd + - ce0a2ebc-88cf-4eef-a654-464ddc238427 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150810Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?tagging= + - 20251015T150316Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -6180,21 +6180,21 @@ interactions: trailer: {} content_length: 347 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg8301419270b848459fee-0068a341datxg8301419270b848459fee-0068a341da/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchTagSetThe TagSet does not existtxg37315e7f14f6453ebf72-0068efb7b4txg37315e7f14f6453ebf72-0068efb7b4/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "347" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:08:10 GMT + - Wed, 15 Oct 2025 15:03:16 GMT X-Amz-Id-2: - - txg8301419270b848459fee-0068a341da + - txg37315e7f14f6453ebf72-0068efb7b4 X-Amz-Request-Id: - - txg8301419270b848459fee-0068a341da + - txg37315e7f14f6453ebf72-0068efb7b4 status: 404 Not Found code: 404 - duration: 6.934295203s + duration: 23.835679ms - id: 47 request: proto: HTTP/1.1 @@ -6203,7 +6203,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6212,16 +6212,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 2fda375d-b304-42e1-b070-ac5c130821c1 + - 4e49209f-64ca-4c87-b6fd-70e2ac80934f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150817Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?cors= + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -6231,21 +6231,21 @@ interactions: trailer: {} content_length: 291 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg5955f4e3c62549c3898d-0068a341e1txg5955f4e3c62549c3898d-0068a341e1/test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgf24078eca2c34d849171-0068efb7b5txgf24078eca2c34d849171-0068efb7b5/test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "291" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:08:17 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txg5955f4e3c62549c3898d-0068a341e1 + - txgf24078eca2c34d849171-0068efb7b5 X-Amz-Request-Id: - - txg5955f4e3c62549c3898d-0068a341e1 + - txgf24078eca2c34d849171-0068efb7b5 status: 404 Not Found code: 404 - duration: 2.63116125s + duration: 9.723082ms - id: 48 request: proto: HTTP/1.1 @@ -6254,7 +6254,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6263,16 +6263,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 54f55d5f-4e6f-4d36-828a-375812304022 + - ead8a99d-6b62-416b-9b70-7280e1a9bd81 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150819Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?versioning= + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -6291,14 +6291,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:20 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txg14e5668bd2954a109b9c-0068a341e4 + - txgb39dc72d6f1740b29a29-0068efb7b5 X-Amz-Request-Id: - - txg14e5668bd2954a109b9c-0068a341e4 + - txgb39dc72d6f1740b29a29-0068efb7b5 status: 200 OK code: 200 - duration: 2.335753185s + duration: 38.295198ms - id: 49 request: proto: HTTP/1.1 @@ -6307,7 +6307,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6316,16 +6316,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 64866409-6621-4838-b271-5d98517dec8a + - 002630a6-f293-408d-a07c-da2431496976 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150822Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/?lifecycle= + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -6335,21 +6335,21 @@ interactions: trailer: {} content_length: 380 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg6c6ea1fc66b649ad8f92-0068a341e6txg6c6ea1fc66b649ad8f92-0068a341e6/test-acc-scaleway-instance-snapshot-646487683817124346test-acc-scaleway-instance-snapshot-646487683817124346 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg2fb3feed561e4b39a9d5-0068efb7b5txg2fb3feed561e4b39a9d5-0068efb7b5/test-acc-scaleway-instance-snapshot-689159877034620738test-acc-scaleway-instance-snapshot-689159877034620738 headers: Content-Length: - "380" Content-Type: - application/xml Date: - - Mon, 18 Aug 2025 15:08:22 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txg6c6ea1fc66b649ad8f92-0068a341e6 + - txg2fb3feed561e4b39a9d5-0068efb7b5 X-Amz-Request-Id: - - txg6c6ea1fc66b649ad8f92-0068a341e6 + - txg2fb3feed561e4b39a9d5-0068efb7b5 status: 404 Not Found code: 404 - duration: 1.888359406s + duration: 6.656224ms - id: 50 request: proto: HTTP/1.1 @@ -6358,7 +6358,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6367,16 +6367,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bba884b1-47b1-4612-a4f4-fc751242a942 + - 2bed1f36-9f13-46ca-9e22-462f11172b8d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150824Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2 method: HEAD response: proto: HTTP/2.0 @@ -6395,18 +6395,18 @@ interactions: Content-Type: - application/octet-stream Date: - - Mon, 18 Aug 2025 15:08:24 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Etag: - '"59868f85d88d34ee79e32759dad70bf7"' Last-Modified: - - Mon, 18 Aug 2025 15:07:13 GMT + - Wed, 15 Oct 2025 15:03:03 GMT X-Amz-Id-2: - - txgc278102a243746779d67-0068a341e8 + - txg4b53efd63db3426194d8-0068efb7b5 X-Amz-Request-Id: - - txgc278102a243746779d67-0068a341e8 + - txg4b53efd63db3426194d8-0068efb7b5 status: 200 OK code: 200 - duration: 2.438621878s + duration: 8.686069ms - id: 51 request: proto: HTTP/1.1 @@ -6415,7 +6415,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6424,16 +6424,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 028aad57-3145-4461-aa10-98d0e5aec2e7 + - 7ac23077-f4a4-4315-adde-ddec97648117 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150826Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?tagging= method: GET response: proto: HTTP/2.0 @@ -6452,14 +6452,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:27 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txgbfe85f4070a947a7a0b9-0068a341eb + - txg159f5e81eb5c45c7809a-0068efb7b5 X-Amz-Request-Id: - - txgbfe85f4070a947a7a0b9-0068a341eb + - txg159f5e81eb5c45c7809a-0068efb7b5 status: 200 OK code: 200 - duration: 807.282619ms + duration: 88.144739ms - id: 52 request: proto: HTTP/1.1 @@ -6468,7 +6468,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6477,16 +6477,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e136eff7-34ea-4166-83fd-a013930706dc + - 4fac9295-bbdd-4d81-8ea7-565f689b9e25 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150827Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?acl= method: GET response: proto: HTTP/2.0 @@ -6498,21 +6498,21 @@ interactions: uncompressed: false body: |- - fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552fa1e3217-dc80-42ac-85c3-3f034b78b552:fa1e3217-dc80-42ac-85c3-3f034b78b552FULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL headers: Content-Length: - "698" Content-Type: - text/xml; charset=utf-8 Date: - - Mon, 18 Aug 2025 15:08:27 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txgb6610cd526504c819b9d-0068a341eb + - txge7fac7c57c834b92a876-0068efb7b5 X-Amz-Request-Id: - - txgb6610cd526504c819b9d-0068a341eb + - txge7fac7c57c834b92a876-0068efb7b5 status: 200 OK code: 200 - duration: 1.190786062s + duration: 96.577573ms - id: 53 request: proto: HTTP/1.1 @@ -6528,8 +6528,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -6539,7 +6539,7 @@ interactions: trailer: {} content_length: 460 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:08:05.214080+00:00","name":"test-acc-snapshot-import-lssd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:16.351102+00:00","name":"test-acc-snapshot-import-lssd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "460" @@ -6548,9 +6548,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:28 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6558,10 +6558,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e68fd554-00af-4889-a117-916c6dfc4191 + - 132352c0-2262-4c01-ae94-953f0f345a5e status: 200 OK code: 200 - duration: 60.942842ms + duration: 106.379091ms - id: 54 request: proto: HTTP/1.1 @@ -6577,8 +6577,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -6588,7 +6588,7 @@ interactions: trailer: {} content_length: 460 uncompressed: false - body: '{"snapshot":{"base_volume":null,"creation_date":"2025-08-18T15:07:21.879003+00:00","error_details":null,"id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","modification_date":"2025-08-18T15:08:05.214080+00:00","name":"test-acc-snapshot-import-lssd","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":null,"creation_date":"2025-10-15T15:03:08.959531+00:00","error_details":null,"id":"693c1a0c-fb1b-4902-b70f-c608a8497183","modification_date":"2025-10-15T15:03:16.351102+00:00","name":"test-acc-snapshot-import-lssd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":1073741824,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "460" @@ -6597,9 +6597,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:29 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6607,10 +6607,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f6780f0-3dbe-4eb0-bb75-794b850b2923 + - d4ff66c2-c08e-4c09-b9d1-dc216d35fd9e status: 200 OK code: 200 - duration: 67.545185ms + duration: 97.852392ms - id: 55 request: proto: HTTP/1.1 @@ -6626,8 +6626,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: DELETE response: proto: HTTP/2.0 @@ -6644,9 +6644,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:29 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6654,10 +6654,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa7b5b3-4202-4132-99e8-03c6eaf72f2f + - 08990a95-495d-4165-984c-c5c63f5cea8c status: 204 No Content code: 204 - duration: 163.683962ms + duration: 178.197504ms - id: 56 request: proto: HTTP/1.1 @@ -6673,8 +6673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -6684,7 +6684,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"693c1a0c-fb1b-4902-b70f-c608a8497183","type":"not_found"}' headers: Content-Length: - "145" @@ -6693,9 +6693,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:29 GMT + - Wed, 15 Oct 2025 15:03:17 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6703,10 +6703,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69630e15-47b8-4eed-8441-29368464f4de + - c7a71732-ee22-4d94-8cf7-98e3d5b3bf3d status: 404 Not Found code: 404 - duration: 34.876164ms + duration: 31.622562ms - id: 57 request: proto: HTTP/1.1 @@ -6715,7 +6715,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6724,16 +6724,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 80be264e-e20f-4a66-97d0-e857888d617f + - aa3403b0-7755-4336-a92e-baaf47aa1106 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150829Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=DeleteObject + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/test-acc-instance-snapshot.qcow2?x-id=DeleteObject method: DELETE response: proto: HTTP/2.0 @@ -6746,14 +6746,14 @@ interactions: body: "" headers: Date: - - Mon, 18 Aug 2025 15:08:30 GMT + - Wed, 15 Oct 2025 15:03:17 GMT X-Amz-Id-2: - - txga2f872c64114438c9753-0068a341ee + - txg20b86aed452040dfa7da-0068efb7b5 X-Amz-Request-Id: - - txga2f872c64114438c9753-0068a341ee + - txg20b86aed452040dfa7da-0068efb7b5 status: 204 No Content code: 204 - duration: 4.106155622s + duration: 115.498441ms - id: 58 request: proto: HTTP/1.1 @@ -6762,7 +6762,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud + host: test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -6771,16 +6771,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 677d63ec-d684-4a20-af59-a370fdf9bc5a + - 82d11849-6985-4e65-ac49-d41a71075b37 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - aws-sdk-go-v2/1.37.1 ua/2.1 os/linux lang/go#1.24.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.85.1 m/E,e + - aws-sdk-go-v2/1.39.2 ua/2.1 os/linux lang/go#1.25.1 md/GOOS#linux md/GOARCH#amd64 api/s3#1.88.1 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20250818T150833Z - url: https://test-acc-scaleway-instance-snapshot-646487683817124346.s3.fr-par.scw.cloud/ + - 20251015T150317Z + url: https://test-acc-scaleway-instance-snapshot-689159877034620738.s3.fr-par.scw.cloud/ method: DELETE response: proto: HTTP/2.0 @@ -6793,14 +6793,14 @@ interactions: body: "" headers: Date: - - Mon, 18 Aug 2025 15:08:33 GMT + - Wed, 15 Oct 2025 15:03:18 GMT X-Amz-Id-2: - - txgfca40cef392b44b6ba8f-0068a341f1 + - txgd7235932deef40e18023-0068efb7b6 X-Amz-Request-Id: - - txgfca40cef392b44b6ba8f-0068a341f1 + - txgd7235932deef40e18023-0068efb7b6 status: 204 No Content code: 204 - duration: 3.010799136s + duration: 105.781002ms - id: 59 request: proto: HTTP/1.1 @@ -6816,8 +6816,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/41b7a4f9-e65f-41e8-baac-d8cda87abe82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/693c1a0c-fb1b-4902-b70f-c608a8497183 method: GET response: proto: HTTP/2.0 @@ -6827,7 +6827,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"41b7a4f9-e65f-41e8-baac-d8cda87abe82","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"693c1a0c-fb1b-4902-b70f-c608a8497183","type":"not_found"}' headers: Content-Length: - "145" @@ -6836,9 +6836,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 18 Aug 2025 15:08:36 GMT + - Wed, 15 Oct 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6846,7 +6846,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99a60905-8ef0-4d54-9c6b-710112af045d + - e120410d-0ce6-4b5f-baf7-795ac72a8a6e status: 404 Not Found code: 404 - duration: 51.670558ms + duration: 36.138036ms diff --git a/internal/services/instance/testdata/snapshot-server.cassette.yaml b/internal/services/instance/testdata/snapshot-server.cassette.yaml index 7deee5920..976d776e0 100644 --- a/internal/services/instance/testdata/snapshot-server.cassette.yaml +++ b/internal/services/instance/testdata/snapshot-server.cassette.yaml @@ -25,22 +25,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 39263 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "39208" + - "39263" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b89ac966-3b08-4726-81a7-66de7a5db347 + - 10c82e9c-e196-4b35-adf7-f8f9f72febc2 X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 68.264386ms + duration: 46.855076ms - id: 1 request: proto: HTTP/1.1 @@ -78,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 14295 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "14295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,12 +101,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af9cbe88-86e9-46f0-894f-99e3c502555d + - 83ea545a-2df5-4ccc-9d7a-3b2f8964aa7c X-Total-Count: - - "75" + - "68" status: 200 OK code: 200 - duration: 88.144912ms + duration: 41.946115ms - id: 2 request: proto: HTTP/1.1 @@ -142,9 +142,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:26 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,22 +152,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fea47aea-282f-45de-9002-d7ceb4692af8 + - f1e79498-1dd9-40a7-9d68-014c8a7dc91f status: 200 OK code: 200 - duration: 51.651244ms + duration: 46.349579ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 271 + content_length: 276 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-srv-angry-bell","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-srv-adoring-bardeen","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","volumes":{"0":{"boot":false,"size":20000000000,"volume_type":"l_ssd"}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -182,22 +182,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.180816+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2145" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -205,10 +205,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a5b87a09-2f48-4639-911b-5877a90593d6 + - 9be13cba-92f7-441b-9ce0-da4e0b4d4b66 status: 201 Created code: 201 - duration: 390.639423ms + duration: 839.622205ms - id: 4 request: proto: HTTP/1.1 @@ -225,7 +225,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -233,20 +233,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.180816+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2145" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa964f75-ef52-4340-9cc1-241319038c8f + - 48b095d7-2534-4782-804f-661e8b633138 status: 200 OK code: 200 - duration: 92.057298ms + duration: 130.342778ms - id: 5 request: proto: HTTP/1.1 @@ -274,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -282,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2145 + content_length: 2160 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.211757+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.180816+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2145" + - "2160" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +303,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 963a7f4e-d605-44c6-9dfb-32e4802ec0f9 + - f5704e64-ef2b-449e-a4e4-b60c74e5eedc status: 200 OK code: 200 - duration: 92.899448ms + duration: 126.189983ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/action method: POST response: proto: HTTP/2.0 @@ -335,7 +335,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action","href_result":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b","id":"45711403-9076-4570-ab13-7900b17e3edf","progress":0,"started_at":"2025-10-08T23:05:27.734733+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/action","href_result":"/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","id":"a1a93381-08f5-4abd-8322-8d7816339be7","progress":0,"started_at":"2025-10-15T15:03:57.912873+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -344,11 +344,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:57 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/45711403-9076-4570-ab13-7900b17e3edf + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a1a93381-08f5-4abd-8322-8d7816339be7 Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -356,10 +356,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff4e3f77-fbda-4b6a-a5dc-6a8a2b487b80 + - 9a9536a7-a4f4-40b9-a5bb-3436034c6281 status: 202 Accepted code: 202 - duration: 207.576174ms + duration: 302.837096ms - id: 7 request: proto: HTTP/1.1 @@ -376,7 +376,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -384,20 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2167 + content_length: 2182 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.565877+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.677001+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2167" + - "2182" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:27 GMT + - Wed, 15 Oct 2025 15:03:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,10 +405,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c079dd8-be96-4b47-816f-b5f92318c435 + - 03c4c9be-b412-4396-b439-160de5e172a5 status: 200 OK code: 200 - duration: 98.027526ms + duration: 132.336535ms - id: 8 request: proto: HTTP/1.1 @@ -425,7 +425,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:27.565877+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.677001+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2270" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:32 GMT + - Wed, 15 Oct 2025 15:04:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +454,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b60d3108-88a3-4140-acab-a866ce6d2d49 + - 4ac53c62-810b-4a9b-879c-e48aa3a6da6a status: 200 OK code: 200 - duration: 115.690972ms + duration: 149.638083ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -482,20 +482,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2301 + content_length: 2284 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:03:57.677001+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"provisioning node","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2301" + - "2284" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +503,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 461e7b35-c0a0-4cb0-8b70-1d36dd34fd96 + - 5929faf5-5df8-409a-9b8b-c465668fb7e3 status: 200 OK code: 200 - duration: 84.878046ms + duration: 128.321451ms - id: 10 request: proto: HTTP/1.1 @@ -523,7 +523,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -531,20 +531,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2301 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:04:12.432487+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2301" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +552,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1760ab76-abcf-490c-a5dd-a038287baec7 + - 09b1dd79-60e5-4ae5-ba5f-bbaa5e389524 status: 200 OK code: 200 - duration: 71.706048ms + duration: 132.480423ms - id: 11 request: proto: HTTP/1.1 @@ -572,7 +572,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -580,20 +580,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 2315 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:05:27.211757+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:04:12.432487+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -601,10 +601,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1301fae8-5dd1-4e55-ad83-645b3e7eb849 + - 3dad10ab-a7da-486d-8d40-e639d520498e status: 200 OK code: 200 - duration: 54.842111ms + duration: 161.487157ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 522 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:03:57.180816+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "522" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:04:13 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bc1b928e-fc1f-41c2-aece-094bf8311666 + status: 200 OK + code: 200 + duration: 105.149059ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/user_data method: GET response: proto: HTTP/2.0 @@ -640,9 +689,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -650,11 +699,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4372d022-5d51-4be9-b3e9-d1cdd5542561 + - f7ebecac-37a3-4220-b3a6-646eb4dad059 status: 200 OK code: 200 - duration: 53.708722ms - - id: 13 + duration: 93.120781ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -670,7 +719,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/private_nics method: GET response: proto: HTTP/2.0 @@ -689,11 +738,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:13 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -701,24 +750,24 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c16f940-1c2a-4c18-bb73-276b8cabb65a + - ea5885fd-6945-4168-9ef0-27b4a6c4d19e X-Total-Count: - "0" status: 200 OK code: 200 - duration: 55.751947ms - - id: 14 + duration: 84.660442ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 141 + content_length: 136 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-snap-xenodochial-hofstadter","volume_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","project":"44693172-d6a3-49b0-b56f-011f492e4dfa"}' + body: '{"name":"tf-snap-practical-mestorf","volume_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: @@ -733,20 +782,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 854 + content_length: 849 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e","id":"93dd9240-7b3c-4455-b49a-59df55cf6d27","progress":0,"started_at":"2025-10-08T23:05:38.585201+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"},"task":{"description":"volume_snapshot","href_from":"/snapshots","href_result":"snapshots/bec5e4e2-8823-4971-9179-76753093234e","id":"5e7fe5d6-3fd1-4e65-920f-3f163a2abf56","progress":0,"started_at":"2025-10-15T15:04:14.491116+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "854" + - "849" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,11 +803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f398f4c-6512-4ae4-bb9c-a3032ebb8c71 + - 9328d4ed-e86b-46ee-9ee0-5442bd1384f3 status: 201 Created code: 201 - duration: 369.774856ms - - id: 15 + duration: 636.029562ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -774,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -782,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:38 GMT + - Wed, 15 Oct 2025 15:04:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -803,11 +852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b13cbad3-608e-4f85-888a-24a240a98ac1 + - 551594de-d40d-4bbb-8629-f1a21fdcd00b status: 200 OK code: 200 - duration: 48.269989ms - - id: 16 + duration: 102.117176ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -823,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -831,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:43 GMT + - Wed, 15 Oct 2025 15:04:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -852,11 +901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ec4ce54-6087-4a09-b009-bdef46d92b51 + - c725d721-6f37-4e95-9a0e-7f08bf7fd0f2 status: 200 OK code: 200 - duration: 61.549154ms - - id: 17 + duration: 88.131261ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -872,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -880,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:48 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -901,11 +950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd14e741-9684-4260-a999-29e642a78636 + - 8979e531-38c2-4313-a3e2-82ed9f8bf7e6 status: 200 OK code: 200 - duration: 64.395875ms - - id: 18 + duration: 108.977445ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -921,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -929,20 +978,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:53 GMT + - Wed, 15 Oct 2025 15:04:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,11 +999,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f2cf288-daac-4288-94d0-0932d124b0de + - 03b54e2a-2b33-4d50-8c42-9d27938d44dc status: 200 OK code: 200 - duration: 70.078869ms - - id: 19 + duration: 100.870912ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -970,7 +1019,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -978,20 +1027,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:05:58 GMT + - Wed, 15 Oct 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -999,11 +1048,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff7dda55-0186-414b-82e0-02bcff3f8a9d + - e7b6340a-0a50-419d-8e5d-fc3015d21bd6 status: 200 OK code: 200 - duration: 59.147471ms - - id: 20 + duration: 110.327576ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1019,7 +1068,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1027,20 +1076,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:04 GMT + - Wed, 15 Oct 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1048,11 +1097,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6df343d-c3df-4f99-aa85-3aed6f544878 + - a56ddc1f-0046-4585-8223-19ab6aeda8b7 status: 200 OK code: 200 - duration: 56.510997ms - - id: 21 + duration: 90.136647ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1068,7 +1117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1076,20 +1125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:09 GMT + - Wed, 15 Oct 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1097,11 +1146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21186540-2f19-4fe3-8e4e-9af59123d4dc + - e408d920-5cc8-4ed8-8ead-f7b1ec170927 status: 200 OK code: 200 - duration: 65.522816ms - - id: 22 + duration: 94.104529ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1117,7 +1166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1125,20 +1174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 543 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:05:38.367352+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "543" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:14 GMT + - Wed, 15 Oct 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1146,11 +1195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2edc357-f52f-4d2a-bf5c-acd0cb944419 + - 6f8dc2a4-a85f-4f68-beae-bd2201dcd37b status: 200 OK code: 200 - duration: 87.491603ms - - id: 23 + duration: 97.69775ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1166,7 +1215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1174,20 +1223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "540" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:04:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1195,11 +1244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c14dc6fe-ecc7-48d6-aac1-fc210876d484 + - c57dc92f-346a-4a7e-bfb1-c1e51e182556 status: 200 OK code: 200 - duration: 54.490712ms - - id: 24 + duration: 104.97062ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1215,7 +1264,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1223,20 +1272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "540" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1244,11 +1293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0b6b71e-2a0d-43e4-b7c6-a79fd3a4f05e + - 43815580-5f75-4f4b-b144-810af2022df7 status: 200 OK code: 200 - duration: 59.773606ms - - id: 25 + duration: 106.62215ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1264,7 +1313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1272,20 +1321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 538 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:04:14.301283+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"snapshotting","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "540" + - "538" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1293,11 +1342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6b21ffd-398b-4fcd-b040-3ddb9d67b07a + - 3ffe69cf-31ba-4a3c-a676-e9df3fbb9bb4 status: 200 OK code: 200 - duration: 69.258082ms - - id: 26 + duration: 116.914101ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1313,7 +1362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1321,20 +1370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2301 + content_length: 535 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "2301" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1342,11 +1391,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c95ce297-f714-43be-b822-fa6b5c3c5a8a + - e1e44dd6-3948-469c-83a7-66e7815447da status: 200 OK code: 200 - duration: 96.408327ms - - id: 27 + duration: 95.779127ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1362,7 +1411,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1370,20 +1419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 517 + content_length: 535 uncompressed: false - body: '{"volume":{"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "517" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1391,11 +1440,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a24be0d-5f20-41f7-bbd6-4b45f8bda4a9 + - b6177d47-69d6-41a3-bcd4-1fc321a182ee status: 200 OK code: 200 - duration: 53.843293ms - - id: 28 + duration: 107.25245ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 535 + uncompressed: false + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "535" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7837ad32-a746-47e4-b10e-c62edc11af76 + status: 200 OK + code: 200 + duration: 110.825079ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2315 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:04:12.432487+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2315" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c4dc41bc-c5e6-491f-8bda-6f9e76b1df73 + status: 200 OK + code: 200 + duration: 126.548631ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1411,7 +1558,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 522 + uncompressed: false + body: '{"volume":{"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + headers: + Content-Length: + - "522" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39ea8b73-2e7f-44bf-9d14-bff65c1d9b30 + status: 200 OK + code: 200 + duration: 104.912503ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/user_data method: GET response: proto: HTTP/2.0 @@ -1430,9 +1626,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1440,11 +1636,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a66d3c4d-3f3b-4121-9d7d-d9a5aa391d54 + - 1e9b808f-a64a-461f-be5e-4844ac085721 status: 200 OK code: 200 - duration: 72.206352ms - - id: 29 + duration: 92.274938ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1460,7 +1656,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/private_nics method: GET response: proto: HTTP/2.0 @@ -1479,11 +1675,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1491,13 +1687,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3980591b-873a-4ad4-bf0e-c1be59153536 + - 6faf2b12-3499-4f63-ace4-40066c1bcd65 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 49.386408ms - - id: 30 + duration: 116.08886ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1513,7 +1709,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1521,20 +1717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "540" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:19 GMT + - Wed, 15 Oct 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,11 +1738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c62d793-6ce2-44cb-9a5b-8482deaa3c27 + - 2770f76a-1c86-46e8-8fc0-356e3538ec28 status: 200 OK code: 200 - duration: 56.95216ms - - id: 31 + duration: 97.699479ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1562,7 +1758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1570,20 +1766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 540 + content_length: 535 uncompressed: false - body: '{"snapshot":{"base_volume":{"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-08T23:05:38.367352+00:00","error_details":null,"id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"tf-snap-xenodochial-hofstadter","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"snapshot":{"base_volume":{"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","name":"Ubuntu 20.04 Focal Fossa"},"creation_date":"2025-10-15T15:04:14.301283+00:00","error_details":null,"id":"bec5e4e2-8823-4971-9179-76753093234e","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"tf-snap-practical-mestorf","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "540" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,11 +1787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f211004-99d2-48cd-8d57-022e93187aa2 + - a2029fb0-717c-4350-b30e-7a5aae329e42 status: 200 OK code: 200 - duration: 57.871272ms - - id: 32 + duration: 113.334636ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1611,7 +1807,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: DELETE response: proto: HTTP/2.0 @@ -1628,9 +1824,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1638,11 +1834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 390fd1d5-f833-4211-9ad8-d4a016989051 + - 8c7c84f9-435e-404b-b50b-7f02f47593d1 status: 204 No Content code: 204 - duration: 140.249704ms - - id: 33 + duration: 164.297082ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1658,7 +1854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/fec2a38e-c76a-48a2-b0f6-8ba391c9106e + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/snapshots/bec5e4e2-8823-4971-9179-76753093234e method: GET response: proto: HTTP/2.0 @@ -1668,7 +1864,7 @@ interactions: trailer: {} content_length: 145 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"fec2a38e-c76a-48a2-b0f6-8ba391c9106e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_snapshot","resource_id":"bec5e4e2-8823-4971-9179-76753093234e","type":"not_found"}' headers: Content-Length: - "145" @@ -1677,9 +1873,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1687,11 +1883,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbc3dc43-5b50-4c41-bd6d-829c531d4af6 + - a065d7b2-cb72-41aa-87ba-1ae183e9fbae status: 404 Not Found code: 404 - duration: 34.855556ms - - id: 34 + duration: 21.996614ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1707,7 +1903,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -1715,20 +1911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2301 + content_length: 2315 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:05:37.278311+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:04:12.432487+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2301" + - "2315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1736,11 +1932,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16c9cb4e-7709-43e9-92f3-d09fa7aeb81d + - 9d6e8ce1-904f-45de-9c1e-dac26ffbd3b8 status: 200 OK code: 200 - duration: 100.450083ms - - id: 35 + duration: 143.632635ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2315 + uncompressed: false + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:04:12.432487+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "2315" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Wed, 15 Oct 2025 15:05:12 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6354eb7-bc02-40f5-a6a5-0fb46ae1a0bd + status: 200 OK + code: 200 + duration: 134.156037ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1758,7 +2003,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/action method: POST response: proto: HTTP/2.0 @@ -1768,7 +2013,7 @@ interactions: trailer: {} content_length: 353 uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b/action","href_result":"/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b","id":"cba07478-615e-467d-92b8-0119d6d6dcf7","progress":0,"started_at":"2025-10-08T23:06:20.681817+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_terminate","href_from":"/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa/action","href_result":"/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","id":"4103b8e5-8135-4d35-9563-b1778ff3271e","progress":0,"started_at":"2025-10-15T15:05:12.930422+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "353" @@ -1777,11 +2022,11 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:12 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/cba07478-615e-467d-92b8-0119d6d6dcf7 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4103b8e5-8135-4d35-9563-b1778ff3271e Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,11 +2034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8453c916-c3f4-41e2-a947-2df0758aad1f + - 4ded956a-2601-40d1-b535-cf5d7b595b69 status: 202 Accepted code: 202 - duration: 181.255289ms - - id: 36 + duration: 309.135398ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1809,7 +2054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -1817,20 +2062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2264 + content_length: 2278 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-08T23:05:27.211757+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-angry-bell","id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"502","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:76:ad","maintenances":[],"modification_date":"2025-10-08T23:06:20.544266+00:00","name":"tf-srv-angry-bell","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"44693172-d6a3-49b0-b56f-011f492e4dfa","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"c30bff3f-a276-4c5b-bb3e-92ecab6e962e","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-08T23:05:27.211757+00:00","export_uri":null,"id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","modification_date":"2025-10-08T23:06:14.518109+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project":"44693172-d6a3-49b0-b56f-011f492e4dfa","server":{"id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","name":"tf-srv-angry-bell"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-10-15T15:03:57.180816+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-adoring-bardeen","id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","image":{"arch":"x86_64","creation_date":"2025-09-12T09:19:27.841572+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a02f91b9-de8a-4bd5-8f95-d79cb7d39806","modification_date":"2025-09-12T09:19:27.841572+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"e4e93065-045d-4e87-a627-068300e27a10","name":"Ubuntu 20.04 Focal Fossa","size":10000000000,"volume_type":"l_ssd"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"16","hypervisor_id":"402","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cd:b7:47","maintenances":[],"modification_date":"2025-10-15T15:05:12.681964+00:00","name":"tf-srv-adoring-bardeen","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"creation_date":"2025-10-15T15:03:57.180816+00:00","export_uri":null,"id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","modification_date":"2025-10-15T15:05:07.696936+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":{"id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","name":"tf-srv-adoring-bardeen"},"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2264" + - "2278" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:20 GMT + - Wed, 15 Oct 2025 15:05:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,11 +2083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b12460b-115e-4a9e-b94f-6e90f3a4e568 + - ac9c487e-5935-49ad-be6c-982fe9150dc7 status: 200 OK code: 200 - duration: 98.958149ms - - id: 37 + duration: 132.553853ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1858,7 +2103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/d717808b-0fa2-4cea-a31d-a1e64306b97b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/9f98d9d5-a094-4df3-a60b-4d9ca177a4fa method: GET response: proto: HTTP/2.0 @@ -1868,7 +2113,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"d717808b-0fa2-4cea-a31d-a1e64306b97b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"9f98d9d5-a094-4df3-a60b-4d9ca177a4fa","type":"not_found"}' headers: Content-Length: - "143" @@ -1877,9 +2122,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,11 +2132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ee75305-645c-4c63-8c19-ff72277202aa + - 06190ec2-41bf-4342-92e3-c3d901952b01 status: 404 Not Found code: 404 - duration: 45.401446ms - - id: 38 + duration: 53.48618ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1907,7 +2152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 method: GET response: proto: HTTP/2.0 @@ -1917,7 +2162,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","type":"not_found"}' headers: Content-Length: - "143" @@ -1926,9 +2171,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,11 +2181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 747e44bb-f5e4-4238-8dca-0619f271088f + - 078c50c2-03e1-47da-aab2-9be4afc22c0a status: 404 Not Found code: 404 - duration: 28.90298ms - - id: 39 + duration: 37.706673ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1956,7 +2201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fcaf0903-8d9b-403c-9e50-bcea55f043b7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a9880215-441f-4cb3-b1b8-aafa8e43b1b6 method: GET response: proto: HTTP/2.0 @@ -1966,7 +2211,7 @@ interactions: trailer: {} content_length: 127 uncompressed: false - body: '{"message":"resource is not found","resource":"volume","resource_id":"fcaf0903-8d9b-403c-9e50-bcea55f043b7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"volume","resource_id":"a9880215-441f-4cb3-b1b8-aafa8e43b1b6","type":"not_found"}' headers: Content-Length: - "127" @@ -1975,9 +2220,9 @@ interactions: Content-Type: - application/json Date: - - Wed, 08 Oct 2025 23:06:25 GMT + - Wed, 15 Oct 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,7 +2230,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e6023ce-41ed-479f-8cb0-13281e26fbc6 + - 9b148050-db85-4ff6-8988-0b7082c9748e status: 404 Not Found code: 404 - duration: 17.368447ms + duration: 19.167751ms diff --git a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml index 088f1b29a..576410015 100644 --- a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml +++ b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 64178 + content_length: 63436 uncompressed: false - body: '{"products":[{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031829653,"m3_water_usage":3.9363067e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Learning","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0033734508,"m3_water_usage":4.1116922e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035251204,"m3_water_usage":4.1860156e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038066164,"m3_water_usage":4.3239046e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004066269,"m3_water_usage":4.4510355e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047466652,"m3_water_usage":5.1894455e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00576007,"m3_water_usage":5.6811774e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00778688,"m3_water_usage":6.664642e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011840499,"m3_water_usage":8.63157e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01968151,"m3_water_usage":0.0000012436246},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004901922,"m3_water_usage":6.0766536e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005003937,"m3_water_usage":6.11339e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052079675,"m3_water_usage":6.186863e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052234284,"m3_water_usage":6.227746e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056469506,"m3_water_usage":6.4155756e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064939945,"m3_water_usage":6.7912345e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008188083,"m3_water_usage":7.542552e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011576259,"m3_water_usage":9.0451874e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054311813,"m3_water_usage":6.475565e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0058376743,"m3_water_usage":6.62836e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066506597,"m3_water_usage":6.9339507e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008276631,"m3_water_usage":7.545132e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011528574,"m3_water_usage":8.7674954e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute ENT1-XXS Instance - fr-par-1 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.005306499,"m3_water_usage":6.315671e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - fr-par-1"},{"description":"Compute ENT1-XS Instance - fr-par-1 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.005813092,"m3_water_usage":6.5914253e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - fr-par-1"},{"description":"Compute ENT1-S Instance - fr-par-1 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.006826278,"m3_water_usage":7.1429344e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - fr-par-1"},{"description":"Compute ENT1-M Instance - fr-par-1 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0088526495,"m3_water_usage":8.2459513e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - fr-par-1"},{"description":"Compute ENT1-L Instance - fr-par-1 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.012905392,"m3_water_usage":0.0000010451985},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - fr-par-1"},{"description":"Compute ENT1-XL Instance - fr-par-1 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.021010878,"m3_water_usage":0.0000014864053},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - fr-par-1"},{"description":"Compute ENT1-2XL Instance - fr-par-1 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.029116362,"m3_water_usage":0.0000019276122},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - fr-par-1"},{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052508377,"m3_water_usage":6.2489636e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005306499,"m3_water_usage":6.315671e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057017687,"m3_water_usage":6.4580104e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005813092,"m3_water_usage":6.5914253e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015622253,"m3_water_usage":0.0000011057037},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066036307,"m3_water_usage":6.876104e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006826278,"m3_water_usage":7.1429344e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008407355,"m3_water_usage":7.7122905e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0088526495,"m3_water_usage":8.2459513e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0120148035,"m3_water_usage":9.384664e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012905392,"m3_water_usage":0.0000010451985},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0192297,"m3_water_usage":0.0000012729411},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050326684,"m3_water_usage":6.147823e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052654305,"m3_water_usage":6.255729e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057309545,"m3_water_usage":6.471541e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006662003,"m3_water_usage":6.903165e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008524099,"m3_water_usage":7.7664123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010386196,"m3_water_usage":8.62966e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012248293,"m3_water_usage":9.492907e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005577653,"m3_water_usage":6.319989e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063554,"m3_water_usage":6.600061e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007910894,"m3_water_usage":7.1602045e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011021881,"m3_water_usage":8.2804917e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017243857,"m3_water_usage":0.0000010521067},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02346583,"m3_water_usage":0.0000012761641},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029687807,"m3_water_usage":0.0000015002216},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052654305,"m3_water_usage":6.255729e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050326684,"m3_water_usage":6.147823e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052654305,"m3_water_usage":6.255729e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":60}' + body: '{"products":[{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007349317,"m3_water_usage":4.8527312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007820358,"m3_water_usage":5.2815658e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001159045,"m3_water_usage":6.196603e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012532533,"m3_water_usage":7.054272e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010489539,"m3_water_usage":3.5761778e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020072719,"m3_water_usage":8.884346e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021956884,"m3_water_usage":1.0599683e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037037253,"m3_water_usage":1.4259832e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004080558,"m3_water_usage":1.7690508e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070966324,"m3_water_usage":2.5010803e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007850299,"m3_water_usage":3.1872153e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013882446,"m3_water_usage":4.651275e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071024447,"m3_water_usage":4.7163347e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011096707,"m3_water_usage":5.9238094e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001908523,"m3_water_usage":8.338759e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035062279,"m3_water_usage":1.3168658e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067016375,"m3_water_usage":2.2828456e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0012098227,"m3_water_usage":6.071713e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0021778978,"m3_water_usage":9.414312e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004114048,"m3_water_usage":1.609951e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007986348,"m3_water_usage":2.9469908e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015476634,"m3_water_usage":5.5332595e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00071226544,"m3_water_usage":4.6554373e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010991569,"m3_water_usage":5.6376933e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0018729396,"m3_water_usage":7.6022054e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034205052,"m3_water_usage":1.153123e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065156366,"m3_water_usage":1.9389277e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"General Purpose","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0002863708,"m3_water_usage":2.5662501e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00037243648,"m3_water_usage":2.8712352e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005220755,"m3_water_usage":3.4015205e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007988614,"m3_water_usage":4.3824063e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0010531549,"m3_water_usage":5.2836075e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0004081208,"m3_water_usage":3.745022e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0005054233,"m3_water_usage":3.9811848e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0007000283,"m3_water_usage":4.4535096e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Development","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.001052636,"m3_water_usage":5.3093217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0017944536,"m3_water_usage":7.109784e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003278089,"m3_water_usage":1.0710707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00624536,"m3_water_usage":1.7912555e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012179901,"m3_water_usage":3.2316248e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018114442,"m3_water_usage":4.6719944e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.024048984,"m3_water_usage":6.112364e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0011864954,"m3_water_usage":6.283584e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0020621726,"m3_water_usage":9.058308e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0038135268,"m3_water_usage":1.4607757e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005564881,"m3_water_usage":2.0157205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0073162355,"m3_water_usage":2.5706652e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00052973756,"m3_water_usage":4.202541e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00074865686,"m3_water_usage":4.8962217e-8},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Specialized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute L4-1-24G Instance - fr-par-1 (0.0125€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-1"},{"description":"Compute L4-2-24G Instance - fr-par-1 (0.025€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-1"},{"description":"Compute L4-4-24G Instance - fr-par-1 (0.05€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-1"},{"description":"Compute L4-8-24G Instance - fr-par-1 (0.1€ per minute)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","product_category":"Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":57}' headers: Content-Length: - - "64178" + - "63436" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 08 Jul 2025 19:24:11 GMT + - Wed, 15 Oct 2025 13:05:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,7 +46,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6eccb3b-2b4e-478e-94a4-9620b54497b1 + - 03b2fc94-1159-40a0-b23f-6dab30897c72 status: 200 OK code: 200 - duration: 846.715487ms + duration: 125.270226ms diff --git a/internal/services/instance/testdata/volume-basic.cassette.yaml b/internal/services/instance/testdata/volume-basic.cassette.yaml index 31c9ab65f..010aced61 100644 --- a/internal/services/instance/testdata/volume-basic.cassette.yaml +++ b/internal/services/instance/testdata/volume-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 146 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-relaxed-boyd","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-serene-antonelli","project":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["test-terraform"],"volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70412da6-dc87-4e5d-a0ef-5981821d0d7d + - f62e3825-1c59-47ac-ad15-a80136ea8d62 status: 201 Created code: 201 - duration: 304.673502ms + duration: 492.349885ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 317c0aa5-9194-4c35-9509-dfb27a64514d + - c143ddb1-aaeb-44ea-b74e-49699b6786bc status: 200 OK code: 200 - duration: 116.126787ms + duration: 104.31815ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Wed, 15 Oct 2025 15:04:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd303ac1-111c-4eca-9dab-b00d16b4e389 + - c085615d-4cb6-42b5-98c3-c7c682e02bcd status: 200 OK code: 200 - duration: 103.725218ms + duration: 100.165025ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f93321a-e840-4870-8b2a-c49a90f82d12 + - 89df3247-551f-4abb-b553-b09e8d691e21 status: 200 OK code: 200 - duration: 101.992018ms + duration: 90.879869ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b4b6b54-eebd-4b40-8479-e724ec676282 + - 93c0b122-c098-4365-8dd9-26251759aef8 status: 200 OK code: 200 - duration: 143.920371ms + duration: 108.446861ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 457 + content_length: 461 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:19.425289+00:00","name":"tf-vol-relaxed-boyd","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:24.370894+00:00","name":"tf-vol-serene-antonelli","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":["test-terraform"],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "457" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f134d5c-f59a-4081-99db-e033461a205a + - fb3a2bb5-5ede-4909-bb10-a9632bdc89e1 status: 200 OK code: 200 - duration: 116.43772ms + duration: 89.713412ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +316,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: PATCH response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:25.200239+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:25.702041+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "436" @@ -336,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8afab33-e4c4-4700-8368-88b0ca801104 + - 54e34c3e-937a-4107-9bf1-f6f3e2942b50 status: 200 OK code: 200 - duration: 156.825013ms + duration: 135.741971ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -376,7 +376,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:25.200239+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:25.702041+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "436" @@ -385,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 15 Oct 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74327d49-6f34-4ebc-8474-dfdcac165be0 + - ab2e4e14-936b-4aaa-aef4-919998cca410 status: 200 OK code: 200 - duration: 149.2146ms + duration: 85.04985ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -425,7 +425,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:25.200239+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:25.702041+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "436" @@ -434,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:25 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03fb33ea-e059-40d5-9f56-37ba16897346 + - 14862ff4-3454-4c16-a55a-e8e815f7b460 status: 200 OK code: 200 - duration: 147.395589ms + duration: 94.577531ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:25.200239+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:25.702041+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "436" @@ -483,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9064e530-cbea-41f6-a834-316b4dfa1660 + - 1e84d94f-33e3-4fe2-8e14-0bfe9408a6bd status: 200 OK code: 200 - duration: 104.94737ms + duration: 91.011807ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -523,7 +523,7 @@ interactions: trailer: {} content_length: 436 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:19.425289+00:00","export_uri":null,"id":"250b930d-1825-4b57-8c90-055cf525814d","modification_date":"2025-06-10T15:30:25.200239+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:04:24.370894+00:00","export_uri":null,"id":"06d5871f-9092-40a3-b244-82e7609434c9","modification_date":"2025-10-15T15:04:25.702041+00:00","name":"terraform-test","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - "436" @@ -532,9 +532,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5883ea91-0346-4454-afce-96c76a115a77 + - 6aede94d-4fcd-40e9-9092-f508aedd3da8 status: 200 OK code: 200 - duration: 112.604872ms + duration: 92.163095ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +561,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: DELETE response: proto: HTTP/2.0 @@ -579,9 +579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7edd04b1-3f8e-4b92-a921-d4ee8a71ff13 + - 2f54811e-2be0-44c5-96c8-f799795747bb status: 204 No Content code: 204 - duration: 240.590097ms + duration: 143.101427ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/250b930d-1825-4b57-8c90-055cf525814d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/06d5871f-9092-40a3-b244-82e7609434c9 method: GET response: proto: HTTP/2.0 @@ -619,7 +619,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"250b930d-1825-4b57-8c90-055cf525814d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"06d5871f-9092-40a3-b244-82e7609434c9","type":"not_found"}' headers: Content-Length: - "143" @@ -628,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:28 GMT + - Wed, 15 Oct 2025 15:04:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,7 +638,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4566a968-232c-4af5-a1aa-8779a64f3f5a + - 12973a97-665e-4abb-9b59-54f2a92141fb status: 404 Not Found code: 404 - duration: 76.48436ms + duration: 25.426556ms diff --git a/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml b/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml index fb8050c3c..75ae59280 100644 --- a/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml +++ b/internal/services/instance/testdata/volume-different-name-generated.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 121 + content_length: 126 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-gifted-mendel","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-mystifying-galileo","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9086ceaa-236f-480d-9b9a-b7acb150493a + - b5113011-5a3b-4764-9716-6ec75fc24503 status: 201 Created code: 201 - duration: 325.474293ms + duration: 214.001529ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 041763d1-647e-41a4-bc20-8c64ca65c7f9 + - 94740ead-424e-4648-a311-dc6f5b28c670 status: 200 OK code: 200 - duration: 128.370159ms + duration: 92.205037ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b0416bd-dfbc-4842-8ad9-0717d4c31f84 + - 829be53c-8d4f-48ac-ac47-b9e3822517ba status: 200 OK code: 200 - duration: 121.014714ms + duration: 95.726918ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Wed, 15 Oct 2025 15:03:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fb054ea-5f18-449e-b59c-e596b5a20eae + - c5c6eb0c-f0b6-425b-be81-23b4877489a2 status: 200 OK code: 200 - duration: 98.705365ms + duration: 113.350411ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:18 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dda741b1-a554-43c3-a869-1acc69fd0d0e + - 23cdf2cb-e2e4-453e-92bd-31fcd0132233 status: 200 OK code: 200 - duration: 124.043754ms + duration: 89.121848ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ce9dd3-b0d5-4134-b0d4-0ca896aad10c + - baf991d2-a860-40f0-9516-487a4eed1d8c status: 200 OK code: 200 - duration: 103.650979ms + duration: 97.740433ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 442 + content_length: 447 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:15.569594+00:00","export_uri":null,"id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","modification_date":"2025-06-10T15:30:15.569594+00:00","name":"tf-vol-gifted-mendel","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:51.340118+00:00","export_uri":null,"id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","modification_date":"2025-10-15T15:03:51.340118+00:00","name":"tf-vol-mystifying-galileo","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "442" + - "447" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:23 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8ace4e8-8324-40d5-8aad-6f84d0db4e89 + - 8ec1ef66-5fbf-4e38-bc37-341440e9dfd9 status: 200 OK code: 200 - duration: 135.396616ms + duration: 124.93212ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: DELETE response: proto: HTTP/2.0 @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b89df0f-8370-42e3-882a-1afc604336b3 + - 800a39b8-88fa-4067-8655-1eb12f5b61b2 status: 204 No Content code: 204 - duration: 214.485541ms + duration: 139.35805ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2d416161-771d-4684-ae3a-d5c3e2fbcb2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/1c7019bd-a6e8-4d4f-a699-649b83fdec37 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2d416161-771d-4684-ae3a-d5c3e2fbcb2f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"1c7019bd-a6e8-4d4f-a699-649b83fdec37","type":"not_found"}' headers: Content-Length: - "143" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:24 GMT + - Wed, 15 Oct 2025 15:03:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,7 +440,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e73fdbad-67e5-4465-9a6d-b5ec9ba33fba + - 17352019-c342-40f1-a349-5c9f71fa8b38 status: 404 Not Found code: 404 - duration: 42.856884ms + duration: 30.246935ms diff --git a/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml b/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml index b5e3722a5..85665a139 100644 --- a/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml +++ b/internal/services/instance/testdata/volume-resize-not-block.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 123 + content_length: 121 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-gracious-pascal","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' + body: '{"name":"tf-vol-magical-knuth","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"l_ssd","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fc786b2-c4a1-4058-9f35-a5ef943538b1 + - bf25c62b-e039-4f10-b6f3-653ff4d0879a status: 201 Created code: 201 - duration: 290.379205ms + duration: 234.033672ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 831e11d6-f88d-4b4a-b89f-b24e7a3625fc + - 444667ba-1350-4728-a4ea-62a5894b662d status: 200 OK code: 200 - duration: 126.159503ms + duration: 90.313513ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0daf10ff-68b6-4e50-b099-c79823f0d57b + - 001470c1-58bd-4e78-8b72-5ca29b85c662 status: 200 OK code: 200 - duration: 107.514405ms + duration: 85.112635ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66c51243-d8f9-422e-853e-d8b9867cf60b + - 955d38fb-3eb2-4ba3-a1e2-0772384289f0 status: 200 OK code: 200 - duration: 92.700353ms + duration: 100.137148ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fde92edc-9181-494a-8ab4-2a5b77706a02 + - fe0d2c72-e8ff-4de0-bc37-a22dba71b78b status: 200 OK code: 200 - duration: 129.672201ms + duration: 100.184156ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec5e9a23-3e39-4101-ac31-8c74b5a6a569 + - 5138cdc6-2e6c-41ab-af92-5b13eb6c647a status: 200 OK code: 200 - duration: 127.235ms + duration: 118.526156ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 444 + content_length: 442 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:11.227436+00:00","export_uri":null,"id":"dc4d84ea-898f-4160-9f64-6ece879cc380","modification_date":"2025-06-10T15:30:11.227436+00:00","name":"tf-vol-gracious-pascal","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:54.748662+00:00","export_uri":null,"id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","modification_date":"2025-10-15T15:03:54.748662+00:00","name":"tf-vol-magical-knuth","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"l_ssd","zone":"fr-par-1"}}' headers: Content-Length: - - "444" + - "442" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd076cb0-893b-454b-85bf-2951fa4a7cf4 + - e9fad18b-9743-4db9-93d8-5927098a10e9 status: 200 OK code: 200 - duration: 154.727079ms + duration: 91.940333ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: DELETE response: proto: HTTP/2.0 @@ -381,9 +381,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e1cf013-7772-44aa-8d10-f66e5af1faff + - ce4f47e1-39b8-48fb-b576-f9abfc3b9b3d status: 204 No Content code: 204 - duration: 347.499689ms + duration: 145.237025ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +410,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/dc4d84ea-898f-4160-9f64-6ece879cc380 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/cfc553e8-cbfc-41ec-8b60-f0ff99680a51 method: GET response: proto: HTTP/2.0 @@ -421,7 +421,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"dc4d84ea-898f-4160-9f64-6ece879cc380","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"cfc553e8-cbfc-41ec-8b60-f0ff99680a51","type":"not_found"}' headers: Content-Length: - "143" @@ -430,9 +430,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:15 GMT + - Wed, 15 Oct 2025 15:03:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,7 +440,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2da9389-cf74-4d03-9bff-029e7aae8195 + - 2fb3cd1b-74af-4d73-a4b5-65f50af875b9 status: 404 Not Found code: 404 - duration: 84.724815ms + duration: 45.382937ms diff --git a/internal/services/instance/testdata/volume-scratch.cassette.yaml b/internal/services/instance/testdata/volume-scratch.cassette.yaml index 2b1956793..bd86a1d8c 100644 --- a/internal/services/instance/testdata/volume-scratch.cassette.yaml +++ b/internal/services/instance/testdata/volume-scratch.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 125 + content_length: 124 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vol-sweet-blackwell","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"scratch","size":20000000000}' + body: '{"name":"tf-vol-awesome-wilson","project":"105bdce1-64c0-48ab-899d-868455867ecf","volume_type":"scratch","size":20000000000}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes method: POST response: @@ -27,22 +27,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 445 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:06.861630+00:00","export_uri":null,"id":"af4360ed-acc2-4a36-ab49-a5c302b14907","modification_date":"2025-06-10T15:30:06.861630+00:00","name":"tf-vol-sweet-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:53.308883+00:00","export_uri":null,"id":"53449c04-3c85-4341-89e3-d5391d6189c5","modification_date":"2025-10-15T15:03:53.308883+00:00","name":"tf-vol-awesome-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45af6394-fd76-4d61-a90f-4dca3ae77c22 + - 23e3a250-b86d-4e58-a274-36ce849aae08 status: 201 Created code: 201 - duration: 301.448835ms + duration: 204.663279ms - id: 1 request: proto: HTTP/1.1 @@ -69,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: GET response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 445 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:06.861630+00:00","export_uri":null,"id":"af4360ed-acc2-4a36-ab49-a5c302b14907","modification_date":"2025-06-10T15:30:06.861630+00:00","name":"tf-vol-sweet-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:53.308883+00:00","export_uri":null,"id":"53449c04-3c85-4341-89e3-d5391d6189c5","modification_date":"2025-10-15T15:03:53.308883+00:00","name":"tf-vol-awesome-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cee73316-4427-4e72-903b-ba0f6a9a1b82 + - 4e4b6ae9-fb39-4281-979d-1bc630a8d7f9 status: 200 OK code: 200 - duration: 88.045853ms + duration: 94.459664ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 445 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:06.861630+00:00","export_uri":null,"id":"af4360ed-acc2-4a36-ab49-a5c302b14907","modification_date":"2025-06-10T15:30:06.861630+00:00","name":"tf-vol-sweet-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:53.308883+00:00","export_uri":null,"id":"53449c04-3c85-4341-89e3-d5391d6189c5","modification_date":"2025-10-15T15:03:53.308883+00:00","name":"tf-vol-awesome-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfe7cf88-c96a-4a42-bde5-3225798ecda4 + - f5d183a3-15d6-4b81-946d-83122d20565b status: 200 OK code: 200 - duration: 112.44383ms + duration: 96.291327ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: GET response: proto: HTTP/2.0 @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 445 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:06.861630+00:00","export_uri":null,"id":"af4360ed-acc2-4a36-ab49-a5c302b14907","modification_date":"2025-06-10T15:30:06.861630+00:00","name":"tf-vol-sweet-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:53.308883+00:00","export_uri":null,"id":"53449c04-3c85-4341-89e3-d5391d6189c5","modification_date":"2025-10-15T15:03:53.308883+00:00","name":"tf-vol-awesome-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:08 GMT + - Wed, 15 Oct 2025 15:03:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a2e1afc-fdf2-4e6e-abfd-a0070dd20575 + - 1f04342b-3ef0-47be-ac34-e74b92461b70 status: 200 OK code: 200 - duration: 89.996892ms + duration: 101.677353ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 446 + content_length: 445 uncompressed: false - body: '{"volume":{"creation_date":"2025-06-10T15:30:06.861630+00:00","export_uri":null,"id":"af4360ed-acc2-4a36-ab49-a5c302b14907","modification_date":"2025-06-10T15:30:06.861630+00:00","name":"tf-vol-sweet-blackwell","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' + body: '{"volume":{"creation_date":"2025-10-15T15:03:53.308883+00:00","export_uri":null,"id":"53449c04-3c85-4341-89e3-d5391d6189c5","modification_date":"2025-10-15T15:03:53.308883+00:00","name":"tf-vol-awesome-wilson","organization":"105bdce1-64c0-48ab-899d-868455867ecf","project":"105bdce1-64c0-48ab-899d-868455867ecf","server":null,"size":20000000000,"state":"available","tags":[],"volume_type":"scratch","zone":"fr-par-1"}}' headers: Content-Length: - - "446" + - "445" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - faceb347-bf1b-4763-860e-9921c9a80bd3 + - b60efbfe-d7fd-4c5e-9f04-281e5dc96f0c status: 200 OK code: 200 - duration: 118.846358ms + duration: 87.137581ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: DELETE response: proto: HTTP/2.0 @@ -283,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1c038f6-556d-4e37-a6d6-338a00db89cb + - 7624ab07-2f6e-498f-ad54-30713c24364b status: 204 No Content code: 204 - duration: 263.28431ms + duration: 167.885003ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/af4360ed-acc2-4a36-ab49-a5c302b14907 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/53449c04-3c85-4341-89e3-d5391d6189c5 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"af4360ed-acc2-4a36-ab49-a5c302b14907","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"53449c04-3c85-4341-89e3-d5391d6189c5","type":"not_found"}' headers: Content-Length: - "143" @@ -332,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:09 GMT + - Wed, 15 Oct 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,7 +342,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd4fe399-ef2d-46ec-9d6b-ac9b53e22e64 + - 21789751-dd6b-47f2-94e9-222abd2465cc status: 404 Not Found code: 404 - duration: 94.184275ms + duration: 35.252457ms From e68e917a7609df4f6a2a114a1b34a94192dd0957 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Le=C3=AFla=20Marabese?= Date: Wed, 15 Oct 2025 17:40:26 +0200 Subject: [PATCH 12/12] compress cassettes + re-record or drop those with errors --- ...image-server-with-sbs-volume.cassette.yaml | 380 +- .../testdata/image-server.cassette.yaml | 308 +- .../ip-reverse-dns-basic.cassette.yaml | 517 +-- ...curity-group-rules-ip-ranges.cassette.yaml | 163 +- ...ssword-encryption-ssh-key-id.cassette.yaml | 3912 ----------------- ...olume-from-external-snapshot.cassette.yaml | 330 +- 6 files changed, 505 insertions(+), 5105 deletions(-) delete mode 100644 internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml diff --git a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml index 09f664750..59017c3df 100644 --- a/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml +++ b/internal/services/instance/testdata/image-server-with-sbs-volume.cassette.yaml @@ -2094,202 +2094,6 @@ interactions: code: 200 duration: 397.754348ms - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8004b343-3e59-4cd9-bb6f-817929651259 - status: 200 OK - code: 200 - duration: 525.879454ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 76b8044b-5cd7-44f9-bf8c-62b107d74079 - status: 200 OK - code: 200 - duration: 333.797666ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 848ef1b0-d2c6-478d-bc1b-7e37a36a2595 - status: 200 OK - code: 200 - duration: 1.043514088s - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/ac9d48a2-6e4a-43ff-a96b-57af14cb111a - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 701 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:28.046967Z","id":"ac9d48a2-6e4a-43ff-a96b-57af14cb111a","name":"tf-snapshot-jovial-pare","parent_volume":{"id":"4ff80ffa-2ea3-4e3f-b057-2b96e87032ae","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.380887Z","id":"071e60aa-e715-4f99-bb05-1af45e00dd3a","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:28.046967Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "701" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 67f6f575-391f-440a-9304-d90c0ff8a9f7 - status: 200 OK - code: 200 - duration: 584.0572ms - - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2338,7 +2142,7 @@ interactions: status: 200 OK code: 200 duration: 471.316564ms - - id: 47 + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2387,7 +2191,7 @@ interactions: status: 200 OK code: 200 duration: 846.488078ms - - id: 48 + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2440,7 +2244,7 @@ interactions: status: 201 Created code: 201 duration: 1.33953532s - - id: 49 + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2489,7 +2293,7 @@ interactions: status: 200 OK code: 200 duration: 145.578178ms - - id: 50 + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2538,7 +2342,7 @@ interactions: status: 200 OK code: 200 duration: 109.480134ms - - id: 51 + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2587,7 +2391,7 @@ interactions: status: 200 OK code: 200 duration: 85.43329ms - - id: 52 + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2636,7 +2440,7 @@ interactions: status: 200 OK code: 200 duration: 160.110237ms - - id: 53 + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2685,7 +2489,7 @@ interactions: status: 200 OK code: 200 duration: 148.810557ms - - id: 54 + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2734,7 +2538,7 @@ interactions: status: 200 OK code: 200 duration: 159.564344ms - - id: 55 + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2783,7 +2587,7 @@ interactions: status: 200 OK code: 200 duration: 166.053179ms - - id: 56 + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2832,7 +2636,7 @@ interactions: status: 200 OK code: 200 duration: 107.529479ms - - id: 57 + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2881,7 +2685,7 @@ interactions: status: 200 OK code: 200 duration: 151.331925ms - - id: 58 + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2930,7 +2734,7 @@ interactions: status: 404 Not Found code: 404 duration: 26.783464ms - - id: 59 + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2979,7 +2783,7 @@ interactions: status: 200 OK code: 200 duration: 75.218193ms - - id: 60 + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3028,7 +2832,7 @@ interactions: status: 200 OK code: 200 duration: 94.377266ms - - id: 61 + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3081,7 +2885,7 @@ interactions: status: 200 OK code: 200 duration: 109.784195ms - - id: 62 + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3130,7 +2934,7 @@ interactions: status: 200 OK code: 200 duration: 739.353514ms - - id: 63 + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3179,7 +2983,7 @@ interactions: status: 200 OK code: 200 duration: 752.832042ms - - id: 64 + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3228,7 +3032,7 @@ interactions: status: 200 OK code: 200 duration: 122.692222ms - - id: 65 + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3277,7 +3081,7 @@ interactions: status: 200 OK code: 200 duration: 106.575652ms - - id: 66 + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3326,7 +3130,7 @@ interactions: status: 200 OK code: 200 duration: 150.01101ms - - id: 67 + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3375,7 +3179,7 @@ interactions: status: 200 OK code: 200 duration: 660.0863ms - - id: 68 + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3424,7 +3228,7 @@ interactions: status: 404 Not Found code: 404 duration: 1.105879557s - - id: 69 + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3473,7 +3277,7 @@ interactions: status: 200 OK code: 200 duration: 101.139584ms - - id: 70 + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3522,7 +3326,7 @@ interactions: status: 200 OK code: 200 duration: 92.697349ms - - id: 71 + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3575,7 +3379,7 @@ interactions: status: 200 OK code: 200 duration: 139.256322ms - - id: 72 + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3624,7 +3428,7 @@ interactions: status: 200 OK code: 200 duration: 587.618217ms - - id: 73 + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3673,7 +3477,7 @@ interactions: status: 200 OK code: 200 duration: 181.006835ms - - id: 74 + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3724,7 +3528,7 @@ interactions: status: 200 OK code: 200 duration: 789.006583ms - - id: 75 + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3773,7 +3577,7 @@ interactions: status: 200 OK code: 200 duration: 94.17967ms - - id: 76 + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3822,7 +3626,7 @@ interactions: status: 200 OK code: 200 duration: 90.677725ms - - id: 77 + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3873,7 +3677,7 @@ interactions: status: 200 OK code: 200 duration: 635.085123ms - - id: 78 + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3922,7 +3726,7 @@ interactions: status: 200 OK code: 200 duration: 619.347599ms - - id: 79 + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3971,7 +3775,7 @@ interactions: status: 200 OK code: 200 duration: 375.673197ms - - id: 80 + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4020,7 +3824,7 @@ interactions: status: 200 OK code: 200 duration: 535.05028ms - - id: 81 + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4069,7 +3873,7 @@ interactions: status: 200 OK code: 200 duration: 143.881794ms - - id: 82 + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4118,7 +3922,7 @@ interactions: status: 200 OK code: 200 duration: 128.337095ms - - id: 83 + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4169,7 +3973,7 @@ interactions: status: 200 OK code: 200 duration: 1.1529741s - - id: 84 + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4218,7 +4022,7 @@ interactions: status: 200 OK code: 200 duration: 142.023873ms - - id: 85 + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4267,7 +4071,7 @@ interactions: status: 200 OK code: 200 duration: 135.276004ms - - id: 86 + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4316,7 +4120,7 @@ interactions: status: 200 OK code: 200 duration: 85.439212ms - - id: 87 + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4365,7 +4169,7 @@ interactions: status: 200 OK code: 200 duration: 84.713171ms - - id: 88 + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4414,7 +4218,7 @@ interactions: status: 200 OK code: 200 duration: 140.614151ms - - id: 89 + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4463,7 +4267,7 @@ interactions: status: 200 OK code: 200 duration: 1.188756654s - - id: 90 + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4512,7 +4316,7 @@ interactions: status: 200 OK code: 200 duration: 1.314878202s - - id: 91 + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4561,7 +4365,7 @@ interactions: status: 200 OK code: 200 duration: 777.72577ms - - id: 92 + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4610,7 +4414,7 @@ interactions: status: 200 OK code: 200 duration: 126.834313ms - - id: 93 + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4659,7 +4463,7 @@ interactions: status: 200 OK code: 200 duration: 79.203115ms - - id: 94 + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4708,7 +4512,7 @@ interactions: status: 200 OK code: 200 duration: 91.574136ms - - id: 95 + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4757,7 +4561,7 @@ interactions: status: 200 OK code: 200 duration: 148.537369ms - - id: 96 + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4806,7 +4610,7 @@ interactions: status: 404 Not Found code: 404 duration: 26.165089ms - - id: 97 + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4855,7 +4659,7 @@ interactions: status: 200 OK code: 200 duration: 250.239129ms - - id: 98 + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4904,7 +4708,7 @@ interactions: status: 200 OK code: 200 duration: 120.033064ms - - id: 99 + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4957,7 +4761,7 @@ interactions: status: 200 OK code: 200 duration: 92.314884ms - - id: 100 + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -5006,7 +4810,7 @@ interactions: status: 200 OK code: 200 duration: 870.174754ms - - id: 101 + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -5055,7 +4859,7 @@ interactions: status: 200 OK code: 200 duration: 856.433374ms - - id: 102 + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -5104,7 +4908,7 @@ interactions: status: 200 OK code: 200 duration: 483.677686ms - - id: 103 + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -5153,7 +4957,7 @@ interactions: status: 200 OK code: 200 duration: 122.373423ms - - id: 104 + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5202,7 +5006,7 @@ interactions: status: 200 OK code: 200 duration: 120.268256ms - - id: 105 + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5251,7 +5055,7 @@ interactions: status: 200 OK code: 200 duration: 594.617409ms - - id: 106 + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5298,7 +5102,7 @@ interactions: status: 204 No Content code: 204 duration: 517.958865ms - - id: 107 + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5347,7 +5151,7 @@ interactions: status: 404 Not Found code: 404 duration: 28.453479ms - - id: 108 + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5396,7 +5200,7 @@ interactions: status: 200 OK code: 200 duration: 438.771891ms - - id: 109 + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5445,7 +5249,7 @@ interactions: status: 200 OK code: 200 duration: 446.33538ms - - id: 110 + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5492,7 +5296,7 @@ interactions: status: 204 No Content code: 204 duration: 535.161654ms - - id: 111 + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5541,7 +5345,7 @@ interactions: status: 404 Not Found code: 404 duration: 75.881589ms - - id: 112 + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5590,7 +5394,7 @@ interactions: status: 200 OK code: 200 duration: 88.297585ms - - id: 113 + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5637,7 +5441,7 @@ interactions: status: 204 No Content code: 204 duration: 150.551989ms - - id: 114 + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5686,7 +5490,7 @@ interactions: status: 404 Not Found code: 404 duration: 105.029662ms - - id: 115 + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5735,7 +5539,7 @@ interactions: status: 200 OK code: 200 duration: 664.749824ms - - id: 116 + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5784,7 +5588,7 @@ interactions: status: 200 OK code: 200 duration: 667.62771ms - - id: 117 + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5831,7 +5635,7 @@ interactions: status: 204 No Content code: 204 duration: 441.051345ms - - id: 118 + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5878,7 +5682,7 @@ interactions: status: 204 No Content code: 204 duration: 430.826116ms - - id: 119 + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5927,7 +5731,7 @@ interactions: status: 404 Not Found code: 404 duration: 68.925943ms - - id: 120 + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5976,7 +5780,7 @@ interactions: status: 404 Not Found code: 404 duration: 77.801522ms - - id: 121 + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -6025,7 +5829,7 @@ interactions: status: 200 OK code: 200 duration: 84.878349ms - - id: 122 + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -6074,7 +5878,7 @@ interactions: status: 200 OK code: 200 duration: 141.998741ms - - id: 123 + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -6121,7 +5925,7 @@ interactions: status: 204 No Content code: 204 duration: 173.234859ms - - id: 124 + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6170,7 +5974,7 @@ interactions: status: 200 OK code: 200 duration: 178.06252ms - - id: 125 + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6219,7 +6023,7 @@ interactions: status: 404 Not Found code: 404 duration: 98.382766ms - - id: 126 + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6272,7 +6076,7 @@ interactions: status: 202 Accepted code: 202 duration: 272.090332ms - - id: 127 + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6321,7 +6125,7 @@ interactions: status: 200 OK code: 200 duration: 119.675533ms - - id: 128 + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6370,7 +6174,7 @@ interactions: status: 404 Not Found code: 404 duration: 39.24309ms - - id: 129 + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6419,7 +6223,7 @@ interactions: status: 404 Not Found code: 404 duration: 36.462156ms - - id: 130 + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6468,7 +6272,7 @@ interactions: status: 200 OK code: 200 duration: 70.284544ms - - id: 131 + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6515,7 +6319,7 @@ interactions: status: 204 No Content code: 204 duration: 165.917729ms - - id: 132 + - id: 128 request: proto: HTTP/1.1 proto_major: 1 @@ -6564,7 +6368,7 @@ interactions: status: 404 Not Found code: 404 duration: 34.782678ms - - id: 133 + - id: 129 request: proto: HTTP/1.1 proto_major: 1 @@ -6613,7 +6417,7 @@ interactions: status: 404 Not Found code: 404 duration: 235.376026ms - - id: 134 + - id: 130 request: proto: HTTP/1.1 proto_major: 1 @@ -6662,7 +6466,7 @@ interactions: status: 404 Not Found code: 404 duration: 156.480257ms - - id: 135 + - id: 131 request: proto: HTTP/1.1 proto_major: 1 @@ -6711,7 +6515,7 @@ interactions: status: 404 Not Found code: 404 duration: 142.893205ms - - id: 136 + - id: 132 request: proto: HTTP/1.1 proto_major: 1 @@ -6760,7 +6564,7 @@ interactions: status: 404 Not Found code: 404 duration: 167.271138ms - - id: 137 + - id: 133 request: proto: HTTP/1.1 proto_major: 1 @@ -6809,7 +6613,7 @@ interactions: status: 404 Not Found code: 404 duration: 181.14108ms - - id: 138 + - id: 134 request: proto: HTTP/1.1 proto_major: 1 diff --git a/internal/services/instance/testdata/image-server.cassette.yaml b/internal/services/instance/testdata/image-server.cassette.yaml index da4c1f401..fdcf15b93 100644 --- a/internal/services/instance/testdata/image-server.cassette.yaml +++ b/internal/services/instance/testdata/image-server.cassette.yaml @@ -857,202 +857,6 @@ interactions: code: 200 duration: 393.715959ms - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:34 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a6744ae0-5f8b-41b5-8c69-8dd55a77baf2 - status: 200 OK - code: 200 - duration: 529.364937ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 871df3d3-18ec-46ba-98c3-c881ad63f79c - status: 200 OK - code: 200 - duration: 334.309005ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 01aa5e2c-d9d3-464f-80fc-6ba3d8954dc1 - status: 200 OK - code: 200 - duration: 1.042453049s - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/1e9c0aca-0486-4103-a3de-a21a8f266bd6 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 702 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:03:27.977044Z","id":"1e9c0aca-0486-4103-a3de-a21a8f266bd6","name":"tf-snapshot-keen-murdock","parent_volume":{"id":"818c356e-9ce7-4e2f-80ef-b8fc6cf403c1","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:03:28.031459Z","id":"4c11087b-9f81-4bed-986a-eee8b32e1f15","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:03:27.977044Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "702" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 14cb1778-837c-4ab1-bd33-765064fa9f63 - status: 200 OK - code: 200 - duration: 584.263246ms - - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1101,7 +905,7 @@ interactions: status: 200 OK code: 200 duration: 467.631656ms - - id: 22 + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1150,7 +954,7 @@ interactions: status: 200 OK code: 200 duration: 852.078237ms - - id: 23 + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1203,7 +1007,7 @@ interactions: status: 201 Created code: 201 duration: 800.104722ms - - id: 24 + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1252,7 +1056,7 @@ interactions: status: 200 OK code: 200 duration: 121.393043ms - - id: 25 + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1301,7 +1105,7 @@ interactions: status: 200 OK code: 200 duration: 101.642182ms - - id: 26 + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1350,7 +1154,7 @@ interactions: status: 200 OK code: 200 duration: 181.846049ms - - id: 27 + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1399,7 +1203,7 @@ interactions: status: 200 OK code: 200 duration: 255.045479ms - - id: 28 + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1448,7 +1252,7 @@ interactions: status: 200 OK code: 200 duration: 112.899564ms - - id: 29 + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1497,7 +1301,7 @@ interactions: status: 200 OK code: 200 duration: 162.39509ms - - id: 30 + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1546,7 +1350,7 @@ interactions: status: 404 Not Found code: 404 duration: 30.748436ms - - id: 31 + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1595,7 +1399,7 @@ interactions: status: 200 OK code: 200 duration: 70.648106ms - - id: 32 + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1644,7 +1448,7 @@ interactions: status: 200 OK code: 200 duration: 93.919818ms - - id: 33 + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1697,7 +1501,7 @@ interactions: status: 200 OK code: 200 duration: 106.888868ms - - id: 34 + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1746,7 +1550,7 @@ interactions: status: 200 OK code: 200 duration: 129.87782ms - - id: 35 + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1795,7 +1599,7 @@ interactions: status: 200 OK code: 200 duration: 138.844176ms - - id: 36 + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1844,7 +1648,7 @@ interactions: status: 200 OK code: 200 duration: 140.572176ms - - id: 37 + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1893,7 +1697,7 @@ interactions: status: 404 Not Found code: 404 duration: 30.940917ms - - id: 38 + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1942,7 +1746,7 @@ interactions: status: 200 OK code: 200 duration: 77.213362ms - - id: 39 + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1991,7 +1795,7 @@ interactions: status: 200 OK code: 200 duration: 93.78744ms - - id: 40 + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2044,7 +1848,7 @@ interactions: status: 200 OK code: 200 duration: 96.645317ms - - id: 41 + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2093,7 +1897,7 @@ interactions: status: 200 OK code: 200 duration: 653.224883ms - - id: 42 + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2142,7 +1946,7 @@ interactions: status: 200 OK code: 200 duration: 108.320262ms - - id: 43 + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2191,7 +1995,7 @@ interactions: status: 200 OK code: 200 duration: 101.872526ms - - id: 44 + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2240,7 +2044,7 @@ interactions: status: 200 OK code: 200 duration: 112.774522ms - - id: 45 + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2291,7 +2095,7 @@ interactions: status: 200 OK code: 200 duration: 129.395087ms - - id: 46 + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2340,7 +2144,7 @@ interactions: status: 200 OK code: 200 duration: 97.86798ms - - id: 47 + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2389,7 +2193,7 @@ interactions: status: 200 OK code: 200 duration: 119.554892ms - - id: 48 + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2438,7 +2242,7 @@ interactions: status: 200 OK code: 200 duration: 155.924435ms - - id: 49 + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2487,7 +2291,7 @@ interactions: status: 200 OK code: 200 duration: 508.165351ms - - id: 50 + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2536,7 +2340,7 @@ interactions: status: 200 OK code: 200 duration: 110.071306ms - - id: 51 + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2585,7 +2389,7 @@ interactions: status: 200 OK code: 200 duration: 162.090555ms - - id: 52 + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2634,7 +2438,7 @@ interactions: status: 404 Not Found code: 404 duration: 21.5899ms - - id: 53 + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2683,7 +2487,7 @@ interactions: status: 200 OK code: 200 duration: 84.99469ms - - id: 54 + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2732,7 +2536,7 @@ interactions: status: 200 OK code: 200 duration: 100.160789ms - - id: 55 + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2785,7 +2589,7 @@ interactions: status: 200 OK code: 200 duration: 84.904722ms - - id: 56 + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2834,7 +2638,7 @@ interactions: status: 200 OK code: 200 duration: 909.598939ms - - id: 57 + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2883,7 +2687,7 @@ interactions: status: 200 OK code: 200 duration: 108.654661ms - - id: 58 + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2932,7 +2736,7 @@ interactions: status: 200 OK code: 200 duration: 121.034899ms - - id: 59 + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2979,7 +2783,7 @@ interactions: status: 204 No Content code: 204 duration: 397.066889ms - - id: 60 + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3028,7 +2832,7 @@ interactions: status: 404 Not Found code: 404 duration: 32.016124ms - - id: 61 + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3077,7 +2881,7 @@ interactions: status: 200 OK code: 200 duration: 363.881875ms - - id: 62 + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3126,7 +2930,7 @@ interactions: status: 200 OK code: 200 duration: 401.000253ms - - id: 63 + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3173,7 +2977,7 @@ interactions: status: 204 No Content code: 204 duration: 375.831052ms - - id: 64 + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3222,7 +3026,7 @@ interactions: status: 404 Not Found code: 404 duration: 91.729451ms - - id: 65 + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3271,7 +3075,7 @@ interactions: status: 200 OK code: 200 duration: 145.732673ms - - id: 66 + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3320,7 +3124,7 @@ interactions: status: 200 OK code: 200 duration: 161.768073ms - - id: 67 + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3373,7 +3177,7 @@ interactions: status: 202 Accepted code: 202 duration: 306.14768ms - - id: 68 + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3422,7 +3226,7 @@ interactions: status: 200 OK code: 200 duration: 151.484837ms - - id: 69 + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3471,7 +3275,7 @@ interactions: status: 200 OK code: 200 duration: 160.210039ms - - id: 70 + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3520,7 +3324,7 @@ interactions: status: 200 OK code: 200 duration: 136.195658ms - - id: 71 + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3569,7 +3373,7 @@ interactions: status: 404 Not Found code: 404 duration: 42.87635ms - - id: 72 + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3618,7 +3422,7 @@ interactions: status: 404 Not Found code: 404 duration: 28.942227ms - - id: 73 + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3667,7 +3471,7 @@ interactions: status: 200 OK code: 200 duration: 83.407242ms - - id: 74 + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3714,7 +3518,7 @@ interactions: status: 204 No Content code: 204 duration: 178.870245ms - - id: 75 + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3763,7 +3567,7 @@ interactions: status: 404 Not Found code: 404 duration: 29.862543ms - - id: 76 + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3812,7 +3616,7 @@ interactions: status: 404 Not Found code: 404 duration: 154.150253ms - - id: 77 + - id: 73 request: proto: HTTP/1.1 proto_major: 1 diff --git a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml index 7212f9b78..c71aeb660 100644 --- a/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml +++ b/internal/services/instance/testdata/ip-reverse-dns-basic.cassette.yaml @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a021db93-cb05-4975-97c3-707bc49f4f34 + - aaea60ca-bc92-4454-aa99-0398e6ac4c7f status: 201 Created code: 201 - duration: 364.710172ms + duration: 540.643409ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -78,18 +78,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,22 +99,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e075b1f4-d22d-43d1-b10a-8a47eaeab0e6 + - c0711535-4b47-4ae4-840d-775d7fb0fcda status: 200 OK code: 200 - duration: 128.346723ms + duration: 141.859552ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 189 + content_length: 190 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"add":{"records":[{"data":"51.158.97.50","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"changes":[{"add":{"records":[{"data":"51.15.236.240","name":"","priority":1,"ttl":3600,"type":"A","comment":null,"id":""}]}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: @@ -129,18 +129,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 147 + content_length: 148 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}]}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}]}' headers: Content-Length: - - "147" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a52e38c8-d268-4650-b4f1-0093fe656571 + - 9080ed7d-2bfd-445b-becb-0c3f2c160676 status: 200 OK code: 200 - duration: 177.342598ms + duration: 176.695229ms - id: 3 request: proto: HTTP/1.1 @@ -178,18 +178,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "164" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8811792f-c2eb-476b-9459-6ba230c4f189 + - e3ff1ea3-3aea-4b81-a4cb-0cd7d9086d27 status: 200 OK code: 200 - duration: 101.905204ms + duration: 78.599638ms - id: 4 request: proto: HTTP/1.1 @@ -227,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "164" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 928f0a97-944a-47ab-b898-746c7dc41c4b + - 4e46f88a-4c0c-424d-a083-417aaf140b98 status: 200 OK code: 200 - duration: 102.151696ms + duration: 100.228474ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=unknown + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=unknown method: GET response: proto: HTTP/2.0 @@ -276,18 +276,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "164" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63eb3eb9-063c-4db1-9544-fafedf562fb6 + - 04233da3-6b41-4767-8510-d4e3dc29e2f9 status: 200 OK code: 200 - duration: 96.838931ms + duration: 97.02363ms - id: 6 request: proto: HTTP/1.1 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:39:25Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -336,7 +336,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:25 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56102b76-601a-4658-bb14-43c7a974de9a + - 1ef588d3-708d-42ea-9997-936b4ee558f5 status: 200 OK code: 200 - duration: 99.958957ms + duration: 91.534691ms - id: 7 request: proto: HTTP/1.1 @@ -366,7 +366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -374,18 +374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -395,10 +395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83b930b7-e7da-48f5-8c96-a61cbb177aa4 + - 68df2618-66cc-4ed1-9f1d-406c701628e5 status: 200 OK code: 200 - duration: 109.974466ms + duration: 122.072764ms - id: 8 request: proto: HTTP/1.1 @@ -415,7 +415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -423,18 +423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "164" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -444,10 +444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c16a84a9-ad5e-40ca-bfc6-026304cbe3ed + - e9d24ac9-b5b9-45f6-9447-264b0672b521 status: 200 OK code: 200 - duration: 108.14128ms + duration: 100.593358ms - id: 9 request: proto: HTTP/1.1 @@ -474,7 +474,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:39:25Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -483,7 +483,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:04 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -493,10 +493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d2c67c3-6eab-4960-b6ba-a52e4eaf10ab + - fc9a98c5-5d62-45ac-bf1c-7e81c1f7307f status: 200 OK code: 200 - duration: 85.159915ms + duration: 104.773763ms - id: 10 request: proto: HTTP/1.1 @@ -513,7 +513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -521,18 +521,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -542,10 +542,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80a05fbb-c36a-4b77-9d3e-1d0d74ae47ee + - 27bd4cd6-721e-45d0-94bf-3d4e0962705e status: 200 OK code: 200 - duration: 143.326547ms + duration: 125.7747ms - id: 11 request: proto: HTTP/1.1 @@ -562,7 +562,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -570,18 +570,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 165 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "164" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -591,10 +591,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 912f0cf8-ab33-4804-8763-dbe11eb402a2 + - f3aec574-c39c-4277-ab5e-9f7d1441eefc status: 200 OK code: 200 - duration: 87.458052ms + duration: 85.050123ms - id: 12 request: proto: HTTP/1.1 @@ -621,7 +621,7 @@ interactions: trailer: {} content_length: 373 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:04Z"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"pending","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:39:25Z"}],"total_count":1}' headers: Content-Length: - "373" @@ -630,7 +630,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 15 Oct 2025 15:39:26 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -640,10 +640,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7dc52ef-4f1e-4396-956e-aa204fdc30cb + - ff0acbf6-bb4c-4e13-b919-4f95db4345c1 status: 200 OK code: 200 - duration: 113.542122ms + duration: 90.016411ms - id: 13 request: proto: HTTP/1.1 @@ -660,7 +660,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -668,18 +668,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 365 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "364" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:05 GMT + - Wed, 15 Oct 2025 15:39:27 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -689,10 +689,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cff4e34a-1f19-42f7-8374-f2be10f4e8c6 + - 1e29440f-767b-4a0d-a144-8742f76c1252 status: 200 OK code: 200 - duration: 132.85285ms + duration: 106.689117ms - id: 14 request: proto: HTTP/1.1 @@ -711,7 +711,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: PATCH response: proto: HTTP/2.0 @@ -719,18 +719,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 331 + content_length: 405 uncompressed: false - body: '{"details":[{"argument_name":"reverse","help_message":"Your reverse must resolve. Ensure the command ''dig +short tf-reverse-instance.scaleway-terraform.com'' matches your IP address ''51.158.97.50''. If it does, please contact our support.","reason":"constraint"}],"message":"invalid argument(s)","type":"invalid_arguments"}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "331" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:10 GMT + - Wed, 15 Oct 2025 15:39:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -740,48 +740,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f64852f0-f43f-4b1b-a8eb-7e7075ac60f4 - status: 400 Bad Request - code: 400 - duration: 203.56986ms + - 342650e5-55d9-4f2d-9ad5-0269d026df43 + status: 200 OK + code: 200 + duration: 485.472124ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 56 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"reverse":"tf-reverse-instance.scaleway-terraform.com"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 405 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "404" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -791,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c73f4692-6fc4-4ff0-bf62-90589bac6757 + - 1bc3578f-2505-4d10-8f5c-d47d88bf805c status: 200 OK code: 200 - duration: 321.850344ms + duration: 104.746393ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -819,18 +817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 405 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "404" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:32 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -840,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 229c6fc0-005b-4fd0-87bc-d29e86e8b8d2 + - 732c1879-fd50-4a9a-9feb-7b77c3429e1b status: 200 OK code: 200 - duration: 126.975099ms + duration: 126.975576ms - id: 17 request: proto: HTTP/1.1 @@ -860,7 +858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -868,18 +866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 165 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "404" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -889,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 062d97c0-6912-4227-85fb-6e1c99ed352b + - 1a454a9f-121e-4e8b-ac24-b851199f42c8 status: 200 OK code: 200 - duration: 106.92864ms + duration: 94.946294ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -917,18 +915,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 372 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:39:27Z"}],"total_count":1}' headers: Content-Length: - - "164" + - "372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -938,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f9d5b07-78f2-4f99-8f12-f3fa17d7f4c5 + - e2c34c47-6609-4844-8851-e34c967f4187 status: 200 OK code: 200 - duration: 96.269925ms + duration: 95.637ms - id: 19 request: proto: HTTP/1.1 @@ -958,7 +956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -966,18 +964,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 405 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:13Z"}],"total_count":1}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "372" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -987,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fe2d1f5-4855-48d2-b5ef-de46a922bc90 + - c8fc7d37-0771-448b-a349-433d11f2537a status: 200 OK code: 200 - duration: 90.56292ms + duration: 104.355621ms - id: 20 request: proto: HTTP/1.1 @@ -1007,7 +1005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d&name=&order_by=name_asc&page=1&type=A method: GET response: proto: HTTP/2.0 @@ -1015,18 +1013,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 165 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"records":[{"comment":null,"data":"51.15.236.240","id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' headers: Content-Length: - - "404" + - "165" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:16 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1036,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a010d2b6-376c-43e2-9900-6455201ad3e6 + - a5d23643-7aa4-49af-a699-295b518d8dd5 status: 200 OK code: 200 - duration: 124.299945ms + duration: 94.732173ms - id: 21 request: proto: HTTP/1.1 @@ -1056,7 +1054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1064,18 +1062,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 405 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "404" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1085,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1a53367-254d-4199-b9c0-90eb9215c320 + - 10ae3ea2-6bb0-4d91-8a6b-0a0534e9f665 status: 200 OK code: 200 - duration: 111.408948ms + duration: 104.388363ms - id: 22 request: proto: HTTP/1.1 @@ -1105,7 +1103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 method: GET response: proto: HTTP/2.0 @@ -1113,18 +1111,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 405 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":"tf-reverse-instance.scaleway-terraform.com","server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "404" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1134,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fd47677-656c-4f73-aa52-92f029265cfc + - 7ddc5bcd-f66f-4102-a654-d89b4b43c2c1 status: 200 OK code: 200 - duration: 114.266633ms + duration: 107.145054ms - id: 23 request: proto: HTTP/1.1 @@ -1154,7 +1152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records?id=638ec93c-9d9c-4303-a5ba-c0adb6feffce&name=&order_by=name_asc&page=1&type=A + url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 method: GET response: proto: HTTP/2.0 @@ -1162,18 +1160,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 164 + content_length: 372 uncompressed: false - body: '{"records":[{"comment":null,"data":"51.158.97.50","id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce","name":"","priority":1,"ttl":3600,"type":"A"}],"total_count":1}' + body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:39:27Z"}],"total_count":1}' headers: Content-Length: - - "164" + - "372" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:33 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1183,46 +1181,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93bc18bd-43eb-41d0-9500-22ac783f6b65 + - f085b502-0ad6-42bd-a374-cb8764e9e51c status: 200 OK code: 200 - duration: 124.759357ms + duration: 89.79068ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 16 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"reverse":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones?dns_zones=tf-reverse-instance.scaleway-terraform.com&domain=&order_by=domain_asc&page=1 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 365 uncompressed: false - body: '{"dns_zones":[{"domain":"scaleway-terraform.com","linked_products":[],"message":null,"ns":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_default":["ns0.dom.scw.cloud","ns1.dom.scw.cloud"],"ns_master":[],"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"active","subdomain":"tf-reverse-instance","updated_at":"2025-10-15T15:03:13Z"}],"total_count":1}' + body: '{"ip":{"address":"51.15.236.240","id":"65a60f6b-fa89-4e49-bc25-fced17fa3df3","ipam_id":"9d6bb7e9-c2cc-49d5-9ab8-5a22d08a0c81","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "372" + - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1232,29 +1232,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8daf97b-906a-4f39-98c8-e4a07be4ab20 + - fde1357b-2c11-4264-9629-12c85e911de4 status: 200 OK code: 200 - duration: 89.880672ms + duration: 306.781748ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 16 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"reverse":null}' + body: '{"changes":[{"delete":{"id":"c5a3b2ff-20b6-4d89-9b65-3d5b533cd96d"}}],"return_all_records":false,"disallow_new_zone_creation":false}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 + url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records method: PATCH response: proto: HTTP/2.0 @@ -1262,18 +1262,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 14 uncompressed: false - body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"918a5180-f8e7-45b2-a078-63d7efb48a9a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"records":[]}' headers: Content-Length: - - "364" + - "14" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1283,50 +1283,44 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a26843c-4bfb-4444-970f-81be353b8f69 + - b37ac643-4194-45b7-92ee-0b726bf70d2d status: 200 OK code: 200 - duration: 288.341782ms + duration: 117.180426ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 50 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/65a60f6b-fa89-4e49-bc25-fced17fa3df3 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 0 uncompressed: false - body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "365" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + - Wed, 15 Oct 2025 15:39:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1336,48 +1330,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 566a610d-cce1-4aad-a4e1-acbbbbebb66a - status: 201 Created - code: 201 - duration: 373.434831ms + - 74fe06c2-a157-4cd7-8f34-f4165633996e + status: 204 No Content + code: 204 + duration: 322.685633ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 50 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"changes":[{"delete":{"id":"638ec93c-9d9c-4303-a5ba-c0adb6feffce"}}],"return_all_records":false,"disallow_new_zone_creation":false}' + body: '{"project":"105bdce1-64c0-48ab-899d-868455867ecf"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/domain/v2beta1/dns-zones/tf-reverse-instance.scaleway-terraform.com/records - method: PATCH + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 14 + content_length: 364 uncompressed: false - body: '{"records":[]}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"71a7d6b5-a842-4653-950b-5f2b46f987d4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "14" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:34 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1387,10 +1383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50f5a4e7-712a-4234-b40c-10b8b93e06b2 - status: 200 OK - code: 200 - duration: 146.043224ms + - cd639088-b3d7-4f5a-bb00-15a58620cde7 + status: 201 Created + code: 201 + duration: 1.064600898s - id: 28 request: proto: HTTP/1.1 @@ -1407,7 +1403,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1415,18 +1411,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"71a7d6b5-a842-4653-950b-5f2b46f987d4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:17 GMT + - Wed, 15 Oct 2025 15:39:34 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1436,10 +1432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2b5b061-6d37-4665-8ebe-841c8ca0808f + - 9b8dc857-88bc-44c3-b3fc-497d02a5d164 status: 200 OK code: 200 - duration: 118.831457ms + duration: 123.560689ms - id: 29 request: proto: HTTP/1.1 @@ -1457,53 +1453,6 @@ interactions: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2626f8e4-5195-4779-aaa9-362459b0bc2f - status: 204 No Content - code: 204 - duration: 410.390802ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 method: GET response: proto: HTTP/2.0 @@ -1511,18 +1460,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 364 uncompressed: false - body: '{"ip":{"address":"51.158.64.118","id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","ipam_id":"6fcce021-9e68-43d6-a7ab-bb652480a60a","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' + body: '{"ip":{"address":"51.158.97.50","id":"aede723a-ffe8-427b-b809-eea14206f331","ipam_id":"71a7d6b5-a842-4653-950b-5f2b46f987d4","organization":"105bdce1-64c0-48ab-899d-868455867ecf","prefix":null,"project":"105bdce1-64c0-48ab-899d-868455867ecf","reverse":null,"server":null,"state":"detached","tags":[],"type":"routed_ipv4","zone":"fr-par-1"}}' headers: Content-Length: - - "365" + - "364" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:18 GMT + - Wed, 15 Oct 2025 15:39:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1532,11 +1481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b08ac4f-ca7d-4433-aa49-5210b6f2af52 + - 455d324a-b11d-4a13-aad2-42fadeb5532c status: 200 OK code: 200 - duration: 131.518425ms - - id: 31 + duration: 130.699044ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1552,7 +1501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: DELETE response: proto: HTTP/2.0 @@ -1569,7 +1518,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 15 Oct 2025 15:39:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1579,11 +1528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a85643b6-0935-4972-bf38-31f32f8e659d + - af7d1750-99d4-4298-91fb-e7c9407cc836 status: 204 No Content code: 204 - duration: 304.215795ms - - id: 32 + duration: 338.957668ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1599,7 +1548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/c8c01bd8-acd8-411c-a396-7c3d71f6f0d1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/ips/aede723a-ffe8-427b-b809-eea14206f331 method: GET response: proto: HTTP/2.0 @@ -1609,7 +1558,7 @@ interactions: trailer: {} content_length: 139 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"c8c01bd8-acd8-411c-a396-7c3d71f6f0d1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_ip","resource_id":"aede723a-ffe8-427b-b809-eea14206f331","type":"not_found"}' headers: Content-Length: - "139" @@ -1618,7 +1567,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:19 GMT + - Wed, 15 Oct 2025 15:39:35 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -1628,7 +1577,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cab7869-a153-4c77-b16b-00daf21ab638 + - 06b2b947-96df-4d3e-8776-a3ae270ce33f status: 404 Not Found code: 404 - duration: 43.784295ms + duration: 59.105721ms diff --git a/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml b/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml index 780a64308..ae907d1d3 100644 --- a/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml +++ b/internal/services/instance/testdata/security-group-rules-ip-ranges.cassette.yaml @@ -6,13 +6,13 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 203 + content_length: 198 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-sg-priceless-stonebraker","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' + body: '{"name":"tf-sg-competent-easley","project":"105bdce1-64c0-48ab-899d-868455867ecf","stateful":true,"inbound_default_policy":"accept","outbound_default_policy":"accept","enable_default_security":true}' form: {} headers: Content-Type: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 593 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.299087+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:38:51.799202+00:00","description":null,"enable_default_security":true,"id":"0ac4ec05-c928-4668-9455-1068a5771614","inbound_default_policy":"accept","modification_date":"2025-10-15T15:38:51.799202+00:00","name":"tf-sg-competent-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "593" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 15 Oct 2025 15:38:51 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -50,10 +50,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6986a9e2-b0b3-4e8f-a57f-334b64b81c3d + - aa85f65c-ae10-4809-bdd5-537d0241345c status: 201 Created code: 201 - duration: 213.452306ms + duration: 242.302471ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 method: GET response: proto: HTTP/2.0 @@ -78,18 +78,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 593 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.299087+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:38:51.799202+00:00","description":null,"enable_default_security":true,"id":"0ac4ec05-c928-4668-9455-1068a5771614","inbound_default_policy":"accept","modification_date":"2025-10-15T15:38:51.799202+00:00","name":"tf-sg-competent-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "593" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 15 Oct 2025 15:38:51 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4522e0b1-345b-47ec-add8-28133b0a2bfb + - 4242f4bb-6c91-4838-ae91-dac84c1c0e10 status: 200 OK code: 200 - duration: 92.388837ms + duration: 105.704928ms - id: 2 request: proto: HTTP/1.1 @@ -121,7 +121,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules method: PUT response: proto: HTTP/2.0 @@ -131,7 +131,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ad472c1b-ef85-4313-a35f-e796e91f42a3","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"62b2ef63-354c-48e1-bd94-7d87a3f1b704","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"42a3d99a-14f4-46c6-b452-7a484759b198","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"dfc51dd3-3e0b-401e-a427-55e1f452154f","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"19d56562-579b-42f8-aae1-0d3d6b4bb514","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"ca3aa0b3-48ea-44e7-bfcd-a85cb8d3ff10","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -140,7 +140,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:02:59 GMT + - Wed, 15 Oct 2025 15:38:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -150,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7fee9ba-0d1c-4371-b039-6214bb689634 + - f54471a5-cb32-42aa-9126-553bda21f0aa status: 200 OK code: 200 - duration: 320.859637ms + duration: 743.459223ms - id: 3 request: proto: HTTP/1.1 @@ -170,7 +170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -180,7 +180,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ad472c1b-ef85-4313-a35f-e796e91f42a3","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"62b2ef63-354c-48e1-bd94-7d87a3f1b704","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"42a3d99a-14f4-46c6-b452-7a484759b198","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"dfc51dd3-3e0b-401e-a427-55e1f452154f","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"19d56562-579b-42f8-aae1-0d3d6b4bb514","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"ca3aa0b3-48ea-44e7-bfcd-a85cb8d3ff10","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -189,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 15 Oct 2025 15:38:52 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efa4abc4-d8d0-4676-b404-cc8585bc7b84 + - 82d29ab6-bd32-4c39-87be-1867e9344f8f status: 200 OK code: 200 - duration: 253.825021ms + duration: 113.602828ms - id: 4 request: proto: HTTP/1.1 @@ -219,7 +219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 method: GET response: proto: HTTP/2.0 @@ -227,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 593 + content_length: 588 uncompressed: false - body: '{"security_group":{"creation_date":"2025-10-15T15:02:59.299087+00:00","description":null,"enable_default_security":true,"id":"d2253146-2aab-4973-a86f-0f1786c94673","inbound_default_policy":"accept","modification_date":"2025-10-15T15:02:59.755392+00:00","name":"tf-sg-priceless-stonebraker","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' + body: '{"security_group":{"creation_date":"2025-10-15T15:38:51.799202+00:00","description":null,"enable_default_security":true,"id":"0ac4ec05-c928-4668-9455-1068a5771614","inbound_default_policy":"accept","modification_date":"2025-10-15T15:38:52.713370+00:00","name":"tf-sg-competent-easley","organization":"105bdce1-64c0-48ab-899d-868455867ecf","organization_default":false,"outbound_default_policy":"accept","project":"105bdce1-64c0-48ab-899d-868455867ecf","project_default":false,"servers":[],"state":"available","stateful":true,"tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "593" + - "588" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 15 Oct 2025 15:38:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -248,10 +248,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd8691d3-0547-42ef-80b2-631a27149102 + - 6e898c4f-fa18-4a6c-bfc3-4a8993c2befd status: 200 OK code: 200 - duration: 112.472172ms + duration: 88.573203ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +268,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -278,7 +278,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ad472c1b-ef85-4313-a35f-e796e91f42a3","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"62b2ef63-354c-48e1-bd94-7d87a3f1b704","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"42a3d99a-14f4-46c6-b452-7a484759b198","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"dfc51dd3-3e0b-401e-a427-55e1f452154f","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"19d56562-579b-42f8-aae1-0d3d6b4bb514","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"ca3aa0b3-48ea-44e7-bfcd-a85cb8d3ff10","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -287,7 +287,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 15 Oct 2025 15:38:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -297,10 +297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a76abbd3-4878-40b3-9c7e-6cb6c2e93324 + - c9b41424-69dd-442a-9050-4c083bf4b736 status: 200 OK code: 200 - duration: 115.350616ms + duration: 122.208906ms - id: 6 request: proto: HTTP/1.1 @@ -317,7 +317,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules?page=1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules?page=1 method: GET response: proto: HTTP/2.0 @@ -327,7 +327,7 @@ interactions: trailer: {} content_length: 3100 uncompressed: false - body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b50cd722-090d-48b4-a16b-383b0402e6bc","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"b72dba8f-70d9-4179-b6f5-13d6b93d3577","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"bd8c2296-cd7f-4d06-80e5-6b66ad565e79","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"f773f31c-8528-4bfc-8a9e-abdf105ef9c8","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"a981f92d-e3c8-426b-b6fb-c0781bce3dcc","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"3ab4099a-9acc-4b56-87a6-aad52f977eb6","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' + body: '{"rules":[{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000001","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000002","ip_range":"0.0.0.0/0","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000003","ip_range":"0.0.0.0/0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":25,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000004","ip_range":"::/0","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":465,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000005","ip_range":"::/0","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":587,"dest_port_to":null,"direction":"outbound","editable":false,"id":"11111111-2222-4333-8444-000000000006","ip_range":"::/0","position":6,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"inbound","editable":true,"id":"ad472c1b-ef85-4313-a35f-e796e91f42a3","ip_range":"0.0.0.0/0","position":1,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"inbound","editable":true,"id":"62b2ef63-354c-48e1-bd94-7d87a3f1b704","ip_range":"1.2.0.0/16","position":2,"protocol":"TCP","zone":"fr-par-1"},{"action":"accept","dest_ip_range":null,"dest_port_from":80,"dest_port_to":null,"direction":"outbound","editable":true,"id":"42a3d99a-14f4-46c6-b452-7a484759b198","ip_range":"1.2.3.0","position":3,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"dfc51dd3-3e0b-401e-a427-55e1f452154f","ip_range":"2002::/24","position":4,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"19d56562-579b-42f8-aae1-0d3d6b4bb514","ip_range":"2002:0:0:1234::/64","position":5,"protocol":"TCP","zone":"fr-par-1"},{"action":"drop","dest_ip_range":null,"dest_port_from":443,"dest_port_to":null,"direction":"outbound","editable":true,"id":"ca3aa0b3-48ea-44e7-bfcd-a85cb8d3ff10","ip_range":"2002::1234:abcd:ffff:c0a8:101","position":6,"protocol":"TCP","zone":"fr-par-1"}]}' headers: Content-Length: - "3100" @@ -336,7 +336,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:00 GMT + - Wed, 15 Oct 2025 15:38:53 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -346,10 +346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb6281e8-3b2a-4dc2-8828-ef1102c831b6 + - ade48ba0-8e3f-4e86-aa30-6be15614033c status: 200 OK code: 200 - duration: 109.026685ms + duration: 92.252798ms - id: 7 request: proto: HTTP/1.1 @@ -368,7 +368,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673/rules + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614/rules method: PUT response: proto: HTTP/2.0 @@ -387,7 +387,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:01 GMT + - Wed, 15 Oct 2025 15:38:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -397,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93f23df6-5c4c-41e5-b369-0be2657e2a40 + - f04859a8-edbc-4192-a42d-0611a11ef328 status: 200 OK code: 200 - duration: 250.37489ms + duration: 274.524413ms - id: 8 request: proto: HTTP/1.1 @@ -417,56 +417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 62 - uncompressed: false - body: '{"message":"Internal error","type":"internal_server_error"}' - headers: - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:03:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2bc2fa3b-807b-46bd-879c-c113ac2281ab - status: 500 Internal Server Error - code: 500 - duration: 318.587625ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 method: DELETE response: proto: HTTP/2.0 @@ -483,7 +434,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 15 Oct 2025 15:38:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -493,11 +444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c826bcc-585a-4ea9-8db8-29e91b8be9ae + - 4f35d351-9d0d-462c-8fd0-3be080bd2250 status: 204 No Content code: 204 - duration: 156.795925ms - - id: 10 + duration: 157.122426ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -513,7 +464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/d2253146-2aab-4973-a86f-0f1786c94673 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/security_groups/0ac4ec05-c928-4668-9455-1068a5771614 method: GET response: proto: HTTP/2.0 @@ -523,7 +474,7 @@ interactions: trailer: {} content_length: 151 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"d2253146-2aab-4973-a86f-0f1786c94673","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_security_group","resource_id":"0ac4ec05-c928-4668-9455-1068a5771614","type":"not_found"}' headers: Content-Length: - "151" @@ -532,7 +483,7 @@ interactions: Content-Type: - application/json Date: - - Wed, 15 Oct 2025 15:03:03 GMT + - Wed, 15 Oct 2025 15:38:54 GMT Server: - Scaleway API Gateway (fr-par-3;edge02) Strict-Transport-Security: @@ -542,7 +493,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c06bad7b-7ef0-452d-9ac0-cda6a9245d5c + - fa361f84-8c9f-4371-8c72-6ced44382141 status: 404 Not Found code: 404 - duration: 27.68007ms + duration: 28.075209ms diff --git a/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml b/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml deleted file mode 100644 index 84c2bcad3..000000000 --- a/internal/services/instance/testdata/server-admin-password-encryption-ssh-key-id.cassette.yaml +++ /dev/null @@ -1,3912 +0,0 @@ ---- -version: 2 -interactions: - - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 684 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-acc-admin-pwd-encryption","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU= opensource@scaleway.com","project_id":"105bdce1-64c0-48ab-899d-868455867ecf"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' - headers: - Content-Length: - - "955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6ff28193-a5a1-42f9-ad05-845ee19f6397 - status: 200 OK - code: 200 - duration: 337.529721ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' - headers: - Content-Length: - - "955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 844952eb-7ae8-4731-bfd4-f2d5997f860c - status: 200 OK - code: 200 - duration: 89.039028ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 39208 - uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' - headers: - Content-Length: - - "39208" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:10 GMT - Link: - - ; rel="next",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ab50657f-0af7-4f52-a76e-12b17cf55e01 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 66.14163ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 19730 - uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' - headers: - Content-Length: - - "19730" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:10 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 87a73122-9538-4269-a0ba-bef327a17d76 - X-Total-Count: - - "75" - status: 200 OK - code: 200 - duration: 57.205944ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=windows_server_2022&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 300 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["POP2-2C-8G-WIN","POP2-4C-16G-WIN","POP2-8C-32G-WIN","POP2-16C-64G-WIN","POP2-32C-128G-WIN"],"id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","label":"windows_server_2022","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' - headers: - Content-Length: - - "300" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2ba0a93a-5fee-4e1f-918b-c8c12058d5ce - status: 200 OK - code: 200 - duration: 62.193326ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 314 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-srv-sad-ride","dynamic_ip_required":false,"commercial_type":"POP2-2C-8G-WIN","image":"5d355a7d-8abb-4418-9599-e26621bf7ca8","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1809 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:12 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3248cd92-9cd7-4ee3-8e1c-bd9d7e5c3a22 - status: 201 Created - code: 201 - duration: 1.539728046s - - id: 6 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1809 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7c616a25-fc7d-43f3-91bb-783bb137bb1e - status: 200 OK - code: 200 - duration: 149.325859ms - - id: 7 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1809 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:11.770840+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1809" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f7fb04c-4a98-439f-9f6a-550f791e6678 - status: 200 OK - code: 200 - duration: 167.606379ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "696" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f3e75a0b-7c5b-4cc3-8449-dcb382995702 - status: 200 OK - code: 200 - duration: 90.329979ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 20 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"poweron"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 357 - uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action","href_result":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670","id":"17d667c2-7bb9-4099-90ea-dd13c359439f","progress":0,"started_at":"2025-10-09T16:08:13.082993+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "357" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:13 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/17d667c2-7bb9-4099-90ea-dd13c359439f - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 970ef37f-6c54-42fd-bc80-4e3e320310f0 - status: 202 Accepted - code: 202 - duration: 261.098637ms - - id: 10 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1831 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:12.878348+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1831" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fe02b3f-6c49-44b6-82d8-b4e77a4442d9 - status: 200 OK - code: 200 - duration: 156.889653ms - - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1833241b-a462-4d94-8e9c-58a3d0f6db11 - status: 200 OK - code: 200 - duration: 146.309334ms - - id: 12 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d9ecaf3b-fded-497d-a759-551cc3a9a2d3 - status: 200 OK - code: 200 - duration: 140.672855ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a5c66af3-28f1-46c9-a1e4-54fb5bc767aa - status: 404 Not Found - code: 404 - duration: 31.266873ms - - id: 14 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "696" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b2116fb-4e2a-4525-b57c-4d80ede5d339 - status: 200 OK - code: 200 - duration: 92.428345ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ee5ee761-f254-4994-848f-6188d903584a - status: 200 OK - code: 200 - duration: 110.992648ms - - id: 16 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:18 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - cee41c98-371b-480b-ac85-9f7e87e8c3bf - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 107.040296ms - - id: 17 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' - headers: - Content-Length: - - "955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6f55c03c-c2bf-4220-bcd3-db79966fa167 - status: 200 OK - code: 200 - duration: 93.966549ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' - headers: - Content-Length: - - "955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f610bff-e74b-4c74-bf14-af1779ce785a - status: 200 OK - code: 200 - duration: 90.504237ms - - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3cf1fea2-33df-43db-8441-7710905dc1ee - status: 200 OK - code: 200 - duration: 148.458695ms - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 447fbe2f-6031-42e5-962f-455dd0146d0c - status: 404 Not Found - code: 404 - duration: 28.627584ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "696" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8fa3b860-6500-44b8-b28a-1ac62cdf37f3 - status: 200 OK - code: 200 - duration: 94.668836ms - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - c0d1955b-61aa-47d3-ade8-4306d73889a7 - status: 200 OK - code: 200 - duration: 123.762063ms - - id: 23 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:19 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 42e802b1-1100-444c-a842-ed44f9bbd10f - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 104.747537ms - - id: 24 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 955 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:10.561658Z","disabled":false,"fingerprint":"3072 MD5:07:6c:9a:67:83:c5:b6:4b:2b:44:fe:f2:a4:8e:a1:3d (ssh-rsa)","id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","name":"test-acc-admin-pwd-encryption","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_key":"ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABgQDFNaFderD6JUbMr6LoL7SdTaQ31gLcXwKv07Zyw0t4pq6Y8CGaeEvevS54TBR2iNJHa3hlIIUmA2qvH7Oh4v1QmMG2djWi2cD1lDEl8/8PYakaEBGh6snp3TMyhoqHOZqqKwDhPW0gJbe2vXfAgWSEzI8h1fs1D7iEkC1L/11hZjkqbUX/KduWFLyIRWdSuI3SWk4CXKRXwIkeYeSYb8AiIGY21u2z8H2J7YmhRzE85Kj/Fk4tST5gLW/IfLD4TMJjC/cZiJevETjs+XVmzTMIyU2sTQKufSQTj2qZ7RfgGwTHDoOeFvylgAdMGLZ/Un+gzeEPj9xUSPvvnbA9UPIKV4AffgtT1y5gcSWuHaqRxpUTY204mh6kq0EdVN2UsiJTgX+xnJgnOrKg6G3dkM8LSi2QtbjYbRXcuDJ9YUbUFK8M5Vo7LhMsMFb1hPtY68kbDUqD01RuMD5KhGIngCRRBZJriRQclUCJS4D3jr/Frw9ruNGh+NTIvIwdv0Y2brU=","updated_at":"2025-10-09T16:08:10.561658Z"}' - headers: - Content-Length: - - "955" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 86b9f878-9707-412f-be4a-d2d1a48463ff - status: 200 OK - code: 200 - duration: 96.810874ms - - id: 25 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b5b101c0-a228-4e91-9342-acd3079603a7 - status: 200 OK - code: 200 - duration: 139.664344ms - - id: 26 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - aa67b35c-f624-4f5c-93c5-52dced0c0b8c - status: 404 Not Found - code: 404 - duration: 29.684105ms - - id: 27 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 696 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":null,"name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-09T16:08:11.947357Z","id":"a125e900-cb4b-42f7-8c00-91b677e26706","product_resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:08:11.947357Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "696" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f933ddf-98dc-445c-80cc-05ad5ade467e - status: 200 OK - code: 200 - duration: 98.66477ms - - id: 28 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/user_data - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 17 - uncompressed: false - body: '{"user_data":[]}' - headers: - Content-Length: - - "17" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e30bf1d-9f7e-4647-ab9d-7c0efa2d4bcb - status: 200 OK - code: 200 - duration: 96.589419ms - - id: 29 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/private_nics - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 20 - uncompressed: false - body: '{"private_nics":[]}' - headers: - Content-Length: - - "20" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Link: - - ; rel="last" - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6e854705-ebae-4465-af19-72dce26ad7f7 - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 106.773025ms - - id: 30 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f82732c8-743d-4748-9968-ec32038d0c1b - status: 200 OK - code: 200 - duration: 133.367687ms - - id: 31 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 43 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 62 - uncompressed: false - body: '{"message":"Internal error","type":"internal_server_error"}' - headers: - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:21 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0241ecbf-0c59-4749-9d4c-6d93100f41ba - status: 500 Internal Server Error - code: 500 - duration: 520.39156ms - - id: 32 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 43 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 62 - uncompressed: false - body: '{"message":"Internal error","type":"internal_server_error"}' - headers: - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 470652ef-ad2b-4d40-accb-c67ce7d429be - status: 500 Internal Server Error - code: 500 - duration: 295.750495ms - - id: 33 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 43 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 62 - uncompressed: false - body: '{"message":"Internal error","type":"internal_server_error"}' - headers: - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8887edeb-67c8-4bb5-be7a-b97c42054afc - status: 500 Internal Server Error - code: 500 - duration: 265.200148ms - - id: 34 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 43 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"admin_password_encryption_ssh_key_id":""}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: PATCH - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 62 - uncompressed: false - body: '{"message":"Internal error","type":"internal_server_error"}' - headers: - Content-Length: - - "62" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0673d065-eb30-4e87-aa7c-a5dc533cf03f - status: 500 Internal Server Error - code: 500 - duration: 377.726371ms - - id: 35 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 83256ba5-3b27-46ab-983f-17906bd7fb1f - status: 204 No Content - code: 204 - duration: 92.176607ms - - id: 36 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1964 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:14.986525+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1964" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a9664494-03b4-41e0-b08d-77821c5f759a - status: 200 OK - code: 200 - duration: 141.697862ms - - id: 37 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 22 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"action":"terminate"}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 353 - uncompressed: false - body: '{"task":{"description":"server_terminate","href_from":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670/action","href_result":"/servers/29a9e44a-8dfd-4612-af66-eeb565240670","id":"8c70bbb7-95ac-4894-b1a2-30cd52e1a199","progress":0,"started_at":"2025-10-09T16:08:37.103714+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' - headers: - Content-Length: - - "353" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:37 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8c70bbb7-95ac-4894-b1a2-30cd52e1a199 - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1b0c478a-36eb-4348-b1d4-05187c490ea2 - status: 202 Accepted - code: 202 - duration: 525.461988ms - - id: 38 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 91bf7d15-cc71-4f2a-94d0-ce3c549e2ce5 - status: 200 OK - code: 200 - duration: 147.861221ms - - id: 39 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:42 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3b830d52-abf6-4a06-8faf-9bd42151b9f2 - status: 200 OK - code: 200 - duration: 127.438123ms - - id: 40 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:47 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 4f043519-7042-4887-a2f2-521c37ee42e0 - status: 200 OK - code: 200 - duration: 168.413456ms - - id: 41 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:52 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 52fb14c0-3321-4ff3-8243-e3b01d6ac45e - status: 200 OK - code: 200 - duration: 151.363204ms - - id: 42 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:08:57 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0a479816-dd22-44c7-9cb1-bef081ba1bc4 - status: 200 OK - code: 200 - duration: 168.468974ms - - id: 43 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:03 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1544e6a2-5ea2-4a62-9a53-954c871b6b9a - status: 200 OK - code: 200 - duration: 136.749141ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:08 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7f2eb64a-c229-4809-82cd-47cee26aa72a - status: 200 OK - code: 200 - duration: 146.671461ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:13 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - a48a6674-fd6c-43b4-a3ef-7eb8f0e7d654 - status: 200 OK - code: 200 - duration: 157.404941ms - - id: 46 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:18 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 559dd906-c5d7-4e1e-8e38-8f0c4ede2a01 - status: 200 OK - code: 200 - duration: 157.812897ms - - id: 47 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:23 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 718c28d6-3c38-4231-9178-68c85fb40d26 - status: 200 OK - code: 200 - duration: 134.186641ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:28 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 201c7d77-ef26-4e9a-b819-09be4b8c2b0e - status: 200 OK - code: 200 - duration: 158.837402ms - - id: 49 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:33 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 19fc02a3-3a7c-4fb7-90b8-91ad7f6d2906 - status: 200 OK - code: 200 - duration: 135.83228ms - - id: 50 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:39 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bb35054a-21ae-460a-9847-cb6b4150fbf1 - status: 200 OK - code: 200 - duration: 362.254047ms - - id: 51 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:44 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb13f84a-6839-4271-adbf-e003b5fc7997 - status: 200 OK - code: 200 - duration: 227.190399ms - - id: 52 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:49 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e92e3b46-8ad4-47dc-bfc8-ef0150bd77a2 - status: 200 OK - code: 200 - duration: 243.066686ms - - id: 53 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:09:54 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f385eea6-a07e-4550-8009-e40279635102 - status: 200 OK - code: 200 - duration: 155.568591ms - - id: 54 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:00 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 6770083f-c898-41cc-b669-02882ff24f13 - status: 200 OK - code: 200 - duration: 164.180082ms - - id: 55 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:05 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7ab6fcad-886e-4309-9f95-cc48d6ce1071 - status: 200 OK - code: 200 - duration: 145.824308ms - - id: 56 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:10 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - bc575a4a-eb41-4e4b-8ae6-ae11eda6e2db - status: 200 OK - code: 200 - duration: 160.597777ms - - id: 57 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:15 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - d8300d48-7f54-4c3c-9d7e-99e3e10dbe33 - status: 200 OK - code: 200 - duration: 149.655046ms - - id: 58 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:20 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59230a59-7917-4062-8988-17c18e93ac40 - status: 200 OK - code: 200 - duration: 154.703385ms - - id: 59 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:25 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5bf13f35-0f0a-4956-8493-fd8b1b1cffba - status: 200 OK - code: 200 - duration: 128.543174ms - - id: 60 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:31 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 72197778-94f2-4b97-894a-c108e14c1d2f - status: 200 OK - code: 200 - duration: 119.762547ms - - id: 61 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:36 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12798657-ebd9-4565-8123-a89dde6074e6 - status: 200 OK - code: 200 - duration: 146.194762ms - - id: 62 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:41 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - af9da0ca-abbb-4198-9572-75cc8b3ed6ae - status: 200 OK - code: 200 - duration: 145.527612ms - - id: 63 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:46 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b1a4e5c8-d812-4da4-b171-13e79b60276c - status: 200 OK - code: 200 - duration: 157.252214ms - - id: 64 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 324e5490-4d2d-4861-bc57-5c86837ee820 - status: 200 OK - code: 200 - duration: 130.075583ms - - id: 65 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:10:56 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 45169b4a-c409-4df8-9ac0-25c4b90024e8 - status: 200 OK - code: 200 - duration: 140.044472ms - - id: 66 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1927 - uncompressed: false - body: '{"server":{"admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:08:36.644190+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1927" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:01 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - ae550dec-b7a6-48c2-97cc-339d45b462d3 - status: 200 OK - code: 200 - duration: 148.54637ms - - id: 67 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:07 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 24eb310c-b856-4afa-95da-f364d70119a0 - status: 200 OK - code: 200 - duration: 135.028196ms - - id: 68 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:12 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 351c766c-137b-4591-ac67-09e88c2aa7cc - status: 200 OK - code: 200 - duration: 149.518024ms - - id: 69 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:17 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 7b7ac049-1350-4a35-b3df-e476e31bd72f - status: 200 OK - code: 200 - duration: 170.253938ms - - id: 70 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:22 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 66b7557f-e2f1-4efe-9552-2070a8eaae7c - status: 200 OK - code: 200 - duration: 151.281645ms - - id: 71 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:27 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2d40da24-13ab-41af-8a79-b387437d8468 - status: 200 OK - code: 200 - duration: 175.440319ms - - id: 72 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2477 - uncompressed: false - body: '{"server":{"admin_password_encrypted_value":"CbocEz0gjIt15d5WqvRXaAxnvG2s8bT3Tjjzz4I4lfrpxDDzxkrEo6YPzsKJvghVUoyrZUBWjm7fjPiwipMi4Y3+WRRwO/HHMUoNThhnRagPnPXA63TB6xq4W+pyQo/FAOgAB63cEtysEWoN0OsKFm52+AjBhYbnharyPhyeLV5CVkt73WopvENulq9N4SBQ+gRDim+giXfCuVPWn5xh01jIPsqc5aGc+x5U7dr/e9SxvJG+3oJAR7usgeyQ7CYR9ECcuN3HllZt2W2ZKcmKb//WIJnLB5320038Gh9knKVYEgtWu+KIKIua76D/Vg6K8BQ50iZ1GPT02vmQCZwIKlwZry2fdMhKidBYjbIbPZ80SYAcVF6rdkQgzqPF/1fA4A9IFw0C4KBEx18RYR4E0j5zV0KC0VKcUTk1NPs5KGIYt/ljm6YL85+4Gt4CB7a5zojYv9mADPE9YtZBSfMeRk26B0PMOLcmKMRSa7PtoypR2DMdBXajwl/LOLLPeNLC","admin_password_encryption_ssh_key_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"POP2-2C-8G-WIN","creation_date":"2025-10-09T16:08:11.770840+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-srv-sad-ride","id":"29a9e44a-8dfd-4612-af66-eeb565240670","image":{"arch":"x86_64","creation_date":"2025-07-25T14:07:31.902597+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"5d355a7d-8abb-4418-9599-e26621bf7ca8","modification_date":"2025-07-25T14:07:31.902597+00:00","name":"Windows Server 2022","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"de729856-029a-44a0-8737-5ec5227304fe","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"53","hypervisor_id":"701","node_id":"7","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:cc:a6:d7","maintenances":[],"modification_date":"2025-10-09T16:11:05.078927+00:00","name":"tf-srv-sad-ride","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"terminating","tags":[],"volumes":{"0":{"boot":false,"id":"8a82da7d-245a-41d7-a287-43a52803e4c3","state":"available","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2477" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 21ffc85f-8e5c-47f4-b89d-efb475ed8b2f - status: 200 OK - code: 200 - duration: 149.202197ms - - id: 73 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 438e3d82-cf55-40fd-8694-5de6fc2948f8 - status: 404 Not Found - code: 404 - duration: 45.838667ms - - id: 74 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"8a82da7d-245a-41d7-a287-43a52803e4c3","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:37 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3f527382-2a10-45e9-8c0a-0e14e922ccf3 - status: 404 Not Found - code: 404 - duration: 34.901783ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 489 - uncompressed: false - body: '{"created_at":"2025-10-09T16:08:11.947357Z","id":"8a82da7d-245a-41d7-a287-43a52803e4c3","last_detached_at":"2025-10-09T16:11:35.588397Z","name":"Windows Server 2022_sbs_volume_0","parent_snapshot_id":"de729856-029a-44a0-8737-5ec5227304fe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":25000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-10-09T16:11:35.588397Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "489" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f891be60-fb01-43d2-a534-3d8c6dcbc3f3 - status: 200 OK - code: 200 - duration: 91.843615ms - - id: 76 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/8a82da7d-245a-41d7-a287-43a52803e4c3 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 675c346d-0236-44af-a7b6-7d7ded224328 - status: 204 No Content - code: 204 - duration: 182.676504ms - - id: 77 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/29a9e44a-8dfd-4612-af66-eeb565240670 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"29a9e44a-8dfd-4612-af66-eeb565240670","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 0b9c8bc6-15a0-4018-a88c-481eef47f0f6 - status: 404 Not Found - code: 404 - duration: 61.487088ms - - id: 78 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/iam/v1alpha1/ssh-keys/28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 128 - uncompressed: false - body: '{"message":"resource is not found","resource":"ssh_key","resource_id":"28d48d0f-e0a0-43c8-bfbe-f5d2b07dff6b","type":"not_found"}' - headers: - Content-Length: - - "128" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Thu, 09 Oct 2025 16:11:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge01) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - eca87a67-1c7f-463b-9968-917376018035 - status: 404 Not Found - code: 404 - duration: 26.159485ms diff --git a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml index 54be60990..ce70ee8ad 100644 --- a/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml +++ b/internal/services/instance/testdata/server-root-volume-from-external-snapshot.cassette.yaml @@ -957,202 +957,6 @@ interactions: code: 200 duration: 430.243093ms - id: 19 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 711 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "711" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:32 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 77f4a358-91b2-4bc6-8d0d-e5795306ce7f - status: 200 OK - code: 200 - duration: 1.028594765s - - id: 20 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 711 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "711" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:38 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 824be598-2de7-45ac-a26d-05c900b62961 - status: 200 OK - code: 200 - duration: 961.674685ms - - id: 21 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 711 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "711" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:45 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3be82892-0a5f-4475-99d3-4dc3d036267d - status: 200 OK - code: 200 - duration: 1.5214293s - - id: 22 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.25.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/574ba32f-eee8-4ee1-a441-f7b1eec2ea3f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 711 - uncompressed: false - body: '{"class":"sbs","created_at":"2025-10-15T15:04:25.752363Z","id":"574ba32f-eee8-4ee1-a441-f7b1eec2ea3f","name":"tf-snapshot-priceless-germain","parent_volume":{"id":"2908b234-85fa-4ff3-b91d-a152424794f6","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","status":"in_use","type":"sbs_5k"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-10-15T15:04:25.809802Z","id":"55405bbc-f92a-4177-8f9f-d9a10e13017e","product_resource_id":"00000000-0000-0000-0000-000000000000","product_resource_type":"internal","status":"attached","type":"unknown_type"}],"size":50000000000,"status":"creating","tags":[],"updated_at":"2025-10-15T15:04:25.752363Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "711" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Wed, 15 Oct 2025 15:04:51 GMT - Server: - - Scaleway API Gateway (fr-par-3;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e69c9a9d-d733-4579-9df2-12d09e3d5a9b - status: 200 OK - code: 200 - duration: 1.12120579s - - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1201,7 +1005,7 @@ interactions: status: 200 OK code: 200 duration: 193.702224ms - - id: 24 + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1250,7 +1054,7 @@ interactions: status: 200 OK code: 200 duration: 210.290145ms - - id: 25 + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1299,7 +1103,7 @@ interactions: status: 200 OK code: 200 duration: 136.412662ms - - id: 26 + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1348,7 +1152,7 @@ interactions: status: 404 Not Found code: 404 duration: 24.759792ms - - id: 27 + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1397,7 +1201,7 @@ interactions: status: 200 OK code: 200 duration: 98.940134ms - - id: 28 + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1446,7 +1250,7 @@ interactions: status: 200 OK code: 200 duration: 84.609034ms - - id: 29 + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1499,7 +1303,7 @@ interactions: status: 200 OK code: 200 duration: 95.594551ms - - id: 30 + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1548,7 +1352,7 @@ interactions: status: 200 OK code: 200 duration: 376.34255ms - - id: 31 + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1597,7 +1401,7 @@ interactions: status: 200 OK code: 200 duration: 135.849417ms - - id: 32 + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1646,7 +1450,7 @@ interactions: status: 404 Not Found code: 404 duration: 29.069423ms - - id: 33 + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1695,7 +1499,7 @@ interactions: status: 200 OK code: 200 duration: 95.984524ms - - id: 34 + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1744,7 +1548,7 @@ interactions: status: 200 OK code: 200 duration: 94.818757ms - - id: 35 + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1797,7 +1601,7 @@ interactions: status: 200 OK code: 200 duration: 90.823938ms - - id: 36 + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1846,7 +1650,7 @@ interactions: status: 200 OK code: 200 duration: 1.442901539s - - id: 37 + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1897,7 +1701,7 @@ interactions: status: 200 OK code: 200 duration: 1.624428079s - - id: 38 + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1946,7 +1750,7 @@ interactions: status: 200 OK code: 200 duration: 97.459943ms - - id: 39 + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1995,7 +1799,7 @@ interactions: status: 200 OK code: 200 duration: 137.39308ms - - id: 40 + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2044,7 +1848,7 @@ interactions: status: 200 OK code: 200 duration: 99.519298ms - - id: 41 + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2093,7 +1897,7 @@ interactions: status: 200 OK code: 200 duration: 1.487304599s - - id: 42 + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2146,7 +1950,7 @@ interactions: status: 200 OK code: 200 duration: 44.486382ms - - id: 43 + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2199,7 +2003,7 @@ interactions: status: 200 OK code: 200 duration: 49.353749ms - - id: 44 + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2252,7 +2056,7 @@ interactions: status: 201 Created code: 201 duration: 1.023537929s - - id: 45 + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2301,7 +2105,7 @@ interactions: status: 200 OK code: 200 duration: 135.534829ms - - id: 46 + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2350,7 +2154,7 @@ interactions: status: 200 OK code: 200 duration: 149.377514ms - - id: 47 + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2399,7 +2203,7 @@ interactions: status: 200 OK code: 200 duration: 104.8741ms - - id: 48 + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2452,7 +2256,7 @@ interactions: status: 202 Accepted code: 202 duration: 276.39231ms - - id: 49 + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2501,7 +2305,7 @@ interactions: status: 200 OK code: 200 duration: 152.122191ms - - id: 50 + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2550,7 +2354,7 @@ interactions: status: 200 OK code: 200 duration: 118.735065ms - - id: 51 + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2599,7 +2403,7 @@ interactions: status: 200 OK code: 200 duration: 146.720889ms - - id: 52 + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2648,7 +2452,7 @@ interactions: status: 404 Not Found code: 404 duration: 33.896016ms - - id: 53 + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2697,7 +2501,7 @@ interactions: status: 200 OK code: 200 duration: 85.051846ms - - id: 54 + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2746,7 +2550,7 @@ interactions: status: 200 OK code: 200 duration: 93.050595ms - - id: 55 + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2799,7 +2603,7 @@ interactions: status: 200 OK code: 200 duration: 125.954502ms - - id: 56 + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2848,7 +2652,7 @@ interactions: status: 200 OK code: 200 duration: 148.296544ms - - id: 57 + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2897,7 +2701,7 @@ interactions: status: 404 Not Found code: 404 duration: 25.464717ms - - id: 58 + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2946,7 +2750,7 @@ interactions: status: 200 OK code: 200 duration: 78.630306ms - - id: 59 + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2995,7 +2799,7 @@ interactions: status: 200 OK code: 200 duration: 102.915783ms - - id: 60 + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3048,7 +2852,7 @@ interactions: status: 200 OK code: 200 duration: 94.578951ms - - id: 61 + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3097,7 +2901,7 @@ interactions: status: 200 OK code: 200 duration: 3.010609574s - - id: 62 + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3146,7 +2950,7 @@ interactions: status: 200 OK code: 200 duration: 87.672643ms - - id: 63 + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3195,7 +2999,7 @@ interactions: status: 200 OK code: 200 duration: 462.354776ms - - id: 64 + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3244,7 +3048,7 @@ interactions: status: 200 OK code: 200 duration: 131.329444ms - - id: 65 + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3293,7 +3097,7 @@ interactions: status: 404 Not Found code: 404 duration: 60.534708ms - - id: 66 + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3342,7 +3146,7 @@ interactions: status: 200 OK code: 200 duration: 114.029395ms - - id: 67 + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3391,7 +3195,7 @@ interactions: status: 200 OK code: 200 duration: 94.634839ms - - id: 68 + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3444,7 +3248,7 @@ interactions: status: 200 OK code: 200 duration: 96.478365ms - - id: 69 + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3493,7 +3297,7 @@ interactions: status: 200 OK code: 200 duration: 127.396271ms - - id: 70 + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3542,7 +3346,7 @@ interactions: status: 200 OK code: 200 duration: 128.309383ms - - id: 71 + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3595,7 +3399,7 @@ interactions: status: 202 Accepted code: 202 duration: 255.07462ms - - id: 72 + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3644,7 +3448,7 @@ interactions: status: 200 OK code: 200 duration: 175.778111ms - - id: 73 + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3693,7 +3497,7 @@ interactions: status: 404 Not Found code: 404 duration: 62.732792ms - - id: 74 + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3742,7 +3546,7 @@ interactions: status: 404 Not Found code: 404 duration: 22.5481ms - - id: 75 + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3791,7 +3595,7 @@ interactions: status: 200 OK code: 200 duration: 81.913338ms - - id: 76 + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3838,7 +3642,7 @@ interactions: status: 204 No Content code: 204 duration: 184.894913ms - - id: 77 + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3887,7 +3691,7 @@ interactions: status: 404 Not Found code: 404 duration: 85.91354ms - - id: 78 + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3936,7 +3740,7 @@ interactions: status: 200 OK code: 200 duration: 858.608473ms - - id: 79 + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3983,7 +3787,7 @@ interactions: status: 204 No Content code: 204 duration: 619.75386ms - - id: 80 + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -4032,7 +3836,7 @@ interactions: status: 404 Not Found code: 404 duration: 79.878073ms - - id: 81 + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -4081,7 +3885,7 @@ interactions: status: 200 OK code: 200 duration: 130.444563ms - - id: 82 + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -4130,7 +3934,7 @@ interactions: status: 200 OK code: 200 duration: 150.844526ms - - id: 83 + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -4183,7 +3987,7 @@ interactions: status: 202 Accepted code: 202 duration: 279.490167ms - - id: 84 + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4232,7 +4036,7 @@ interactions: status: 200 OK code: 200 duration: 162.160055ms - - id: 85 + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4281,7 +4085,7 @@ interactions: status: 404 Not Found code: 404 duration: 43.29162ms - - id: 86 + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4330,7 +4134,7 @@ interactions: status: 404 Not Found code: 404 duration: 24.224035ms - - id: 87 + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4379,7 +4183,7 @@ interactions: status: 200 OK code: 200 duration: 109.675112ms - - id: 88 + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4426,7 +4230,7 @@ interactions: status: 204 No Content code: 204 duration: 187.994656ms - - id: 89 + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4475,7 +4279,7 @@ interactions: status: 404 Not Found code: 404 duration: 48.307917ms - - id: 90 + - id: 86 request: proto: HTTP/1.1 proto_major: 1